Fossil

Check-in [9586ac14b8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Changelog additions, and a single "const" addition
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9586ac14b8cd934e21ac2f95696feebbe944511e
User & Date: jan.nijtmans 2015-01-29 09:14:46.663
Context
2015-01-30
01:07
Add the -D__EXTENSIONS__ compile-time option on Solaris, so that it can find its IPv6 headers. check-in: 5b9168501c user: drh tags: trunk
2015-01-29
20:21
proposed fix for clobbering existing files [5ba427be8809342c6fbdcf48c9c8365467048d28] check-in: bb15d408a4 user: bch tags: clobber_fixer
09:14
Changelog additions, and a single "const" addition check-in: 9586ac14b8 user: jan.nijtmans tags: trunk
01:48
Fix the /doc page so that it returns status 200 (not 404) after appending "index.html" to the end of a page name. check-in: 8b4b4247dc user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/doc.c.
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
  const char *zMime;                /* Document MIME type */
  char *zCheckin = "tip";           /* The checkin holding the document */
  int vid = 0;                      /* Artifact of checkin */
  int rid = 0;                      /* Artifact of file */
  int i;                            /* Loop counter */
  Blob filebody;                    /* Content of the documentation file */
  int nMiss = (-1);                 /* Failed attempts to find the document */
  static const char *azSuffix[] = {
     "index.html", "index.wiki", "index.md"
  };

  login_check_credentials();
  if( !g.perm.Read ){ login_needed(); return; }
  while( rid==0 && (++nMiss)<=ArraySize(azSuffix) ){
    zName = PD("name", "tip/index.wiki");







|







389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
  const char *zMime;                /* Document MIME type */
  char *zCheckin = "tip";           /* The checkin holding the document */
  int vid = 0;                      /* Artifact of checkin */
  int rid = 0;                      /* Artifact of file */
  int i;                            /* Loop counter */
  Blob filebody;                    /* Content of the documentation file */
  int nMiss = (-1);                 /* Failed attempts to find the document */
  static const char *const azSuffix[] = {
     "index.html", "index.wiki", "index.md"
  };

  login_check_credentials();
  if( !g.perm.Read ){ login_needed(); return; }
  while( rid==0 && (++nMiss)<=ArraySize(azSuffix) ){
    zName = PD("name", "tip/index.wiki");
Changes to www/changes.wiki.
1
2




















3
4
5
6
7
8
9
<title>Change Log</title>





















<h2>Changes For Version 1.30 (2015-01-19)</h2>
  *  Added the [/help?cmd=bundle|fossil bundle] command.
  *  Added the [/help?cmd=purge|fossil purge] command.
  *  Added the [/help?cmd=publish|fossil publish] command.
  *  Added the [/help?cmd=unpublished|fossil unpublished] command.
  *  Enhance the [/tree] webpage to show the age of each file with the option
     to sort by age.


>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<title>Change Log</title>

<h2>Changes For Version 1.31 (2015-??-??)</h2>
  *  Add direct Subversion import support to
     [/help?cmd=import|fossil import]. (??)
  *  Add IPv6 support to [/help?cmd=sync|fossil sync] and
     [/help?cmd=clone|fossil clone]
  *  Add more skins such as "San Francisco Modern" and "Eagle".
  *  Update SQLite to version 3.8.9. (??)
  *  Improve the display of the history of changes to a single
     file. A [/help?cmd=rebuild|fossil rebuild] is needed for that.
  *  Enable ZIP and Tarball downloads for user "nobody" by default.
  *  Make the now() SQL function available in the
     [/help?cmd=sqlite|fossil sqlite] command.
  *  Improve table sorting in various pages.
  *  Add support for setting environment variables from within CGI script
     files.
  *  Enhance the Ad-Unit processing to allow a choice of two different
     ad-units.
  *  During shutdown, check to see if the check-out database (".fslckout")
     contains a lot of free space, and if it does, VACUUM it. 

<h2>Changes For Version 1.30 (2015-01-19)</h2>
  *  Added the [/help?cmd=bundle|fossil bundle] command.
  *  Added the [/help?cmd=purge|fossil purge] command.
  *  Added the [/help?cmd=publish|fossil publish] command.
  *  Added the [/help?cmd=unpublished|fossil unpublished] command.
  *  Enhance the [/tree] webpage to show the age of each file with the option
     to sort by age.