Fossil SCM

Fix a doc typo. Minor improvements to documentation linkage.

drh 2016-09-30 13:21 trunk
Commit c468769dbca5199f57f432c6e517b330b591e986
--- www/concepts.wiki
+++ www/concepts.wiki
@@ -13,10 +13,15 @@
1313
to setup and operate.
1414
1515
This document is intended as a quick introduction to the concepts
1616
behind Fossil.
1717
18
+See also:
19
+
20
+ * [./whyusefossil.wiki#definitions|Definitions]
21
+ * [./quickstart.wiki|Quick start guide]
22
+
1823
<h2>2.0 Composition Of A Project</h2>
1924
<img src="concept1.gif" align="right" hspace="10">
2025
2126
A software project normally consists of a "source tree".
2227
A source tree is a hierarchy of files that are used to generate
2328
--- www/concepts.wiki
+++ www/concepts.wiki
@@ -13,10 +13,15 @@
13 to setup and operate.
14
15 This document is intended as a quick introduction to the concepts
16 behind Fossil.
17
 
 
 
 
 
18 <h2>2.0 Composition Of A Project</h2>
19 <img src="concept1.gif" align="right" hspace="10">
20
21 A software project normally consists of a "source tree".
22 A source tree is a hierarchy of files that are used to generate
23
--- www/concepts.wiki
+++ www/concepts.wiki
@@ -13,10 +13,15 @@
13 to setup and operate.
14
15 This document is intended as a quick introduction to the concepts
16 behind Fossil.
17
18 See also:
19
20 * [./whyusefossil.wiki#definitions|Definitions]
21 * [./quickstart.wiki|Quick start guide]
22
23 <h2>2.0 Composition Of A Project</h2>
24 <img src="concept1.gif" align="right" hspace="10">
25
26 A software project normally consists of a "source tree".
27 A source tree is a hierarchy of files that are used to generate
28
+1 -1
--- www/server.wiki
+++ www/server.wiki
@@ -39,11 +39,11 @@
3939
access these using URLs of the form <b>http://localhost:8080/</b>, or if
4040
<i>REPOSITORY</i> is a directory, URLs of the form
4141
<b>http://localhost:8080/</b><i>repo</i><b>/</b> where <i>repo</i> is the base
4242
name of the repository file without the ".fossil" suffix.
4343
The difference between "ui" and "server" is that "ui" will
44
-also start a web browser and points it
44
+also start a web browser and point it
4545
to the URL mentioned above, and the "ui" command binds to
4646
the loopback IP address (127.0.0.1) only so that the "ui" command cannot be
4747
used to serve content to a different machine.
4848
</p>
4949
<p>
5050
--- www/server.wiki
+++ www/server.wiki
@@ -39,11 +39,11 @@
39 access these using URLs of the form <b>http://localhost:8080/</b>, or if
40 <i>REPOSITORY</i> is a directory, URLs of the form
41 <b>http://localhost:8080/</b><i>repo</i><b>/</b> where <i>repo</i> is the base
42 name of the repository file without the ".fossil" suffix.
43 The difference between "ui" and "server" is that "ui" will
44 also start a web browser and points it
45 to the URL mentioned above, and the "ui" command binds to
46 the loopback IP address (127.0.0.1) only so that the "ui" command cannot be
47 used to serve content to a different machine.
48 </p>
49 <p>
50
--- www/server.wiki
+++ www/server.wiki
@@ -39,11 +39,11 @@
39 access these using URLs of the form <b>http://localhost:8080/</b>, or if
40 <i>REPOSITORY</i> is a directory, URLs of the form
41 <b>http://localhost:8080/</b><i>repo</i><b>/</b> where <i>repo</i> is the base
42 name of the repository file without the ".fossil" suffix.
43 The difference between "ui" and "server" is that "ui" will
44 also start a web browser and point it
45 to the URL mentioned above, and the "ui" command binds to
46 the loopback IP address (127.0.0.1) only so that the "ui" command cannot be
47 used to serve content to a different machine.
48 </p>
49 <p>
50
--- www/whyusefossil.wiki
+++ www/whyusefossil.wiki
@@ -37,10 +37,11 @@
3737
<li>Failed disk-drives cause no loss of work
3838
<li>Avoid wasting time doing manual file copying
3939
<li>Avoid human errors during manual backups
4040
</ol>
4141
</ol>
42
+<a name='definitions'></a>
4243
<li><p><b>Definitions</b></p>
4344
<ul>
4445
<li><p><b>Project</b> &rarr;
4546
a collection of computer files that serve some common
4647
purpose. Often the project is a software application and the
@@ -59,12 +60,12 @@
5960
project that has files scattered hither and yon all over
6061
the disk. In other words, Fossil only works for projects
6162
where the files are laid out such that they can be archived
6263
into a ZIP file or tarball.
6364
</ul>
64
- <li><p><b>Repository</b>
65
- (also called "repo") &rarr; a single file that contains
65
+ <li><p><b>Repository</b> &rarr;
66
+ (also called "repo") a single file that contains
6667
all historical versions of all files in a project. A repo is similar
6768
to a ZIP archive in that it is a single file that stores compressed
6869
versions of many other files. Files can be extracted from the
6970
repo and new files can be added to the repo, just as with a ZIP
7071
archive. But a repo has other capabilities above and beyond
7172
--- www/whyusefossil.wiki
+++ www/whyusefossil.wiki
@@ -37,10 +37,11 @@
37 <li>Failed disk-drives cause no loss of work
38 <li>Avoid wasting time doing manual file copying
39 <li>Avoid human errors during manual backups
40 </ol>
41 </ol>
 
42 <li><p><b>Definitions</b></p>
43 <ul>
44 <li><p><b>Project</b> &rarr;
45 a collection of computer files that serve some common
46 purpose. Often the project is a software application and the
@@ -59,12 +60,12 @@
59 project that has files scattered hither and yon all over
60 the disk. In other words, Fossil only works for projects
61 where the files are laid out such that they can be archived
62 into a ZIP file or tarball.
63 </ul>
64 <li><p><b>Repository</b>
65 (also called "repo") &rarr; a single file that contains
66 all historical versions of all files in a project. A repo is similar
67 to a ZIP archive in that it is a single file that stores compressed
68 versions of many other files. Files can be extracted from the
69 repo and new files can be added to the repo, just as with a ZIP
70 archive. But a repo has other capabilities above and beyond
71
--- www/whyusefossil.wiki
+++ www/whyusefossil.wiki
@@ -37,10 +37,11 @@
37 <li>Failed disk-drives cause no loss of work
38 <li>Avoid wasting time doing manual file copying
39 <li>Avoid human errors during manual backups
40 </ol>
41 </ol>
42 <a name='definitions'></a>
43 <li><p><b>Definitions</b></p>
44 <ul>
45 <li><p><b>Project</b> &rarr;
46 a collection of computer files that serve some common
47 purpose. Often the project is a software application and the
@@ -59,12 +60,12 @@
60 project that has files scattered hither and yon all over
61 the disk. In other words, Fossil only works for projects
62 where the files are laid out such that they can be archived
63 into a ZIP file or tarball.
64 </ul>
65 <li><p><b>Repository</b> &rarr;
66 (also called "repo") a single file that contains
67 all historical versions of all files in a project. A repo is similar
68 to a ZIP archive in that it is a single file that stores compressed
69 versions of many other files. Files can be extracted from the
70 repo and new files can be added to the repo, just as with a ZIP
71 archive. But a repo has other capabilities above and beyond
72

Keyboard Shortcuts

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