mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-29 14:32:51 -06:00
Developer documentation updates prompted by the switch to darcs version 2
In particular, the --lazy flag replaces the --partial flag.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
<P ALIGN="center"><CENTER><H1>GF Developers Guide</H1>
|
<P ALIGN="center"><CENTER><H1>GF Developers Guide</H1>
|
||||||
<FONT SIZE="4">
|
<FONT SIZE="4">
|
||||||
<I>Authors: Björn Bringert and Krasimir Angelov</I><BR>
|
<I>Authors: Björn Bringert and Krasimir Angelov</I><BR>
|
||||||
Last update: Fri Jun 19 15:27:27 2009
|
Last update: Mon Dec 14 18:55:45 2009
|
||||||
</FONT></CENTER>
|
</FONT></CENTER>
|
||||||
|
|
||||||
<P></P>
|
<P></P>
|
||||||
@@ -101,7 +101,7 @@ in the following order:
|
|||||||
|
|
||||||
<P>
|
<P>
|
||||||
the first that is found will be used in the compilation. The libraries are also written
|
the first that is found will be used in the compilation. The libraries are also written
|
||||||
in Haskell and could be found on Hackage: <A HREF="http://hackage.haskell.org/">http://hackage.haskell.org/packages/archive/pkg-list.html</A>. If you want to check whether,
|
in Haskell and could be found on Hackage: <A HREF="http://hackage.haskell.org/packages/archive/pkg-list.html">http://hackage.haskell.org/packages/archive/pkg-list.html</A>. If you want to check whether,
|
||||||
you already have some of these you can use the following command:
|
you already have some of these you can use the following command:
|
||||||
</P>
|
</P>
|
||||||
<PRE>
|
<PRE>
|
||||||
@@ -120,8 +120,9 @@ if you tend to work on non-Latin language. Finaly readline supports both word co
|
|||||||
and Unicode. Currently this is the best supported library.
|
and Unicode. Currently this is the best supported library.
|
||||||
</P>
|
</P>
|
||||||
<P>
|
<P>
|
||||||
Before to get the GF sources you also need Darcs. Darcs is a decentralized revision control system,
|
Before to get the GF sources you also need Darcs, version 2 or later.
|
||||||
see: <A HREF="http://darcs.net/">http://darcs.net/</A> for more information. There are precompiled packages for many platforms available at
|
Darcs is a decentralized revision control system,
|
||||||
|
see <A HREF="http://darcs.net/">http://darcs.net/</A> for more information. There are precompiled packages for many platforms available at
|
||||||
<A HREF="http://darcs.net/DarcsWiki/CategoryBinaries">http://darcs.net/DarcsWiki/CategoryBinaries</A>. There is also source code if you want to compile it yourself. Darcs is
|
<A HREF="http://darcs.net/DarcsWiki/CategoryBinaries">http://darcs.net/DarcsWiki/CategoryBinaries</A>. There is also source code if you want to compile it yourself. Darcs is
|
||||||
also written in Haskell and so you can use GHC to compile it.
|
also written in Haskell and so you can use GHC to compile it.
|
||||||
</P>
|
</P>
|
||||||
@@ -141,7 +142,7 @@ If you plan to work continuously on GF then you should consider to get read-writ
|
|||||||
Anyone can get the latest development version of GF by running (all on one line):
|
Anyone can get the latest development version of GF by running (all on one line):
|
||||||
</P>
|
</P>
|
||||||
<PRE>
|
<PRE>
|
||||||
$ darcs get --partial --set-scripts-executable http://code.haskell.org/gf/
|
$ darcs get --lazy --set-scripts-executable http://code.haskell.org/gf/
|
||||||
</PRE>
|
</PRE>
|
||||||
<P></P>
|
<P></P>
|
||||||
<P>
|
<P>
|
||||||
@@ -234,11 +235,11 @@ Get your copy with (all on one line),
|
|||||||
replacing <CODE>bringert</CODE> with your own username on code.haskell.org:
|
replacing <CODE>bringert</CODE> with your own username on code.haskell.org:
|
||||||
</P>
|
</P>
|
||||||
<PRE>
|
<PRE>
|
||||||
$ darcs get --partial --set-scripts-executable bringert@code.haskell.org:/srv/code/gf
|
$ darcs get --lazy --set-scripts-executable bringert@code.haskell.org:/srv/code/gf
|
||||||
</PRE>
|
</PRE>
|
||||||
<P></P>
|
<P></P>
|
||||||
<P>
|
<P>
|
||||||
The option <CODE>--partial</CODE> means that you do not download all of the
|
The option <CODE>--lazy</CODE> means that darcs defers downloading all the
|
||||||
history for the repository. This saves space, bandwidth and CPU time,
|
history for the repository. This saves space, bandwidth and CPU time,
|
||||||
and most people don't need the full history of all changes in the
|
and most people don't need the full history of all changes in the
|
||||||
past.
|
past.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
GF Developers Guide
|
GF Developers Guide
|
||||||
Authors: Björn Bringert and Krasimir Angelov
|
Authors: Björn Bringert and Krasimir Angelov
|
||||||
Last update: %%date(%c)
|
Last update: %%mtime(%c)
|
||||||
|
|
||||||
% NOTE: this is a txt2tags file.
|
% NOTE: this is a txt2tags file.
|
||||||
% Create an html file from this file using:
|
% Create an html file from this file using:
|
||||||
@@ -67,8 +67,9 @@ it first. Unfortunately editline does not have good support for Unicode. This wi
|
|||||||
if you tend to work on non-Latin language. Finaly readline supports both word completion
|
if you tend to work on non-Latin language. Finaly readline supports both word completion
|
||||||
and Unicode. Currently this is the best supported library.
|
and Unicode. Currently this is the best supported library.
|
||||||
|
|
||||||
Before to get the GF sources you also need Darcs. Darcs is a decentralized revision control system,
|
Before to get the GF sources you also need Darcs, version 2 or later.
|
||||||
see: http://darcs.net/ for more information. There are precompiled packages for many platforms available at
|
Darcs is a decentralized revision control system,
|
||||||
|
see http://darcs.net/ for more information. There are precompiled packages for many platforms available at
|
||||||
http://darcs.net/DarcsWiki/CategoryBinaries. There is also source code if you want to compile it yourself. Darcs is
|
http://darcs.net/DarcsWiki/CategoryBinaries. There is also source code if you want to compile it yourself. Darcs is
|
||||||
also written in Haskell and so you can use GHC to compile it.
|
also written in Haskell and so you can use GHC to compile it.
|
||||||
|
|
||||||
@@ -87,7 +88,7 @@ If you plan to work continuously on GF then you should consider to get read-writ
|
|||||||
Anyone can get the latest development version of GF by running (all on one line):
|
Anyone can get the latest development version of GF by running (all on one line):
|
||||||
|
|
||||||
```
|
```
|
||||||
$ darcs get --partial --set-scripts-executable http://code.haskell.org/gf/
|
$ darcs get --lazy --set-scripts-executable http://code.haskell.org/gf/
|
||||||
```
|
```
|
||||||
|
|
||||||
This will create a directory called ``gf`` in the current
|
This will create a directory called ``gf`` in the current
|
||||||
@@ -174,10 +175,10 @@ Get your copy with (all on one line),
|
|||||||
replacing ``bringert`` with your own username on code.haskell.org:
|
replacing ``bringert`` with your own username on code.haskell.org:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ darcs get --partial --set-scripts-executable bringert@code.haskell.org:/srv/code/gf
|
$ darcs get --lazy --set-scripts-executable bringert@code.haskell.org:/srv/code/gf
|
||||||
```
|
```
|
||||||
|
|
||||||
The option ``--partial`` means that you do not download all of the
|
The option ``--lazy`` means that darcs defers downloading all the
|
||||||
history for the repository. This saves space, bandwidth and CPU time,
|
history for the repository. This saves space, bandwidth and CPU time,
|
||||||
and most people don't need the full history of all changes in the
|
and most people don't need the full history of all changes in the
|
||||||
past.
|
past.
|
||||||
|
|||||||
Reference in New Issue
Block a user