Sun Jul 24 13:39:05 CEST 2005  Erik Schnetter <[EMAIL PROTECTED]>
  * alternative formatting for cvs/tla tables.
New patches:

[alternative formatting for cvs/tla tables.
Erik Schnetter <[EMAIL PROTECTED]>**20050724113905] {
hunk ./switching.tex 24
-\begin{tabular}{lll}
-{\tt cvs checkout} & {\tt darcs get} \\
-{\tt cvs update} & {\tt darcs pull} \\
-{\tt cvs -n update} & {\tt darcs pull \verb!--dry-run!} & (summarize remote changes) \\
-{\tt cvs -n update} & {\tt darcs whatsnew \verb!--summary!} & (summarize local changes) \\
-{\tt cvs -n update | grep '?'} & {\tt darcs whatsnew -ls | grep \verb!^a! } & (list potential files to add) \\
-{\tt rm foo.txt; cvs update foo.txt} & {\tt darcs revert foo.txt} & (revert to foo.txt from repo) \\
-{\tt cvs diff} & {\tt darcs whatsnew} & (if checking local changes) \\
-{\tt cvs diff} & {\tt darcs diff} & (if checking recorded changes) \\
-{\tt cvs commit} & {\tt darcs record} & (if committing locally) \\
-{\tt cvs commit} & {\tt darcs tag} & (if marking a version for later use) \\
-{\tt cvs commit} & {\tt darcs push} or {\tt darcs send} &
-                                        (if committing remotely) \\
-{\tt cvs diff | mail} & {\tt darcs send} \\
-{\tt cvs add} & {\tt darcs add} \\
-{\tt cvs tag -b} & {\tt darcs get} \\
-{\tt cvs tag} & {\tt darcs tag}
-\end{tabular}
+\begin{description}
+\item[{\tt cvs checkout}:]
+   {\tt darcs get}
+\item[{\tt cvs update}:]
+   {\tt darcs pull}
+\item[{\tt cvs -n update}:]
+   {\tt darcs pull \verb!--dry-run!}
+      (summarize remote changes)
+\item[{\tt cvs -n update}:]
+   {\tt darcs whatsnew \verb!--summary!}
+      (summarize local changes)
+\item[{\tt cvs -n update | grep '?'}:]
+   {\tt darcs whatsnew -ls | grep \verb!^a! }
+      (list potential files to add)
+\item[{\tt rm foo.txt; cvs update foo.txt}:]
+   {\tt darcs revert foo.txt}
+      (revert to foo.txt from repo)
+\item[{\tt cvs diff}:]
+   {\tt darcs whatsnew}
+      (if checking local changes)
+\item[{\tt cvs diff}:]
+   {\tt darcs diff}
+      (if checking recorded changes)
+\item[{\tt cvs commit}:]
+   {\tt darcs record}
+      (if committing locally)
+\item[{\tt cvs commit}:]
+   {\tt darcs tag}
+      (if marking a version for later use)
+\item[{\tt cvs commit}:]
+   {\tt darcs push} or {\tt darcs send}
+      (if committing remotely)
+\item[{\tt cvs diff | mail}:]
+   {\tt darcs send}
+\item[{\tt cvs add}:]
+   {\tt darcs add}
+\item[{\tt cvs tag -b}:]
+   {\tt darcs get}
+\item[{\tt cvs tag}:]
+   {\tt darcs tag}
+\end{description}
hunk ./switching.tex 101
-\begin{tabular}{lll}
-{\tt tla init-tree} & {\tt darcs initialize} \\
-{\tt tla get} & {\tt darcs get} \\
-{\tt tla update} & {\tt darcs pull} \\
-{\tt tla file-diffs f | patch -R } & {\tt darcs revert} \\
-{\tt tla changes --diffs} & {\tt darcs whatsnew} \\
-{\tt tla logs} & {\tt darcs changes} \\
-{\tt tla file-diffs} & {\tt darcs diff -u} \\
-{\tt tla add} & {\tt darcs add} \\
-{\tt tla mv} & {\tt darcs mv} & (not {\tt tla move}) \\
-{\tt tla commit} & {\tt darcs record} & (if committing locally)\\
-{\tt tla commit} & {\tt darcs tag} & (if marking a version for later use)\\
-{\tt tla commit} & {\tt darcs push} or {\tt darcs send} & 
-                                                  (if committing remotely)\\
-{\tt tla archive-mirror} & {\tt darcs pull} or {\tt darcs push} \\
-{\tt tla tag} & {\tt darcs get} & (if creating a branch) \\
-{\tt tla tag} & {\tt darcs tag} & (if creating a tag).
-\end{tabular}
+\begin{description}
+\item[{\tt tla init-tree}:]
+   {\tt darcs initialize}
+\item[{\tt tla get}:]
+   {\tt darcs get}
+\item[{\tt tla update}:]
+   {\tt darcs pull}
+\item[{\tt tla file-diffs f | patch -R }:]
+   {\tt darcs revert}
+\item[{\tt tla changes --diffs}:]
+   {\tt darcs whatsnew}
+\item[{\tt tla logs}:]
+   {\tt darcs changes}
+\item[{\tt tla file-diffs}:]
+   {\tt darcs diff -u}
+\item[{\tt tla add}:]
+   {\tt darcs add}
+\item[{\tt tla mv}:]
+   {\tt darcs mv}
+      (not {\tt tla move})
+\item[{\tt tla commit}:]
+   {\tt darcs record}
+      (if committing locally)
+\item[{\tt tla commit}:]
+   {\tt darcs tag}
+      (if marking a version for later use)
+\item[{\tt tla commit}:]
+   {\tt darcs push} or {\tt darcs send}
+      (if committing remotely)
+\item[{\tt tla archive-mirror}:]
+   {\tt darcs pull} or {\tt darcs push}
+\item[{\tt tla tag}:]
+   {\tt darcs get}
+      (if creating a branch)
+\item[{\tt tla tag}:]
+   {\tt darcs tag}
+      (if creating a tag).
+\end{description}
}

