Changeset 4057
- Timestamp:
- 07/24/08 05:50:20 (4 months ago)
- Files:
-
- ticketmodifiedfilesplugin/0.11/setup.py (modified) (1 diff)
- ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/htdocs/css/ticketmodifiedfiles.css (modified) (2 diffs)
- ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/htdocs/js/ticketmodifiedfiles.js (modified) (1 diff)
- ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/templates/ticketmodifiedfiles.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ticketmodifiedfilesplugin/0.11/setup.py
r4040 r4057 4 4 name='TicketModifiedFiles', 5 5 description='Trac plugin that lists the files that have been modified while resolving a ticket.', 6 version='0.8 ',6 version='0.8.1', 7 7 license='BSD-ish (see the COPYING.txt file)', 8 8 author='Emilien Klein', ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/htdocs/css/ticketmodifiedfiles.css
r4040 r4057 15 15 float: left; 16 16 margin-right: .5em; 17 display: none; 17 18 } 18 19 … … 22 23 23 24 #legendsection{ 24 font-size: 80%; 25 margin-top: 20px; 26 font-size: 80%; 25 27 } 26 28 ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/htdocs/js/ticketmodifiedfiles.js
r4036 r4057 10 10 } 11 11 } 12 if(element == "checkboxes"){ 13 inputs = document.getElementsByTagName("input"); 14 actualvisibility = ""; 15 for(j=0; j<inputs.length; j++){ 16 if(inputs[j].getAttribute('class') == "helpcheckbox"){ 17 if(inputs[j].style.display == "block"){ 18 inputs[j].style.display = "none"; 19 } else { 20 inputs[j].style.display = "block"; 21 } 22 actualvisibility = inputs[j].style.display; 23 } 24 } 25 if(actualvisibility == "block"){ 26 document.getElementById("togglecheckboxlink").innerHTML = "Hide the checkboxes"; 27 } else { 28 document.getElementById("togglecheckboxlink").innerHTML = "Display the checkboxes"; 29 } 30 } 12 31 } 13 32 //--> ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/templates/ticketmodifiedfiles.html
r4054 r4057 83 83 84 84 <div id="legendsection"> 85 <div><a id="togglecheckboxlink" href="#" onclick="javascript:togglevisibility('checkboxes'); return false;" title="Can be helpful to for instance track which files have already been uploaded">Display the checkboxes</a></div> 85 86 <strong>Legend:</strong> 86 87 <py:choose><py:when test="'E' in filestatus.values()"><span class="edit"> </span><span class="legendinfo">Edited</span></py:when></py:choose> … … 92 93 93 94 <div id="changesetslist"> 94 <h3 class="backtonormalflow"><a id="changesetslink" href=" javascript:togglevisibility('listofchangesets');">Display the list of changesets relative to this ticket.</a></h3>95 <h3 class="backtonormalflow"><a id="changesetslink" href="#" onclick="javascript:togglevisibility('listofchangesets'); return false;">Display the list of changesets relative to this ticket.</a></h3> 95 96 <dl id="listofchangesets"> 96 97 <py:for each="rev, author in revisions">
