Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch ticket-fb3057f6ed Excluding Merge-Ins
This is equivalent to a diff from 4473a27f3b to 2b63068b4a
2012-11-12
| ||
14:49 | Added the --sshtrace command-line option that provides diagnostic output on the connection setup for all SSH sync traffic. Make the SSH connection setup pause waiting for responses, if the desired response is not obtained right away. check-in: 00cf858afe user: drh tags: trunk | |
13:19 | merge trunk check-in: aaa1cb04dd user: jan.nijtmans tags: improve_commit_warning | |
13:17 | merge trunk Closed-Leaf check-in: 2b63068b4a user: jan.nijtmans tags: ticket-fb3057f6ed | |
13:12 | merge trunk check-in: b1beeb77ee user: jan.nijtmans tags: convert_before_commit | |
2012-11-11
| ||
22:42 | Further attempts to help the "ssh" sync protocol move past noisy motd comments and other extraneous login text, synchronize with the remote end, and start exchanging messages successfully. check-in: 4473a27f3b user: drh tags: trunk | |
17:59 | Add the --binary-ok flag to the "fossil commit" command. Ticket [63cc656c9dfef126] check-in: 8c7faee6c5 user: drh tags: trunk | |
2012-11-10
| ||
19:57 | merge trunk check-in: df71e9d360 user: jan.nijtmans tags: ticket-fb3057f6ed | |
Changes to src/skins.c.
1169 1169 @ } 1170 1170 @ </th1></nobr></div> 1171 1171 @ </div> 1172 1172 @ <div class="mainmenu"> 1173 1173 @ <th1> 1174 1174 @ html "<a href=''$home$index_page''>Home</a>\n" 1175 1175 @ if {[anycap jor]} { 1176 -@ html "<a href=''timeline''>Timeline</a>\n" 1176 +@ html "<a href=''$home/timeline''>Timeline</a>\n" 1177 1177 @ } 1178 1178 @ if {[hascap oh]} { 1179 -@ html "<a href=''dir?ci=tip''>Files</a>\n" 1179 +@ html "<a href=''$home/dir?ci=tip''>Files</a>\n" 1180 1180 @ } 1181 1181 @ if {[hascap o]} { 1182 -@ html "<a href=''brlist''>Branches</a>\n" 1183 -@ html "<a href=''taglist''>Tags</a>\n" 1182 +@ html "<a href=''$home/brlist''>Branches</a>\n" 1183 +@ html "<a href=''$home/taglist''>Tags</a>\n" 1184 1184 @ } 1185 1185 @ if {[hascap r]} { 1186 -@ html "<a href=''reportlist''>Tickets</a>\n" 1186 +@ html "<a href=''$home/reportlist''>Tickets</a>\n" 1187 1187 @ } 1188 1188 @ if {[hascap j]} { 1189 -@ html "<a href=''wiki''>Wiki</a>\n" 1189 +@ html "<a href=''$home/wiki''>Wiki</a>\n" 1190 1190 @ } 1191 1191 @ if {[hascap s]} { 1192 -@ html "<a href=''setup''>Admin</a>\n" 1192 +@ html "<a href=''$home/setup''>Admin</a>\n" 1193 1193 @ } elseif {[hascap a]} { 1194 -@ html "<a href=''setup_ulist''>Users</a>\n" 1194 +@ html "<a href=''$home/setup_ulist''>Users</a>\n" 1195 1195 @ } 1196 1196 @ if {[info exists login]} { 1197 -@ html "<a href=''login''>Logout</a>\n" 1197 +@ html "<a href=''$home/login''>Logout</a>\n" 1198 1198 @ } else { 1199 -@ html "<a href=''login''>Login</a>\n" 1199 +@ html "<a href=''$home/login''>Login</a>\n" 1200 1200 @ } 1201 1201 @ </th1></div> 1202 1202 @ '); 1203 1203 @ REPLACE INTO config(name,mtime,value) 1204 1204 @ VALUES('footer',now(),'<div class="footer"> 1205 1205 @ <th1> 1206 1206 @ proc getTclVersion {} {
Changes to src/style.c.
364 364 @ } 365 365 @ </th1></div> 366 366 @ </div> 367 367 @ <div class="mainmenu"> 368 368 @ <th1> 369 369 @ html "<a href='$home$index_page'>Home</a>\n" 370 370 @ if {[anycap jor]} { 371 -@ html "<a href='timeline'>Timeline</a>\n" 371 +@ html "<a href='$home/timeline'>Timeline</a>\n" 372 372 @ } 373 373 @ if {[hascap oh]} { 374 -@ html "<a href='dir?ci=tip'>Files</a>\n" 374 +@ html "<a href='$home/dir?ci=tip'>Files</a>\n" 375 375 @ } 376 376 @ if {[hascap o]} { 377 -@ html "<a href='brlist'>Branches</a>\n" 378 -@ html "<a href='taglist'>Tags</a>\n" 377 +@ html "<a href='$home/brlist'>Branches</a>\n" 378 +@ html "<a href='$home/taglist'>Tags</a>\n" 379 379 @ } 380 380 @ if {[hascap r]} { 381 -@ html "<a href='reportlist'>Tickets</a>\n" 381 +@ html "<a href='$home/reportlist'>Tickets</a>\n" 382 382 @ } 383 383 @ if {[hascap j]} { 384 -@ html "<a href='wiki'>Wiki</a>\n" 384 +@ html "<a href='$home/wiki'>Wiki</a>\n" 385 385 @ } 386 386 @ if {[hascap s]} { 387 -@ html "<a href='setup'>Admin</a>\n" 387 +@ html "<a href='$home/setup'>Admin</a>\n" 388 388 @ } elseif {[hascap a]} { 389 -@ html "<a href='setup_ulist'>Users</a>\n" 389 +@ html "<a href='$home/setup_ulist'>Users</a>\n" 390 390 @ } 391 391 @ if {[info exists login]} { 392 -@ html "<a href='login'>Logout</a>\n" 392 +@ html "<a href='$home/login'>Logout</a>\n" 393 393 @ } else { 394 -@ html "<a href='login'>Login</a>\n" 394 +@ html "<a href='$home/login'>Login</a>\n" 395 395 @ } 396 396 @ </th1></div> 397 397 ; 398 398 399 399 /* 400 400 ** The default page footer 401 401 */