Fossil SCM

Update the 2.4 change log.

drh 2017-10-29 23:59 trunk
Commit 266a311b62e1febb4253de9d7aa485be8c0ac91a12cd2cd566b219296faae433
--- src/dispatch.c
+++ src/dispatch.c
@@ -353,10 +353,11 @@
353353
}else{
354354
int i, j, n;
355355
356356
style_header("Help");
357357
358
+ @ <a name='commands'></a>
358359
@ <h1>Available commands:</h1>
359360
@ <table border="0"><tr>
360361
for(i=j=0; i<MX_COMMAND; i++){
361362
const char *z = aCommand[i].zName;
362363
if( '/'==*z || strncmp(z,"test",4)==0 ) continue;
@@ -381,10 +382,11 @@
381382
if( j>0 ){
382383
@ </ul></td>
383384
}
384385
@ </tr></table>
385386
387
+ @ <a name='webpages'></a>
386388
@ <h1>Available web UI pages:</h1>
387389
@ <table border="0"><tr>
388390
for(i=j=0; i<MX_COMMAND; i++){
389391
const char *z = aCommand[i].zName;
390392
if( '/'!=*z ) continue;
@@ -411,10 +413,11 @@
411413
if( j>0 ){
412414
@ </ul></td>
413415
}
414416
@ </tr></table>
415417
418
+ @ <a name='unsupported'></a>
416419
@ <h1>Unsupported commands:</h1>
417420
@ <table border="0"><tr>
418421
for(i=j=0; i<MX_COMMAND; i++){
419422
const char *z = aCommand[i].zName;
420423
if( strncmp(z,"test",4)!=0 ) continue;
@@ -441,10 +444,11 @@
441444
if( j>0 ){
442445
@ </ul></td>
443446
}
444447
@ </tr></table>
445448
449
+ @ <a name='settings'></a>
446450
@ <h1>Settings:</h1>
447451
@ <table border="0"><tr>
448452
for(i=j=0; i<MX_COMMAND; i++){
449453
if( (aCommand[i].eCmdFlags & CMDFLAG_SETTING)==0 ) continue;
450454
j++;
451455
--- src/dispatch.c
+++ src/dispatch.c
@@ -353,10 +353,11 @@
353 }else{
354 int i, j, n;
355
356 style_header("Help");
357
 
358 @ <h1>Available commands:</h1>
359 @ <table border="0"><tr>
360 for(i=j=0; i<MX_COMMAND; i++){
361 const char *z = aCommand[i].zName;
362 if( '/'==*z || strncmp(z,"test",4)==0 ) continue;
@@ -381,10 +382,11 @@
381 if( j>0 ){
382 @ </ul></td>
383 }
384 @ </tr></table>
385
 
386 @ <h1>Available web UI pages:</h1>
387 @ <table border="0"><tr>
388 for(i=j=0; i<MX_COMMAND; i++){
389 const char *z = aCommand[i].zName;
390 if( '/'!=*z ) continue;
@@ -411,10 +413,11 @@
411 if( j>0 ){
412 @ </ul></td>
413 }
414 @ </tr></table>
415
 
416 @ <h1>Unsupported commands:</h1>
417 @ <table border="0"><tr>
418 for(i=j=0; i<MX_COMMAND; i++){
419 const char *z = aCommand[i].zName;
420 if( strncmp(z,"test",4)!=0 ) continue;
@@ -441,10 +444,11 @@
441 if( j>0 ){
442 @ </ul></td>
443 }
444 @ </tr></table>
445
 
446 @ <h1>Settings:</h1>
447 @ <table border="0"><tr>
448 for(i=j=0; i<MX_COMMAND; i++){
449 if( (aCommand[i].eCmdFlags & CMDFLAG_SETTING)==0 ) continue;
450 j++;
451
--- src/dispatch.c
+++ src/dispatch.c
@@ -353,10 +353,11 @@
353 }else{
354 int i, j, n;
355
356 style_header("Help");
357
358 @ <a name='commands'></a>
359 @ <h1>Available commands:</h1>
360 @ <table border="0"><tr>
361 for(i=j=0; i<MX_COMMAND; i++){
362 const char *z = aCommand[i].zName;
363 if( '/'==*z || strncmp(z,"test",4)==0 ) continue;
@@ -381,10 +382,11 @@
382 if( j>0 ){
383 @ </ul></td>
384 }
385 @ </tr></table>
386
387 @ <a name='webpages'></a>
388 @ <h1>Available web UI pages:</h1>
389 @ <table border="0"><tr>
390 for(i=j=0; i<MX_COMMAND; i++){
391 const char *z = aCommand[i].zName;
392 if( '/'!=*z ) continue;
@@ -411,10 +413,11 @@
413 if( j>0 ){
414 @ </ul></td>
415 }
416 @ </tr></table>
417
418 @ <a name='unsupported'></a>
419 @ <h1>Unsupported commands:</h1>
420 @ <table border="0"><tr>
421 for(i=j=0; i<MX_COMMAND; i++){
422 const char *z = aCommand[i].zName;
423 if( strncmp(z,"test",4)!=0 ) continue;
@@ -441,10 +444,11 @@
444 if( j>0 ){
445 @ </ul></td>
446 }
447 @ </tr></table>
448
449 @ <a name='settings'></a>
450 @ <h1>Settings:</h1>
451 @ <table border="0"><tr>
452 for(i=j=0; i<MX_COMMAND; i++){
453 if( (aCommand[i].eCmdFlags & CMDFLAG_SETTING)==0 ) continue;
454 j++;
455
+11 -5
--- www/changes.wiki
+++ www/changes.wiki
@@ -1,19 +1,25 @@
11
<title>Change Log</title>
22
33
<a name='v2_4'></a>
44
<h2>Changes for Version 2.4 (TBD)</h2>
55
6
+ * New feature: URL Aliases. URL Aliases allow an administrator
7
+ to define their own URLs on the web interface that are rewritten to
8
+ built-in URLs with specific parameters. Create and configure URL Aliases
9
+ using the /Setup/URL_Aliases menu option in the web interface.
610
* Add tech-note search capability.
711
* Add the -r|--revision and -o|--origin options to the
812
[/help?cmd=annotate|annotate] command.
913
* Add the origin= query parameter to the [/help?cmd=/annotate|/annotate]
1014
webpage.
11
- * Support for URL Aliases added. URL Aliases allow an administrator
12
- to define their own URLs on the web interface that are rewritten to
13
- built-in URLs with specific parameters.
14
- * Provide separate on-line help screens for each setting.
15
+ * The [/help?cmd=annotate|fossil annotate] command and the
16
+ [/help?cmd=/annotate|/annotate] web page go backwards in time as far
17
+ as can be computed in 30 milliseconds by default, rather than stopping
18
+ after 20 steps. The new limit= query parameter or the --limit command-line
19
+ option can be used to alter this timeout.
20
+ * Provide separate [/help#settings|on-line help screens for each setting].
1521
* Back out support for the --no-dir-symlinks option
1622
* Remove support from the legacy configuration sync protocol. The only
1723
way now to do a configuration push or pull is to use the new protocol that
1824
was added in 2011.
1925
* Add the from= and to= query parameters to [/help?cmd=/fdiff|/fdiff]
@@ -30,11 +36,11 @@
3036
[/help?cmd=zip|zip], and [/help?cmd=tarball|tarball] pages and commands to
3137
honor the versioned manifest setting when outside of an open checkout
3238
directory.
3339
* The admin-log and access-log settings are now on by default for
3440
new repositories.
35
- * Update the built-in SQLite to version 3.20.1.
41
+ * Update the built-in SQLite to version 3.21.0.
3642
3743
<a name='v2_3'></a>
3844
<h2>Changes for Version 2.3 (2017-07-21)</h2>
3945
4046
* Update the built-in SQLite to version 3.20.0 (beta).
4147
--- www/changes.wiki
+++ www/changes.wiki
@@ -1,19 +1,25 @@
1 <title>Change Log</title>
2
3 <a name='v2_4'></a>
4 <h2>Changes for Version 2.4 (TBD)</h2>
5
 
 
 
 
6 * Add tech-note search capability.
7 * Add the -r|--revision and -o|--origin options to the
8 [/help?cmd=annotate|annotate] command.
9 * Add the origin= query parameter to the [/help?cmd=/annotate|/annotate]
10 webpage.
11 * Support for URL Aliases added. URL Aliases allow an administrator
12 to define their own URLs on the web interface that are rewritten to
13 built-in URLs with specific parameters.
14 * Provide separate on-line help screens for each setting.
 
 
15 * Back out support for the --no-dir-symlinks option
16 * Remove support from the legacy configuration sync protocol. The only
17 way now to do a configuration push or pull is to use the new protocol that
18 was added in 2011.
19 * Add the from= and to= query parameters to [/help?cmd=/fdiff|/fdiff]
@@ -30,11 +36,11 @@
30 [/help?cmd=zip|zip], and [/help?cmd=tarball|tarball] pages and commands to
31 honor the versioned manifest setting when outside of an open checkout
32 directory.
33 * The admin-log and access-log settings are now on by default for
34 new repositories.
35 * Update the built-in SQLite to version 3.20.1.
36
37 <a name='v2_3'></a>
38 <h2>Changes for Version 2.3 (2017-07-21)</h2>
39
40 * Update the built-in SQLite to version 3.20.0 (beta).
41
--- www/changes.wiki
+++ www/changes.wiki
@@ -1,19 +1,25 @@
1 <title>Change Log</title>
2
3 <a name='v2_4'></a>
4 <h2>Changes for Version 2.4 (TBD)</h2>
5
6 * New feature: URL Aliases. URL Aliases allow an administrator
7 to define their own URLs on the web interface that are rewritten to
8 built-in URLs with specific parameters. Create and configure URL Aliases
9 using the /Setup/URL_Aliases menu option in the web interface.
10 * Add tech-note search capability.
11 * Add the -r|--revision and -o|--origin options to the
12 [/help?cmd=annotate|annotate] command.
13 * Add the origin= query parameter to the [/help?cmd=/annotate|/annotate]
14 webpage.
15 * The [/help?cmd=annotate|fossil annotate] command and the
16 [/help?cmd=/annotate|/annotate] web page go backwards in time as far
17 as can be computed in 30 milliseconds by default, rather than stopping
18 after 20 steps. The new limit= query parameter or the --limit command-line
19 option can be used to alter this timeout.
20 * Provide separate [/help#settings|on-line help screens for each setting].
21 * Back out support for the --no-dir-symlinks option
22 * Remove support from the legacy configuration sync protocol. The only
23 way now to do a configuration push or pull is to use the new protocol that
24 was added in 2011.
25 * Add the from= and to= query parameters to [/help?cmd=/fdiff|/fdiff]
@@ -30,11 +36,11 @@
36 [/help?cmd=zip|zip], and [/help?cmd=tarball|tarball] pages and commands to
37 honor the versioned manifest setting when outside of an open checkout
38 directory.
39 * The admin-log and access-log settings are now on by default for
40 new repositories.
41 * Update the built-in SQLite to version 3.21.0.
42
43 <a name='v2_3'></a>
44 <h2>Changes for Version 2.3 (2017-07-21)</h2>
45
46 * Update the built-in SQLite to version 3.20.0 (beta).
47

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button