Check-in [0cd202a86e]
Not logged in
Overview

SHA1 Hash:0cd202a86e12b8e67af1c5c85d1a9ef182a91c80
Date: 2007-08-23 23:10:56
User: drh
Comment:Website updates. Change the message for unrecognized commands to refer the user to "help".
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/main.c from [057090c5e8] to [9916f220db].

@@ -196,16 +196,16 @@
     zCmdName = argv[1];
   }
   rc = name_search(zCmdName, aCommand, count(aCommand), &idx);
   if( rc==1 ){
     fprintf(stderr,"%s: unknown command: %s\n"
-                   "%s: use \"commands\" or \"test-commands\" for help\n",
+                   "%s: use \"help\" for more information\n",
                    argv[0], zCmdName, argv[0]);
     return 1;
   }else if( rc==2 ){
     fprintf(stderr,"%s: ambiguous command prefix: %s\n"
-                   "%s: use \"commands\" or \"test-commands\" for help\n",
+                   "%s: use \"help\" for more information\n",
                    argv[0], zCmdName, argv[0]);
     return 1;
   }
   aCommand[idx].xFunc();
   return 0;

Modified www/fileformat.html from [c1aa3452d9] to [b4104959a6].

@@ -7,18 +7,23 @@
 Fossil File Formats
 </h1>
 
 <p>
 The global state of a fossil repository is determined by an unordered
-set of files.  Some files used to represent wiki pages, trouble tickets,
+set of files.  Some files are used to represent wiki pages, trouble tickets,
 and the special "manifest" file has a specific and well-defined format.
-Other files are just the content of the files.  Files can be text or
-binary.
+Other files are just data.  Files can be text or binary.
 </p>
 
 <p>
 Each file in the repository is named by its SHA1 hash.
+No prefixes or meta information is added to a file before
+its hash is computed.  The name of a file in the repository
+is exactly the same SHA1 hash that is computed by sha1sum
+on the file as it exists in your source tree.</p>
+
+<p>
 Some files have a particular format which qualifies them
 as "manifests".  A manifest assigns filenames to a subset
 of the files in the repository, in order to provide a
 snapshot of the state of the project at a point in time.
 Each manifest file corresponds to a version or baseline

Modified www/index.html from [55770629c6] to [d3b58fe572].

@@ -55,15 +55,19 @@
 </ul>
 
 <p>Objectives Of Fossil:</p>
 
 <ul>
-<li>Fossil should be ridiculously easy to install and operate.</li>
-<li>With fossil, it should be possible (and easy) to set up a project
+<li>Fossil should be ridiculously easy to
+<a href="build.html">install</a> and
+<a href="quickstart.html">operate</a>.</li>
+<li>With fossil, it should be possible (and
+<a href="quickstart.html#serversetup">easy</a>) to set up a project
 on an inexpensive shared-hosting ISP
 (example: <a href="http://www.he.net/hosting.html">Hurricane Electric</a>)
-that provides nothing more than web space and CGI capability.</li>
+that provides nothing more than web space and CGI capability.
+Here is <a href="http://www.hwaci.com/cgi-bin/fossil/timeline">a demo</a>.</li>
 <li>Fossil should provide in-depth historical and status information about the
 project through a web interface</li>
 <li>The integration of <a href="http://wiki.org/wiki.cgi?WhatIsWiki">Wiki</a>
 and the ability to safely support anonymous check-in are features sometimes
 described as

Modified www/quickstart.html from [f9a5dc6ef0] to [02bea354be].

@@ -169,10 +169,11 @@
     <b>commit</b> and possibly also <b>push</b> your changes.   Remember
     that nobody else can see your changes until you <b>commit</b> and
     if other are using a different repository you will also need to
     <b>push</b>.</p>
 
+<a name="serversetup">
 </blockquote><h2>Setting Up A Server</h2><blockquote>
 
     <p>The easiest way to set up a server is:</p>
 
     <blockquote>
@@ -216,13 +217,14 @@
 </blockquote><h2>More Hints</h2><blockquote>
 
     <p>Try these commands:</p>
 
     <blockquote><b>
-    fossil command<br>
-    fossil test-command
+    fossil help<br>
+    fossil commands<br>
+    fossil test-commands
     </b></blockquote>
 
     <p>Explore and have fun!</p>
 
 
 </blockquote></body></html>