hgbook

changeset 244:980393101109

Fix up some incorrect and stale directory names.
The .hg/data name problem was reported by Tim Hatch.
author Bryan O'Sullivan <bos@serpentine.com>
date Wed May 30 09:02:19 2007 -0700 (2007-05-30)
parents 7df934d3dcb5
children 3eaa02162e90
files en/concepts.tex en/hook.tex
line diff
     1.1 --- a/en/concepts.tex	Sun May 27 16:26:51 2007 -0700
     1.2 +++ b/en/concepts.tex	Wed May 30 09:02:19 2007 -0700
     1.3 @@ -24,9 +24,9 @@
     1.4  of that file in a metadata object called a \emph{filelog}.  Each entry
     1.5  in the filelog contains enough information to reconstruct one revision
     1.6  of the file that is being tracked.  Filelogs are stored as files in
     1.7 -the \sdirname{.hg/data} directory.  A filelog contains two kinds of
     1.8 -information: revision data, and an index to help Mercurial to find a
     1.9 -revision efficiently.  
    1.10 +the \sdirname{.hg/store/data} directory.  A filelog contains two kinds
    1.11 +of information: revision data, and an index to help Mercurial to find
    1.12 +a revision efficiently.
    1.13  
    1.14  A file that is large, or has a lot of history, has its filelog stored
    1.15  in separate data (``\texttt{.d}'' suffix) and index (``\texttt{.i}''
     2.1 --- a/en/hook.tex	Sun May 27 16:26:51 2007 -0700
     2.2 +++ b/en/hook.tex	Wed May 30 09:02:19 2007 -0700
     2.3 @@ -1263,8 +1263,8 @@
     2.4  Parameters to this hook:
     2.5  \begin{itemize}
     2.6  \item[\texttt{local}] A boolean.  Whether the tag is local to this
     2.7 -  repository instance (i.e.~stored in \sfilename{.hg/tags}) or managed
     2.8 -  by Mercurial (stored in \sfilename{.hgtags}).
     2.9 +  repository instance (i.e.~stored in \sfilename{.hg/localtags}) or
    2.10 +  managed by Mercurial (stored in \sfilename{.hgtags}).
    2.11  \item[\texttt{node}] A changeset ID.  The ID of the changeset to be tagged.
    2.12  \item[\texttt{tag}] A string.  The name of the tag to be created.
    2.13  \end{itemize}
    2.14 @@ -1374,8 +1374,8 @@
    2.15  Parameters to this hook:
    2.16  \begin{itemize}
    2.17  \item[\texttt{local}] A boolean.  Whether the new tag is local to this
    2.18 -  repository instance (i.e.~stored in \sfilename{.hg/tags}) or managed
    2.19 -  by Mercurial (stored in \sfilename{.hgtags}).
    2.20 +  repository instance (i.e.~stored in \sfilename{.hg/localtags}) or
    2.21 +  managed by Mercurial (stored in \sfilename{.hgtags}).
    2.22  \item[\texttt{node}] A changeset ID.  The ID of the changeset that was
    2.23    tagged.
    2.24  \item[\texttt{tag}] A string.  The name of the tag that was created.