Fossil SCM
Changelog additions, and a single "const" addition
Commit
9586ac14b8cd934e21ac2f95696feebbe944511e
Parent
8b4b4247dcf0dee…
2 files changed
+1
-1
+20
+1
-1
| --- src/doc.c | ||
| +++ src/doc.c | ||
| @@ -391,11 +391,11 @@ | ||
| 391 | 391 | int vid = 0; /* Artifact of checkin */ |
| 392 | 392 | int rid = 0; /* Artifact of file */ |
| 393 | 393 | int i; /* Loop counter */ |
| 394 | 394 | Blob filebody; /* Content of the documentation file */ |
| 395 | 395 | int nMiss = (-1); /* Failed attempts to find the document */ |
| 396 | - static const char *azSuffix[] = { | |
| 396 | + static const char *const azSuffix[] = { | |
| 397 | 397 | "index.html", "index.wiki", "index.md" |
| 398 | 398 | }; |
| 399 | 399 | |
| 400 | 400 | login_check_credentials(); |
| 401 | 401 | if( !g.perm.Read ){ login_needed(); return; } |
| 402 | 402 |
| --- src/doc.c | |
| +++ src/doc.c | |
| @@ -391,11 +391,11 @@ | |
| 391 | int vid = 0; /* Artifact of checkin */ |
| 392 | int rid = 0; /* Artifact of file */ |
| 393 | int i; /* Loop counter */ |
| 394 | Blob filebody; /* Content of the documentation file */ |
| 395 | int nMiss = (-1); /* Failed attempts to find the document */ |
| 396 | static const char *azSuffix[] = { |
| 397 | "index.html", "index.wiki", "index.md" |
| 398 | }; |
| 399 | |
| 400 | login_check_credentials(); |
| 401 | if( !g.perm.Read ){ login_needed(); return; } |
| 402 |
| --- src/doc.c | |
| +++ src/doc.c | |
| @@ -391,11 +391,11 @@ | |
| 391 | int vid = 0; /* Artifact of checkin */ |
| 392 | int rid = 0; /* Artifact of file */ |
| 393 | int i; /* Loop counter */ |
| 394 | Blob filebody; /* Content of the documentation file */ |
| 395 | int nMiss = (-1); /* Failed attempts to find the document */ |
| 396 | static const char *const azSuffix[] = { |
| 397 | "index.html", "index.wiki", "index.md" |
| 398 | }; |
| 399 | |
| 400 | login_check_credentials(); |
| 401 | if( !g.perm.Read ){ login_needed(); return; } |
| 402 |
+20
| --- www/changes.wiki | ||
| +++ www/changes.wiki | ||
| @@ -1,7 +1,27 @@ | ||
| 1 | 1 | <title>Change Log</title> |
| 2 | 2 | |
| 3 | +<h2>Changes For Version 1.31 (2015-??-??)</h2> | |
| 4 | + * Add direct Subversion import support to | |
| 5 | + [/help?cmd=import|fossil import]. (??) | |
| 6 | + * Add IPv6 support to [/help?cmd=sync|fossil sync] and | |
| 7 | + [/help?cmd=clone|fossil clone] | |
| 8 | + * Add more skins such as "San Francisco Modern" and "Eagle". | |
| 9 | + * Update SQLite to version 3.8.9. (??) | |
| 10 | + * Improve the display of the history of changes to a single | |
| 11 | + file. A [/help?cmd=rebuild|fossil rebuild] is needed for that. | |
| 12 | + * Enable ZIP and Tarball downloads for user "nobody" by default. | |
| 13 | + * Make the now() SQL function available in the | |
| 14 | + [/help?cmd=sqlite|fossil sqlite] command. | |
| 15 | + * Improve table sorting in various pages. | |
| 16 | + * Add support for setting environment variables from within CGI script | |
| 17 | + files. | |
| 18 | + * Enhance the Ad-Unit processing to allow a choice of two different | |
| 19 | + ad-units. | |
| 20 | + * During shutdown, check to see if the check-out database (".fslckout") | |
| 21 | + contains a lot of free space, and if it does, VACUUM it. | |
| 22 | + | |
| 3 | 23 | <h2>Changes For Version 1.30 (2015-01-19)</h2> |
| 4 | 24 | * Added the [/help?cmd=bundle|fossil bundle] command. |
| 5 | 25 | * Added the [/help?cmd=purge|fossil purge] command. |
| 6 | 26 | * Added the [/help?cmd=publish|fossil publish] command. |
| 7 | 27 | * Added the [/help?cmd=unpublished|fossil unpublished] command. |
| 8 | 28 |
| --- www/changes.wiki | |
| +++ www/changes.wiki | |
| @@ -1,7 +1,27 @@ | |
| 1 | <title>Change Log</title> |
| 2 | |
| 3 | <h2>Changes For Version 1.30 (2015-01-19)</h2> |
| 4 | * Added the [/help?cmd=bundle|fossil bundle] command. |
| 5 | * Added the [/help?cmd=purge|fossil purge] command. |
| 6 | * Added the [/help?cmd=publish|fossil publish] command. |
| 7 | * Added the [/help?cmd=unpublished|fossil unpublished] command. |
| 8 |
| --- www/changes.wiki | |
| +++ www/changes.wiki | |
| @@ -1,7 +1,27 @@ | |
| 1 | <title>Change Log</title> |
| 2 | |
| 3 | <h2>Changes For Version 1.31 (2015-??-??)</h2> |
| 4 | * Add direct Subversion import support to |
| 5 | [/help?cmd=import|fossil import]. (??) |
| 6 | * Add IPv6 support to [/help?cmd=sync|fossil sync] and |
| 7 | [/help?cmd=clone|fossil clone] |
| 8 | * Add more skins such as "San Francisco Modern" and "Eagle". |
| 9 | * Update SQLite to version 3.8.9. (??) |
| 10 | * Improve the display of the history of changes to a single |
| 11 | file. A [/help?cmd=rebuild|fossil rebuild] is needed for that. |
| 12 | * Enable ZIP and Tarball downloads for user "nobody" by default. |
| 13 | * Make the now() SQL function available in the |
| 14 | [/help?cmd=sqlite|fossil sqlite] command. |
| 15 | * Improve table sorting in various pages. |
| 16 | * Add support for setting environment variables from within CGI script |
| 17 | files. |
| 18 | * Enhance the Ad-Unit processing to allow a choice of two different |
| 19 | ad-units. |
| 20 | * During shutdown, check to see if the check-out database (".fslckout") |
| 21 | contains a lot of free space, and if it does, VACUUM it. |
| 22 | |
| 23 | <h2>Changes For Version 1.30 (2015-01-19)</h2> |
| 24 | * Added the [/help?cmd=bundle|fossil bundle] command. |
| 25 | * Added the [/help?cmd=purge|fossil purge] command. |
| 26 | * Added the [/help?cmd=publish|fossil publish] command. |
| 27 | * Added the [/help?cmd=unpublished|fossil unpublished] command. |
| 28 |