Changeset 4040
- Timestamp:
- 07/18/08 06:11:37 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ticketmodifiedfilesplugin/0.11/setup.py
r4037 r4040 4 4 name='TicketModifiedFiles', 5 5 description='Trac plugin that lists the files that have been modified while resolving a ticket.', 6 version='0. 7.1',6 version='0.8', 7 7 license='BSD-ish (see the COPYING.txt file)', 8 8 author='Emilien Klein', ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/htdocs/css/ticketmodifiedfiles.css
r4036 r4040 10 10 .insidelist, .legendinfo{ 11 11 float: left; 12 } 13 14 .helpcheckbox{ 15 float: left; 16 margin-right: .5em; 12 17 } 13 18 … … 25 30 } 26 31 27 li {list-style-type: none;} 32 .fileslist{ 33 list-style-type: none; 34 clear: both; 35 margin-left: -25px; 36 } 28 37 29 38 #listofchangesets{ ticketmodifiedfilesplugin/0.11/ticketmodifiedfiles/templates/ticketmodifiedfiles.html
r4036 r4040 20 20 <ul> 21 21 <py:for each="filename in list"> 22 <li style='clear: both;'> 22 <li class="fileslist"> 23 <input class="helpcheckbox" type="checkbox"></input> 23 24 <py:choose> 24 25 <py:when test="filestatus[filename] == 'E' or filestatus[filename] == 'D' or filestatus[filename] == 'A' or filestatus[filename] == 'C' or filestatus[filename] == 'M'">