Context:

[make add/remove --list-options not output preceding ./
David Roundy <[EMAIL PROTECTED]>**20050723134758
 We were treating the repository root differently from subdirectories
 because the file paths didn't need to get "fixed".  Addresses bug #158.
] 
[fix unit test that prompts for input
Will <[EMAIL PROTECTED]>**20050722181028] 
[Make DarcsRepo.add_to_inventory take a list.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050720174029
 This avoids opening the inventory multiple times.  Thanks to Ian for the hint.
] 
[Use mapM_ instead of the comprehensible alternative.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050720164258
 Mentioning mapM_ always impresses people at dinner parties.  Thanks to
 Ian for the hint.
] 
[Move iterateGitTree out of the IO monad.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050720162841
 We're reading immutable on-disk data, it's safe to do it unsafely.
] 
[Clean up usage of interleaveIO in Git.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050720162251] 
[fix write_problem to show all problems.
David Roundy <[EMAIL PROTECTED]>**20050717110628] 
[don't import head and tail, which are in the prelude.
David Roundy <[EMAIL PROTECTED]>**20050716143547] 
[Rename bound variable in fromJust macro.
Juliusz Chroboczek <[EMAIL PROTECTED]>**20050716221705
 Avoids ``shadows existing variable'' warnings which for some reason are
 errors.
 
 Could we please use Lisp macros instead?
] 
[TAG 2005-07-18
Ian Lynagh <[EMAIL PROTECTED]>**20050718193534] 
[put configure.ac back in the public domain.
David Roundy <[EMAIL PROTECTED]>**20050720115702] 
[fix error in name of --reorder-patches flag.
David Roundy <[EMAIL PROTECTED]>**20050722110752] 
[Push and pull can now show the detailed diffs of patches
Jim Radford <[EMAIL PROTECTED]>**20050717042645
 The same distinction is now made between --summary and --verbose
 as changes makes.
] 
[advance DARCS_VERSION to 1.0.4pre2.
David Roundy <[EMAIL PROTECTED]>**20050720115536
 In the new tradition of changing the version after a release rather than
 before a release (although when the release type changes to rc or actual
 release it'll have to be done before the release).
] 
[drop $srcdir use; build-directories aren't supported anyway
Peter Simons <[EMAIL PROTECTED]>**20050719140044] 
[clean generated manual files at realclean
Peter Simons <[EMAIL PROTECTED]>**20050719135935] 
[cosmetic changes
Peter Simons <[EMAIL PROTECTED]>**20050719135834] 
[move comment to the right place
Peter Simons <[EMAIL PROTECTED]>**20050719135818] 
[let config.status generate config.command
Peter Simons <[EMAIL PROTECTED]>**20050719135733] 
[make use of autoconf 2.5x's AC_INIT macro
Peter Simons <[EMAIL PROTECTED]>**20050719135611] 
[use ./config.status to re-configure build after autoconf changes
Peter Simons <[EMAIL PROTECTED]>**20050719135435] 
[update distclean and realclean targets
Peter Simons <[EMAIL PROTECTED]>**20050719135415] 
[canonize [EMAIL PROTECTED]
Peter Simons <[EMAIL PROTECTED]>**20050719134834] 
[cosmetic change
Peter Simons <[EMAIL PROTECTED]>**20050719134816] 
[update test suite to work with Peter's makefile changes.
David Roundy <[EMAIL PROTECTED]>**20050721102319] 
[TAG 1.0.4pre1
David Roundy <[EMAIL PROTECTED]>**20050718112234] 
Patch bundle hash:
3d49b5a61cff6851a89928add7b9c3eb2cc25625
_______________________________________________
darcs-devel mailing list
[email protected]
http://www.abridgegame.org/cgi-bin/mailman/listinfo/darcs-devel

Reply via email to