Fossil

Check-in [9e4ca8948a]
Login

Check-in [9e4ca8948a]

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

Overview
Comment:Improve documentation readability on mobile.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 9e4ca8948a82ae5e3017c0e8ca0268483bb4114f917e3ba0c24a08669e95e930
User & Date: drh 2020-06-12 14:28:33.956
References
2020-09-26
11:19
Fix to check-in [9e4ca8948a82ae5e]: Do not set "height:auto" for images in the default CSS, as doing so is not necessary for good mobile operation. ... (check-in: 1165ed88f3 user: drh tags: trunk)
2020-06-13
05:59
Accounted for [9e4ca894], from default_css.txt (which no longer exists in this branch). ... (Closed-Leaf check-in: 9070947dac user: stephan tags: default.css)
Context
2020-06-12
23:20
Updates to the 'mv-rm' tests. ... (check-in: 7f002bc6b2 user: mistachkin tags: trunk)
23:12
Merge updates from trunk. ... (check-in: 7b16567772 user: mistachkin tags: jsonTestsPass)
14:28
Improve documentation readability on mobile. ... (check-in: 9e4ca8948a user: drh tags: trunk)
13:25
Fix the /ambiguous page so that the src= query parameter is optional. Fix the /hash-colisions page so that it links to /ambiguous rather than to /whatis. ... (check-in: 9a0132e528 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/default_css.txt.
874
875
876
877
878
879
880
881
882
883
884




885
.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: none;
}
input {
    max-width: 95%;
}
textarea {
    max-width: 95%;




}







|


|
>
>
>
>

874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: none;
}
input {
  max-width: 95%;
}
textarea {
  max-width: 95%;
}
img {
  max-width: 100%;
  height: auto;
}
Changes to www/concepts.wiki.
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
In the next section, when we say things like "use the <b>help</b>
command" we mean to use the command name "help" as the first
token after the name of the Fossil executable, as shown above.

<a name="workflow"></a>
<h2>4.0 Workflow</h2>

<img src="concept2.gif" align="right" hspace="10">

Fossil has two modes of operation: <i>"autosync"</i> and
<i>"manual-merge"</i>
Autosync mode is reminiscent of CVS or SVN in that it automatically
keeps your changes in synchronization with your co-workers through
the use of a central server.  The manual-merge mode is the standard workflow
for GIT or Mercurial in that your local repository develops







|







232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
In the next section, when we say things like "use the <b>help</b>
command" we mean to use the command name "help" as the first
token after the name of the Fossil executable, as shown above.

<a name="workflow"></a>
<h2>4.0 Workflow</h2>

<img src="concept2.gif" align="right" hspace="10" style="max-width:50%;">

Fossil has two modes of operation: <i>"autosync"</i> and
<i>"manual-merge"</i>
Autosync mode is reminiscent of CVS or SVN in that it automatically
keeps your changes in synchronization with your co-workers through
the use of a central server.  The manual-merge mode is the standard workflow
for GIT or Mercurial in that your local repository develops