Changeset 79
- Timestamp:
- 09/26/07 15:43:18 (6 years ago)
- Location:
- trunk/idldoc/src
- Files:
-
- 3 added
- 5 modified
-
doc_system__define.pro (modified) (1 diff)
-
resources/idldoc.ico (added)
-
resources/listing.css (modified) (1 diff)
-
resources/main.css (modified) (1 diff)
-
templates/idldoc-footer.tt (added)
-
templates/idldoc-header.tt (added)
-
templates/overview.tt (modified) (1 diff)
-
templates/savefile.tt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/idldoc/src/doc_system__define.pro
r76 r79 26 26 'n_dirs' : return, self.directories->count() 27 27 'dirs' : return, self.directories->get(/all) 28 'idldoc_header_location' : return, filepath('idldoc-header.tt', $ 29 subdir=['templates'], $ 30 root=self.sourceLocation) 31 'idldoc_footer_location' : return, filepath('idldoc-footer.tt', $ 32 subdir=['templates'], $ 33 root=self.sourceLocation) 28 34 else: begin 29 35 found = 0B -
trunk/idldoc/src/resources/listing.css
r72 r79 1 1 body { font-family: Helvetica, sans-serif; font-size: 9pt; margin: 0; } 2 2 3 a:hover { background: yellow; } 3 a { text-decoration: none; } 4 a:link, a:visited { color: #0000FF; } 5 a:hover, a:focus { background: yellow; } 4 6 5 7 h1 { font-size: 100%; margin-bottom: 0.5em; padding-left: 0.5em; } -
trunk/idldoc/src/resources/main.css
r60 r79 1 body { font-family: Helvetica, sans-serif; font-size: 9pt; } 1 a { text-decoration: none; } 2 a:link, a:visited { color: #0000FF; } 3 a:hover, a:focus { background: yellow; border-bottom: 1px dotted #303099; } 4 5 body { font-family: Helvetica, sans-serif; font-size: 10pt; margin: 0; padding: 0; } 6 7 div.content { padding: 1em; } 8 div.content h1, div.content h2 { font-weight:normal; color: darkred; } 9 10 .center { margin-left: auto; margin-right: auto; } 2 11 3 12 /* An attribute table is a vertical list of name-value pairs. */ 4 13 table.attribute { 14 font-size: 90%; 5 15 background: #EFEFEF; 6 16 padding: 0.5em; 7 17 border: 1px #9F9F9F dotted; 8 margin-left: auto; /* centers table */9 margin-right: auto;10 18 } 11 19 table.attribute td.name { font-weight: bold; padding-right: 1em; } 20 21 /* header styles */ 22 div.header { padding: 2em 2em 0 2em; background: #FDD; border-bottom: 1px #CAA dotted; } 23 div.header h1 { margin:0; font-weight: normal; } 24 div.header h2 { margin-top: 0; font-weight: normal; font-style: italic; font-size: 100%; } 25 26 /* footer styles */ 27 div.footer { padding: 0.5em 1em 0.5em 1em; background: #EFEFEF; border-top: 1px #AAA dotted; } 28 div.footer table { font-size: 80%; width: 100%; } 29 div.footer td.left {} 30 div.footer td.right { text-align: right; } -
trunk/idldoc/src/templates/overview.tt
r75 r79 25 25 26 26 <body onload="setTitle();"> 27 <h1>Overview</h1>27 [% INCLUDE_TEMPLATE idldoc_header_location %] 28 28 29 <table> 30 [% FOREACH d IN dirs %][% SCOPE d %] 31 <tr> 32 <td><a href="[% url %]dir-overview.html">[% location %]</a></td> 33 <td></td> 34 </tr> 35 [% END %][% END %] 36 </table> 29 <div class="content"> 30 <h1>Overview</h1> 31 32 <h2>Directories</h2> 33 34 <table class="attribute"> 35 [% FOREACH d IN dirs %][% SCOPE d %] 36 <tr> 37 <td><a href="[% url %]dir-overview.html">[% location %]</a></td> 38 <td></td> 39 </tr> 40 [% END %][% END %] 41 </table> 37 42 43 <h2>Statistics</h2> 44 45 </div> 46 47 [% INCLUDE_TEMPLATE idldoc_footer_location %] 38 48 </body> 39 49 </html> -
trunk/idldoc/src/templates/savefile.tt
r60 r79 31 31 <body onload="setTitle();"> 32 32 33 <table class="attribute ">33 <table class="attribute center"> 34 34 <tr> 35 35 <td class="name">Filename:</td>
