# HG changeset patch # User Bryan O'Sullivan # Date 1180540939 25200 # Node ID 98039310110941b64bba893ca8f4c369c3958f1f # Parent 7df934d3dcb532ac70113c7babd140cebabcd878 Fix up some incorrect and stale directory names. The .hg/data name problem was reported by Tim Hatch. diff -r 7df934d3dcb5 -r 980393101109 en/concepts.tex --- a/en/concepts.tex Sun May 27 16:26:51 2007 -0700 +++ b/en/concepts.tex Wed May 30 09:02:19 2007 -0700 @@ -24,9 +24,9 @@ of that file in a metadata object called a \emph{filelog}. Each entry in the filelog contains enough information to reconstruct one revision of the file that is being tracked. Filelogs are stored as files in -the \sdirname{.hg/data} directory. A filelog contains two kinds of -information: revision data, and an index to help Mercurial to find a -revision efficiently. +the \sdirname{.hg/store/data} directory. A filelog contains two kinds +of information: revision data, and an index to help Mercurial to find +a revision efficiently. A file that is large, or has a lot of history, has its filelog stored in separate data (``\texttt{.d}'' suffix) and index (``\texttt{.i}'' diff -r 7df934d3dcb5 -r 980393101109 en/hook.tex --- a/en/hook.tex Sun May 27 16:26:51 2007 -0700 +++ b/en/hook.tex Wed May 30 09:02:19 2007 -0700 @@ -1263,8 +1263,8 @@ Parameters to this hook: \begin{itemize} \item[\texttt{local}] A boolean. Whether the tag is local to this - repository instance (i.e.~stored in \sfilename{.hg/tags}) or managed - by Mercurial (stored in \sfilename{.hgtags}). + repository instance (i.e.~stored in \sfilename{.hg/localtags}) or + managed by Mercurial (stored in \sfilename{.hgtags}). \item[\texttt{node}] A changeset ID. The ID of the changeset to be tagged. \item[\texttt{tag}] A string. The name of the tag to be created. \end{itemize} @@ -1374,8 +1374,8 @@ Parameters to this hook: \begin{itemize} \item[\texttt{local}] A boolean. Whether the new tag is local to this - repository instance (i.e.~stored in \sfilename{.hg/tags}) or managed - by Mercurial (stored in \sfilename{.hgtags}). + repository instance (i.e.~stored in \sfilename{.hg/localtags}) or + managed by Mercurial (stored in \sfilename{.hgtags}). \item[\texttt{node}] A changeset ID. The ID of the changeset that was tagged. \item[\texttt{tag}] A string. The name of the tag that was created.