hgbook

changeset 395:149ea8ae39c4

translated a couple of paragraphs of the "behind the scenes" chapter
author Javier Rojas <jerojasro@devnull.li>
date Tue Nov 04 23:50:20 2008 -0500 (2008-11-04)
parents b286919e0d61
children 0f2170fcb79a
files es/Leame.1st es/concepts.tex
line diff
     1.1 --- a/es/Leame.1st	Mon Nov 03 21:04:25 2008 -0500
     1.2 +++ b/es/Leame.1st	Tue Nov 04 23:50:20 2008 -0500
     1.3 @@ -101,7 +101,7 @@
     1.4  || tour-basic.tex  || Javier Rojas  ||    100%    || 19/10/2008 ||  27/10/2008 ||
     1.5  || undo.tex        || Igor Támara   ||     60%    || 26/10/2008 ||             ||
     1.6  || tour-merge.tex  || Javier Rojas  ||    100%    || 28/10/2008 ||  03/11/2008 ||
     1.7 -|| concepts.tex    || Javier Rojas  ||      4%    || 03/11/2008 ||             ||
     1.8 +|| concepts.tex    || Javier Rojas  ||      7%    || 03/11/2008 ||             ||
     1.9  
    1.10  == Archivos en proceso de revisión ==
    1.11  ||'''archivo'''   || '''revisor''' ||'''Estado'''||'''Inicio'''||  '''Fin'''  ||
     2.1 --- a/es/concepts.tex	Mon Nov 03 21:04:25 2008 -0500
     2.2 +++ b/es/concepts.tex	Tue Nov 04 23:50:20 2008 -0500
     2.3 @@ -24,20 +24,22 @@
     2.4  
     2.5  Cuando Mercurial sigue las modificaciones a un fichero, guarda el
     2.6  historial de dicho fichero en un objeto de metadatos llamado
     2.7 -of that file in a metadata object called a \emph{filelog}.  Each entry
     2.8 -in the filelog contains enough information to reconstruct one revision
     2.9 -of the file that is being tracked.  Filelogs are stored as files in
    2.10 -the \sdirname{.hg/store/data} directory.  A filelog contains two kinds
    2.11 -of information: revision data, and an index to help Mercurial to find
    2.12 -a revision efficiently.
    2.13 -
    2.14 -A file that is large, or has a lot of history, has its filelog stored
    2.15 -in separate data (``\texttt{.d}'' suffix) and index (``\texttt{.i}''
    2.16 -suffix) files.  For small files without much history, the revision
    2.17 -data and index are combined in a single ``\texttt{.i}'' file.  The
    2.18 -correspondence between a file in the working directory and the filelog
    2.19 -that tracks its history in the repository is illustrated in
    2.20 -figure~\ref{fig:concepts:filelog}.
    2.21 +\emph{filelog}\ndt{Fichero de registro}.  Cada entrada en el fichero
    2.22 +de registro contiene suficiente información para reconstruir una
    2.23 +revisión del fichero que se está siguiendo. Los ficheros de registro
    2.24 +son almacenados como ficheros el el directorio
    2.25 +\sdirname{.hg/store/data}. Un fichero de registro contiene dos tipos
    2.26 +de información: datos de revisiones, y un índice para ayudar a
    2.27 +Mercurial a buscar revisiones eficientemente.
    2.28 +
    2.29 +El fichero de registro de un fichero grande, o con un historial muy
    2.30 +largo, es guardado como ficheros separados para datos (sufijo
    2.31 +``\texttt{.d}'') y para el índice (sufijo ``\texttt{.i}''). Para
    2.32 +ficheros pequeños con un historial pequeño, los datos de revisiones y
    2.33 +el índice son combinados en un único fichero ``\texttt{.i}''. La
    2.34 +correspondencia entre un fichero en el directorio de trabajo y el
    2.35 +fichero de registro que hace seguimiento a su historial en el
    2.36 +repositorio se ilustra en la figura~\ref{fig:concepts:filelog}.
    2.37  
    2.38  \begin{figure}[ht]
    2.39    \centering