Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | reduced html validator errors on branch page |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | wolfgangFormat2CSS |
| Files: | files | file ages | folders |
| SHA1: |
156358e296fd7bac35798ddbd3285fcd |
| User & Date: | wolfgang 2010-09-08 19:26:20.000 |
Context
|
2010-09-08
| ||
| 20:25 | css for hyperlinks disabled ... (check-in: 0e394b8fa2 user: wolfgang tags: wolfgangFormat2CSS) | |
| 19:26 | reduced html validator errors on branch page ... (check-in: 156358e296 user: wolfgang tags: wolfgangFormat2CSS) | |
| 18:16 | layout sideboxes using css, css is only added to the user defined css, if the corresponding class is missing ... (check-in: b34a583f32 user: wolfgang tags: wolfgangFormat2CSS) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
282 283 284 285 286 287 288 |
@ <li><b>%h(zBr)</b></li>
}
}
if( cnt ){
@ </ul>
}
db_finalize(&q);
| < | 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
@ <li><b>%h(zBr)</b></li>
}
}
if( cnt ){
@ </ul>
}
db_finalize(&q);
@ <br clear="both">
@ <script>
@ function xin(id){
@ }
@ function xout(id){
@ }
@ </script>
|
| ︙ | ︙ |
Changes to src/style.c.
| ︙ | ︙ | |||
177 178 179 180 181 182 183 | ** The default page header. */ const char zDefaultHeader[] = @ <html> @ <head> @ <title>$<project_name>: $<title></title> @ <link rel="alternate" type="application/rss+xml" title="RSS Feed" | | | | | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
** The default page header.
*/
const char zDefaultHeader[] =
@ <html>
@ <head>
@ <title>$<project_name>: $<title></title>
@ <link rel="alternate" type="application/rss+xml" title="RSS Feed"
@ href="$baseurl/timeline.rss" />
@ <link rel="stylesheet" href="$baseurl/style.css?default" type="text/css"
@ media="screen" />
@ </head>
@ <body>
@ <div class="header">
@ <div class="logo">
@ <img src="$baseurl/logo" alt="logo">
@ </div>
@ <div class="title"><small>$<project_name></small><br />$<title></div>
@ <div class="status"><nobr><th1>
@ if {[info exists login]} {
@ puts "Logged in as $login"
@ } else {
@ puts "Not logged in"
@ }
@ </th1></nobr></div>
|
| ︙ | ︙ |