Changeset 228


Ignore:
Timestamp:
Feb 14, 2007 4:54:22 PM (6 years ago)
Author:
dkg
Message:

TOFT/PN: made changes to match comments from Phyllis.

Location:
trunk/jobs/toft/publicnotes/web
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/jobs/toft/publicnotes/web/klein.css

    r227 r228  
    1 div.framing { font-family: Times,serif; margin-left: 15%; margin-right: 15%; } 
     1div.framing { font-family: Times,serif; font-weight: bold; font-size: large; margin-left: 10%; margin-right: 10%; } 
    22 
    3 div.framing div.logo { text-align: center; } 
     3div.framing div.logo { text-align: center; margin: 1em; } 
     4div.framing div.logo a img { border: none; } 
    45 
    5 h1 { text-align: center; font-family: Helvetica, Arial, sans-serif } 
     6div.framing p.instructions { font-size: larger; } 
     7 
     8h1 { text-align: center; font-family: Verdana, sans-serif } 
    69 
    710p.formula { text-align: center; } 
     11 
     12a { font-style: underlined; } 
  • trunk/jobs/toft/publicnotes/web/klein.html

    r227 r228  
    1616  <div class="logo"><a href="http://www.timeoutfromtesting.org/"><img 
    1717src="logo.png" title="Time Out From Testing" alt="Time Out From 
    18 excessive and high-stakes Testing" /></a></div>On January 25, 2007, 
    19 <acronym title="New York City Department of 
    20 Education">NYCDOE</acronym> Chancellor Joel I. Klein gave testimony to 
    21 the New York City Council Committee on Education about the Next Phase 
    22 of the Children First Reforms.  The <acronym title="Department of 
    23 Education">DOE</acronym> <a 
    24 href="http://schools.nyc.gov/Administration/mediarelations/SpeechesTestimonials/20070126_jk_council.htm">published 
    25 his remarks</a>.  We reprint them here, with commentary.  While 
    26 reading Chancellor Klein's speech, click on the linked sections 
    27 to read what some of the actual facts are.</div> 
     18excessive and high-stakes Testing" /></a></div> 
     19 
     20New York City Chancellor Joel I. Klein recently addressed the New York 
     21City Council Committee on Education to report on the next phase of the 
     22Children First reforms (See <a 
     23href="http://schools.nyc.gov/Administration/mediarelations/SpeechesTestimonials/20070126_jk_council.htm"><acronym 
     24title="Department of Education">DOE</acronym> testimonials, 
     251/25/07</a>).  <p> We reprint the Chancellor's remarks below with 
     26annotations.  <p class="instructions">To learn about some of the important 
     27facts omitted from the chancellor's testimony, click on the linked 
     28(underlined) sections.  </div> 
    2829 
    2930<h1>Time Out From Testing Responds to Chancellor Klein:</h1> 
  • trunk/jobs/toft/publicnotes/web/publicnotes.css

    r226 r228  
    11body {  
    22 color: black; 
    3  background: white; 
     3 background: #aaa; 
    44 padding: 0em; 
    55 margin: 0em; 
     
    1111  margin-left: 20%; 
    1212  margin-right: 20%; 
     13  background: white; 
     14  border: 1px solid black; 
     15  padding: 1em; 
    1316 } 
    1417 
     
    3437   padding: 0.5em; 
    3538   border: 3px solid red; 
    36    font-family: Helvetica, Arial, sans-serif; 
     39   font-family: Verdana, sans-serif; 
    3740   margin: 0em; 
    3841 } 
  • trunk/jobs/toft/publicnotes/web/publicnotes.js

    r226 r228  
    1919noteNav: undefined, 
    2020mainText: undefined, 
     21 
     22displayAllCommentary: "To read only the annotations, click here", 
     23collapseAllCommentary: "To hide annotations and show Klein's speech, click here", 
    2124 
    2225onLoad: function() { 
     
    4144 
    4245        PN.noteNav.revert = document.createElement("A"); 
    43         PN.noteNav.revert.appendChild(document.createTextNode("Display All Commentary")); 
     46        PN.noteNav.revert.appendChild(document.createTextNode(PN.displayAllCommentary)); 
    4447        PN.noteNav.revert.href = "#note-navigation"; 
    4548        PN.noteNav.revert.onclick = function() { PN.getAllNotes(PN.noteNav);  
     
    4952 
    5053        PN.noteNav.collapse = document.createElement("A"); 
    51         PN.noteNav.collapse.appendChild(document.createTextNode("Collapse All Commentary")); 
     54        PN.noteNav.collapse.appendChild(document.createTextNode(PN.collapseAllCommentary)); 
    5255        PN.noteNav.collapse.href = "#note-navigation"; 
    5356        PN.noteNav.collapse.onclick = function() { PN.collapseAllNotes(); 
Note: See TracChangeset for help on using the changeset viewer.