annotate es/hook.tex @ 536:05bfbe50e7e4

translated a paragraph
author Javier Rojas <jerojasro@devnull.li>
date Fri, 05 Dec 2008 22:09:05 -0500
parents 263a8436d72d
children 4e0684e824e1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
536
05bfbe50e7e4 translated a paragraph
Javier Rojas <jerojasro@devnull.li>
parents: 534
diff changeset
1 \chapter{Manejo de eventos en repositorios mediante ganchos}
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
2 \label{chap:hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
3
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
4 Mercurial ofrece un poderoso mecanismo para permitirle a usted
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
5 automatizar la ejecución de acciones en respuesta a eventos que
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
6 ocurran en un repositorio. En algunos casos, usted puede controlar
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
7 incluso la respuesta de Mercurial a dichos eventos.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
8
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
9 Mercurial usa el término \emph{gancho} para identificar estas
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
10 acciones. Los ganchos son conocidos como ``disparadores'' en algunos
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
11 sistemas de control de revisiones, pero los dos nombres se refieren al
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
12 mismo concepto.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
13
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
14 \section{Vistazo general de ganchos en Mercurial}
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
15
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
16 A continuación se encuentra una breve lista de los ganchos que
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
17 Mercurial soporta. Volveremos a cada uno de estos ganchos con más
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
18 detalle después, en la sección~\ref{sec:hook:ref}.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
19
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
20 \begin{itemize}
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
21 \item[\small\hook{changegroup}] Es ejecutado luego de que un grupo de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
22 conjuntos de cambios ha sido traído al repositorio desde algún
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
23 otro sitio.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
24 \item[\small\hook{commit}] Es ejecutado después de la creación de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
25 un conjunto de cambios en el repositorio local.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
26 \item[\small\hook{incoming}] Es ejecutado una vez por cada conjunto de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
27 cambios traído al repositorio desde otra ubicación. Note la
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
28 diferencia respecto al gancho \hook{changegroup}, que es ejecutado
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
29 una vez por cada \emph{grupo} de conjuntos de cambios que se
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
30 traiga.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
31 \item[\small\hook{outgoing}] Es ejecutado luego de que un grupo de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
32 conjuntos de cambios ha sido transmitido desde el repositorio.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
33 \item[\small\hook{prechangegroup}] Es ejecutado antes de iniciar la
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
34 recepción de un grupo de conjuntos de cambios en el repositorio.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
35 \item[\small\hook{precommit}] De control. Es ejecutado antes de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
36 iniciar una consignación.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
37 \item[\small\hook{preoutgoing}] De control. Es ejecutado antes de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
38 iniciar la transmisión de un grupo de conjuntos de cambios desde
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
39 el repositorio.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
40 \item[\small\hook{pretag}] De control. Es ejecutado antes de crear una
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
41 etiqueta.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
42 \item[\small\hook{pretxnchangegroup}] De control. Es ejecutado después
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
43 de haber recibido un grupo de conjuntos de cambios en el
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
44 repositorio local, pero antes de que la transacción se complete y
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
45 los cambios sean permanentes dentro del repositorio.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
46 \item[\small\hook{pretxncommit}] De control. Es ejecutado luego de la
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
47 creación de un conjunto de cambios en el repositorio local, pero
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
48 antes de que la transacción que hace permanente el cambio sea
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
49 completada.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
50 \item[\small\hook{preupdate}] De control. Es ejecutado antes de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
51 iniciar una actualización o fusión en el directorio de trabajo.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
52 \item[\small\hook{tag}] Es ejecutado después de la creación de una
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
53 etiqueta.
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
54 \item[\small\hook{update}] Es ejecutado después de que termina una
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
55 actualización o una fusión.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
56 \end{itemize}
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
57 Cada uno de los ganchos cuya descripción empieza con la frase
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
58 ``de control'' tiene la facultad de determinar si una actividad puede
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
59 continuar. Si el gancho se ejecuta con éxito, la actividad puede
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
60 continuar; si falla, o bien la actividad no es permitida, o se
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
61 deshacen los cambios que se puedan haber llevado a cabo, dependiendo
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
62 del gancho involucrado.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
63
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
64 \section{Ganchos y seguridad}
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
65
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
66 \subsection{Los ganchos se ejecutan con sus privilegios de usuario}
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
67
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
68 Cuando usted ejecuta un comando de Mercurial en un repositorio, y el
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
69 comando causa la ejecución de un gancho, dicho gancho se ejecuta en
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
70 \emph{su} sistema, en \emph{su} cuenta de usuario, con \emph{sus}
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
71 privilegios. Ya que los ganchos son elementos arbitrarios de código
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
72 ejecutable, usted debería tratarlos con un nivel adecuado de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
73 desconfianza. No instale un gancho a menos en que confíe en quien lo
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
74 creó y en lo que el gancho hace.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
75
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
76 En algunos casos, usted puede estar expuesto a ganchos que usted no
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
77 %TODO acá introduzco algo de texto por mi cuenta, por claridad
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
78 instaló. Si usted usa Mercurial en un sistema extraño, tenga en cuenta
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
79 que Mercurial ejecutará los ganchos definidos en el fichero \hgrc.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
80
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
81 Si está trabajando con un repositorio propiedad de otro usuario,
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
82 Mercurial podrá ejecutar los ganchos definidos en el repositorio de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
83 dicho usuario, pero los ejecutará como ``usted''. Por ejemplo, si
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
84 usted jala (\hgcmd{pull}) desde ese repositorio, y el
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
85 \sfilename{.hg/hgrc} define un gancho saliente (\hook{outgoing}),
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
86 dicho gancho se ejecuta bajo su cuenta de usuario, aun cuando usted no
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
87 es el propietario del repositorio.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
88
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
89 \begin{note}
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
90 Esto sólo aplica si usted está jalando desde un repositorio en un
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
91 sistema de ficheros local o de red. Si está jalando a través de http
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
92 o ssh, cualquier gancho saliente (\hook{outgoing}) se ejecutará bajo
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
93 la cuenta que está ejecutando el proceso servidor, en el servidor.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
94 \end{note}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
95
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
96 XXX Para ver qué ganchos han sido definidos en un repositorio, use el
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
97 comando \hgcmdargs{config}{hooks}. Si usted está trabajando en un
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
98 repositorio, pero comunicándose con otro que no le pertenece
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
99 (por ejemplo, usando \hgcmd{pull} o \hgcmd{incoming}), recuerde que
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
100 los ganchos que debe considerar son los del otro repositorio, no los
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
101 del suyo.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
102
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
103 \subsection{Los ganchos no se propagan}
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
104
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
105 En Mercurial, no se hace control de revisiones de los ganchos, y no se
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
106 propagan cuando usted clona, o jala de, un repositorio. El motivo para
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
107 esto es simple: un gancho es código ejecutable arbitrario. Se ejecuta
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
108 bajo su identidad, con su nivel de privilegios, en su máquina.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
109
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
110 Sería extremadamente descuidado de parte de cualquier sistema
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
111 distribuido de control de revisiones el implementar control de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
112 revisiones para ganchos, ya que esto ofrecería maneras fácilmente
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
113 %TODO subvertir
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
114 aprovechables de subvertir las cuentas de los usuarios del sistema de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
115 control de revisiones.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
116
534
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
117 Ya que Mercurial no propaga los ganchos, si usted está colaborando con
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
118 otras personas en un proyecto común, no debería asumir que ellos están
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
119 usando los mismos ganchos para Mercurial que usted usa, o que los de
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
120 ellos están configurado correctamente. Usted debería documentar los
263a8436d72d translated more text. Surprise!
jerojasro@localhost
parents: 435
diff changeset
121 ganchos que usted espera que la gente use.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
122
536
05bfbe50e7e4 translated a paragraph
Javier Rojas <jerojasro@devnull.li>
parents: 534
diff changeset
123 En una intranet corporativa, esto es algo más fácil de manejar, ya que
05bfbe50e7e4 translated a paragraph
Javier Rojas <jerojasro@devnull.li>
parents: 534
diff changeset
124 usted puede, por ejemplo, proveer una instalación ``estándar'' de
05bfbe50e7e4 translated a paragraph
Javier Rojas <jerojasro@devnull.li>
parents: 534
diff changeset
125 Mercurial en un sistema de ficheros NFS, y usar un fichero \hgrc\
05bfbe50e7e4 translated a paragraph
Javier Rojas <jerojasro@devnull.li>
parents: 534
diff changeset
126 global para definir los ganchos que verán todos los usuarios. Sin
05bfbe50e7e4 translated a paragraph
Javier Rojas <jerojasro@devnull.li>
parents: 534
diff changeset
127 embargo, este enfoque tiene sus límites; vea más abajo.
435
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
128
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
129 \subsection{Hooks can be overridden}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
130
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
131 Mercurial allows you to override a hook definition by redefining the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
132 hook. You can disable it by setting its value to the empty string, or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
133 change its behaviour as you wish.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
134
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
135 If you deploy a system-~or site-wide \hgrc\ file that defines some
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
136 hooks, you should thus understand that your users can disable or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
137 override those hooks.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
138
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
139 \subsection{Ensuring that critical hooks are run}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
140
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
141 Sometimes you may want to enforce a policy that you do not want others
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
142 to be able to work around. For example, you may have a requirement
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
143 that every changeset must pass a rigorous set of tests. Defining this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
144 requirement via a hook in a site-wide \hgrc\ won't work for remote
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
145 users on laptops, and of course local users can subvert it at will by
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
146 overriding the hook.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
147
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
148 Instead, you can set up your policies for use of Mercurial so that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
149 people are expected to propagate changes through a well-known
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
150 ``canonical'' server that you have locked down and configured
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
151 appropriately.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
152
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
153 One way to do this is via a combination of social engineering and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
154 technology. Set up a restricted-access account; users can push
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
155 changes over the network to repositories managed by this account, but
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
156 they cannot log into the account and run normal shell commands. In
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
157 this scenario, a user can commit a changeset that contains any old
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
158 garbage they want.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
159
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
160 When someone pushes a changeset to the server that everyone pulls
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
161 from, the server will test the changeset before it accepts it as
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
162 permanent, and reject it if it fails to pass the test suite. If
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
163 people only pull changes from this filtering server, it will serve to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
164 ensure that all changes that people pull have been automatically
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
165 vetted.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
166
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
167 \section{Care with \texttt{pretxn} hooks in a shared-access repository}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
168
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
169 If you want to use hooks to do some automated work in a repository
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
170 that a number of people have shared access to, you need to be careful
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
171 in how you do this.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
172
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
173 Mercurial only locks a repository when it is writing to the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
174 repository, and only the parts of Mercurial that write to the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
175 repository pay attention to locks. Write locks are necessary to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
176 prevent multiple simultaneous writers from scribbling on each other's
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
177 work, corrupting the repository.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
178
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
179 Because Mercurial is careful with the order in which it reads and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
180 writes data, it does not need to acquire a lock when it wants to read
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
181 data from the repository. The parts of Mercurial that read from the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
182 repository never pay attention to locks. This lockless reading scheme
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
183 greatly increases performance and concurrency.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
184
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
185 With great performance comes a trade-off, though, one which has the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
186 potential to cause you trouble unless you're aware of it. To describe
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
187 this requires a little detail about how Mercurial adds changesets to a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
188 repository and reads those changes.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
189
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
190 When Mercurial \emph{writes} metadata, it writes it straight into the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
191 destination file. It writes file data first, then manifest data
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
192 (which contains pointers to the new file data), then changelog data
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
193 (which contains pointers to the new manifest data). Before the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
194 write to each file, it stores a record of where the end of the file
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
195 was in its transaction log. If the transaction must be rolled back,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
196 Mercurial simply truncates each file back to the size it was before the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
197 transaction began.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
198
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
199 When Mercurial \emph{reads} metadata, it reads the changelog first,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
200 then everything else. Since a reader will only access parts of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
201 manifest or file metadata that it can see in the changelog, it can
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
202 never see partially written data.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
203
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
204 Some controlling hooks (\hook{pretxncommit} and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
205 \hook{pretxnchangegroup}) run when a transaction is almost complete.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
206 All of the metadata has been written, but Mercurial can still roll the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
207 transaction back and cause the newly-written data to disappear.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
208
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
209 If one of these hooks runs for long, it opens a window of time during
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
210 which a reader can see the metadata for changesets that are not yet
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
211 permanent, and should not be thought of as ``really there''. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
212 longer the hook runs, the longer that window is open.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
213
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
214 \subsection{The problem illustrated}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
215
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
216 In principle, a good use for the \hook{pretxnchangegroup} hook would
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
217 be to automatically build and test incoming changes before they are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
218 accepted into a central repository. This could let you guarantee that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
219 nobody can push changes to this repository that ``break the build''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
220 But if a client can pull changes while they're being tested, the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
221 usefulness of the test is zero; an unsuspecting someone can pull
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
222 untested changes, potentially breaking their build.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
223
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
224 The safest technological answer to this challenge is to set up such a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
225 ``gatekeeper'' repository as \emph{unidirectional}. Let it take
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
226 changes pushed in from the outside, but do not allow anyone to pull
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
227 changes from it (use the \hook{preoutgoing} hook to lock it down).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
228 Configure a \hook{changegroup} hook so that if a build or test
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
229 succeeds, the hook will push the new changes out to another repository
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
230 that people \emph{can} pull from.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
231
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
232 In practice, putting a centralised bottleneck like this in place is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
233 not often a good idea, and transaction visibility has nothing to do
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
234 with the problem. As the size of a project---and the time it takes to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
235 build and test---grows, you rapidly run into a wall with this ``try
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
236 before you buy'' approach, where you have more changesets to test than
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
237 time in which to deal with them. The inevitable result is frustration
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
238 on the part of all involved.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
239
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
240 An approach that scales better is to get people to build and test
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
241 before they push, then run automated builds and tests centrally
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
242 \emph{after} a push, to be sure all is well. The advantage of this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
243 approach is that it does not impose a limit on the rate at which the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
244 repository can accept changes.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
245
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
246 \section{A short tutorial on using hooks}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
247 \label{sec:hook:simple}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
248
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
249 It is easy to write a Mercurial hook. Let's start with a hook that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
250 runs when you finish a \hgcmd{commit}, and simply prints the hash of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
251 the changeset you just created. The hook is called \hook{commit}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
252
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
253 \begin{figure}[ht]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
254 \interaction{hook.simple.init}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
255 \caption{A simple hook that runs when a changeset is committed}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
256 \label{ex:hook:init}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
257 \end{figure}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
258
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
259 All hooks follow the pattern in example~\ref{ex:hook:init}. You add
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
260 an entry to the \rcsection{hooks} section of your \hgrc. On the left
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
261 is the name of the event to trigger on; on the right is the action to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
262 take. As you can see, you can run an arbitrary shell command in a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
263 hook. Mercurial passes extra information to the hook using
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
264 environment variables (look for \envar{HG\_NODE} in the example).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
265
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
266 \subsection{Performing multiple actions per event}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
267
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
268 Quite often, you will want to define more than one hook for a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
269 particular kind of event, as shown in example~\ref{ex:hook:ext}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
270 Mercurial lets you do this by adding an \emph{extension} to the end of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
271 a hook's name. You extend a hook's name by giving the name of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
272 hook, followed by a full stop (the ``\texttt{.}'' character), followed
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
273 by some more text of your choosing. For example, Mercurial will run
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
274 both \texttt{commit.foo} and \texttt{commit.bar} when the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
275 \texttt{commit} event occurs.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
276
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
277 \begin{figure}[ht]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
278 \interaction{hook.simple.ext}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
279 \caption{Defining a second \hook{commit} hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
280 \label{ex:hook:ext}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
281 \end{figure}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
282
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
283 To give a well-defined order of execution when there are multiple
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
284 hooks defined for an event, Mercurial sorts hooks by extension, and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
285 executes the hook commands in this sorted order. In the above
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
286 example, it will execute \texttt{commit.bar} before
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
287 \texttt{commit.foo}, and \texttt{commit} before both.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
288
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
289 It is a good idea to use a somewhat descriptive extension when you
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
290 define a new hook. This will help you to remember what the hook was
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
291 for. If the hook fails, you'll get an error message that contains the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
292 hook name and extension, so using a descriptive extension could give
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
293 you an immediate hint as to why the hook failed (see
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
294 section~\ref{sec:hook:perm} for an example).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
295
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
296 \subsection{Controlling whether an activity can proceed}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
297 \label{sec:hook:perm}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
298
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
299 In our earlier examples, we used the \hook{commit} hook, which is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
300 run after a commit has completed. This is one of several Mercurial
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
301 hooks that run after an activity finishes. Such hooks have no way of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
302 influencing the activity itself.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
303
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
304 Mercurial defines a number of events that occur before an activity
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
305 starts; or after it starts, but before it finishes. Hooks that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
306 trigger on these events have the added ability to choose whether the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
307 activity can continue, or will abort.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
308
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
309 The \hook{pretxncommit} hook runs after a commit has all but
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
310 completed. In other words, the metadata representing the changeset
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
311 has been written out to disk, but the transaction has not yet been
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
312 allowed to complete. The \hook{pretxncommit} hook has the ability to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
313 decide whether the transaction can complete, or must be rolled back.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
314
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
315 If the \hook{pretxncommit} hook exits with a status code of zero, the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
316 transaction is allowed to complete; the commit finishes; and the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
317 \hook{commit} hook is run. If the \hook{pretxncommit} hook exits with
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
318 a non-zero status code, the transaction is rolled back; the metadata
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
319 representing the changeset is erased; and the \hook{commit} hook is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
320 not run.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
321
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
322 \begin{figure}[ht]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
323 \interaction{hook.simple.pretxncommit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
324 \caption{Using the \hook{pretxncommit} hook to control commits}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
325 \label{ex:hook:pretxncommit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
326 \end{figure}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
327
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
328 The hook in example~\ref{ex:hook:pretxncommit} checks that a commit
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
329 comment contains a bug ID. If it does, the commit can complete. If
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
330 not, the commit is rolled back.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
331
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
332 \section{Writing your own hooks}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
333
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
334 When you are writing a hook, you might find it useful to run Mercurial
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
335 either with the \hggopt{-v} option, or the \rcitem{ui}{verbose} config
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
336 item set to ``true''. When you do so, Mercurial will print a message
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
337 before it calls each hook.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
338
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
339 \subsection{Choosing how your hook should run}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
340 \label{sec:hook:lang}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
341
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
342 You can write a hook either as a normal program---typically a shell
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
343 script---or as a Python function that is executed within the Mercurial
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
344 process.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
345
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
346 Writing a hook as an external program has the advantage that it
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
347 requires no knowledge of Mercurial's internals. You can call normal
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
348 Mercurial commands to get any added information you need. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
349 trade-off is that external hooks are slower than in-process hooks.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
350
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
351 An in-process Python hook has complete access to the Mercurial API,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
352 and does not ``shell out'' to another process, so it is inherently
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
353 faster than an external hook. It is also easier to obtain much of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
354 information that a hook requires by using the Mercurial API than by
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
355 running Mercurial commands.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
356
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
357 If you are comfortable with Python, or require high performance,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
358 writing your hooks in Python may be a good choice. However, when you
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
359 have a straightforward hook to write and you don't need to care about
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
360 performance (probably the majority of hooks), a shell script is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
361 perfectly fine.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
362
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
363 \subsection{Hook parameters}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
364 \label{sec:hook:param}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
365
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
366 Mercurial calls each hook with a set of well-defined parameters. In
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
367 Python, a parameter is passed as a keyword argument to your hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
368 function. For an external program, a parameter is passed as an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
369 environment variable.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
370
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
371 Whether your hook is written in Python or as a shell script, the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
372 hook-specific parameter names and values will be the same. A boolean
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
373 parameter will be represented as a boolean value in Python, but as the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
374 number 1 (for ``true'') or 0 (for ``false'') as an environment
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
375 variable for an external hook. If a hook parameter is named
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
376 \texttt{foo}, the keyword argument for a Python hook will also be
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
377 named \texttt{foo}, while the environment variable for an external
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
378 hook will be named \texttt{HG\_FOO}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
379
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
380 \subsection{Hook return values and activity control}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
381
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
382 A hook that executes successfully must exit with a status of zero if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
383 external, or return boolean ``false'' if in-process. Failure is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
384 indicated with a non-zero exit status from an external hook, or an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
385 in-process hook returning boolean ``true''. If an in-process hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
386 raises an exception, the hook is considered to have failed.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
387
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
388 For a hook that controls whether an activity can proceed, zero/false
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
389 means ``allow'', while non-zero/true/exception means ``deny''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
390
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
391 \subsection{Writing an external hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
392
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
393 When you define an external hook in your \hgrc\ and the hook is run,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
394 its value is passed to your shell, which interprets it. This means
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
395 that you can use normal shell constructs in the body of the hook.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
396
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
397 An executable hook is always run with its current directory set to a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
398 repository's root directory.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
399
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
400 Each hook parameter is passed in as an environment variable; the name
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
401 is upper-cased, and prefixed with the string ``\texttt{HG\_}''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
402
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
403 With the exception of hook parameters, Mercurial does not set or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
404 modify any environment variables when running a hook. This is useful
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
405 to remember if you are writing a site-wide hook that may be run by a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
406 number of different users with differing environment variables set.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
407 In multi-user situations, you should not rely on environment variables
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
408 being set to the values you have in your environment when testing the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
409 hook.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
410
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
411 \subsection{Telling Mercurial to use an in-process hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
412
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
413 The \hgrc\ syntax for defining an in-process hook is slightly
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
414 different than for an executable hook. The value of the hook must
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
415 start with the text ``\texttt{python:}'', and continue with the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
416 fully-qualified name of a callable object to use as the hook's value.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
417
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
418 The module in which a hook lives is automatically imported when a hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
419 is run. So long as you have the module name and \envar{PYTHONPATH}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
420 right, it should ``just work''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
421
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
422 The following \hgrc\ example snippet illustrates the syntax and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
423 meaning of the notions we just described.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
424 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
425 [hooks]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
426 commit.example = python:mymodule.submodule.myhook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
427 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
428 When Mercurial runs the \texttt{commit.example} hook, it imports
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
429 \texttt{mymodule.submodule}, looks for the callable object named
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
430 \texttt{myhook}, and calls it.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
431
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
432 \subsection{Writing an in-process hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
433
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
434 The simplest in-process hook does nothing, but illustrates the basic
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
435 shape of the hook API:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
436 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
437 def myhook(ui, repo, **kwargs):
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
438 pass
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
439 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
440 The first argument to a Python hook is always a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
441 \pymodclass{mercurial.ui}{ui} object. The second is a repository object;
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
442 at the moment, it is always an instance of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
443 \pymodclass{mercurial.localrepo}{localrepository}. Following these two
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
444 arguments are other keyword arguments. Which ones are passed in
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
445 depends on the hook being called, but a hook can ignore arguments it
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
446 doesn't care about by dropping them into a keyword argument dict, as
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
447 with \texttt{**kwargs} above.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
448
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
449 \section{Some hook examples}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
450
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
451 \subsection{Writing meaningful commit messages}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
452
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
453 It's hard to imagine a useful commit message being very short. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
454 simple \hook{pretxncommit} hook of figure~\ref{ex:hook:msglen.go}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
455 will prevent you from committing a changeset with a message that is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
456 less than ten bytes long.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
457
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
458 \begin{figure}[ht]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
459 \interaction{hook.msglen.go}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
460 \caption{A hook that forbids overly short commit messages}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
461 \label{ex:hook:msglen.go}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
462 \end{figure}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
463
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
464 \subsection{Checking for trailing whitespace}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
465
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
466 An interesting use of a commit-related hook is to help you to write
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
467 cleaner code. A simple example of ``cleaner code'' is the dictum that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
468 a change should not add any new lines of text that contain ``trailing
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
469 whitespace''. Trailing whitespace is a series of space and tab
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
470 characters at the end of a line of text. In most cases, trailing
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
471 whitespace is unnecessary, invisible noise, but it is occasionally
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
472 problematic, and people often prefer to get rid of it.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
473
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
474 You can use either the \hook{precommit} or \hook{pretxncommit} hook to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
475 tell whether you have a trailing whitespace problem. If you use the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
476 \hook{precommit} hook, the hook will not know which files you are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
477 committing, so it will have to check every modified file in the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
478 repository for trailing white space. If you want to commit a change
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
479 to just the file \filename{foo}, but the file \filename{bar} contains
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
480 trailing whitespace, doing a check in the \hook{precommit} hook will
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
481 prevent you from committing \filename{foo} due to the problem with
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
482 \filename{bar}. This doesn't seem right.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
483
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
484 Should you choose the \hook{pretxncommit} hook, the check won't occur
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
485 until just before the transaction for the commit completes. This will
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
486 allow you to check for problems only the exact files that are being
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
487 committed. However, if you entered the commit message interactively
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
488 and the hook fails, the transaction will roll back; you'll have to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
489 re-enter the commit message after you fix the trailing whitespace and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
490 run \hgcmd{commit} again.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
491
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
492 \begin{figure}[ht]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
493 \interaction{hook.ws.simple}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
494 \caption{A simple hook that checks for trailing whitespace}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
495 \label{ex:hook:ws.simple}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
496 \end{figure}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
497
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
498 Figure~\ref{ex:hook:ws.simple} introduces a simple \hook{pretxncommit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
499 hook that checks for trailing whitespace. This hook is short, but not
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
500 very helpful. It exits with an error status if a change adds a line
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
501 with trailing whitespace to any file, but does not print any
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
502 information that might help us to identify the offending file or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
503 line. It also has the nice property of not paying attention to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
504 unmodified lines; only lines that introduce new trailing whitespace
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
505 cause problems.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
506
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
507 \begin{figure}[ht]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
508 \interaction{hook.ws.better}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
509 \caption{A better trailing whitespace hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
510 \label{ex:hook:ws.better}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
511 \end{figure}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
512
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
513 The example of figure~\ref{ex:hook:ws.better} is much more complex,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
514 but also more useful. It parses a unified diff to see if any lines
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
515 add trailing whitespace, and prints the name of the file and the line
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
516 number of each such occurrence. Even better, if the change adds
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
517 trailing whitespace, this hook saves the commit comment and prints the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
518 name of the save file before exiting and telling Mercurial to roll the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
519 transaction back, so you can use
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
520 \hgcmdargs{commit}{\hgopt{commit}{-l}~\emph{filename}} to reuse the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
521 saved commit message once you've corrected the problem.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
522
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
523 As a final aside, note in figure~\ref{ex:hook:ws.better} the use of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
524 \command{perl}'s in-place editing feature to get rid of trailing
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
525 whitespace from a file. This is concise and useful enough that I will
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
526 reproduce it here.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
527 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
528 perl -pi -e 's,\\s+\$,,' filename
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
529 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
530
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
531 \section{Bundled hooks}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
532
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
533 Mercurial ships with several bundled hooks. You can find them in the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
534 \dirname{hgext} directory of a Mercurial source tree. If you are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
535 using a Mercurial binary package, the hooks will be located in the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
536 \dirname{hgext} directory of wherever your package installer put
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
537 Mercurial.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
538
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
539 \subsection{\hgext{acl}---access control for parts of a repository}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
540
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
541 The \hgext{acl} extension lets you control which remote users are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
542 allowed to push changesets to a networked server. You can protect any
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
543 portion of a repository (including the entire repo), so that a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
544 specific remote user can push changes that do not affect the protected
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
545 portion.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
546
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
547 This extension implements access control based on the identity of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
548 user performing a push, \emph{not} on who committed the changesets
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
549 they're pushing. It makes sense to use this hook only if you have a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
550 locked-down server environment that authenticates remote users, and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
551 you want to be sure that only specific users are allowed to push
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
552 changes to that server.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
553
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
554 \subsubsection{Configuring the \hook{acl} hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
555
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
556 In order to manage incoming changesets, the \hgext{acl} hook must be
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
557 used as a \hook{pretxnchangegroup} hook. This lets it see which files
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
558 are modified by each incoming changeset, and roll back a group of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
559 changesets if they modify ``forbidden'' files. Example:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
560 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
561 [hooks]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
562 pretxnchangegroup.acl = python:hgext.acl.hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
563 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
564
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
565 The \hgext{acl} extension is configured using three sections.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
566
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
567 The \rcsection{acl} section has only one entry, \rcitem{acl}{sources},
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
568 which lists the sources of incoming changesets that the hook should
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
569 pay attention to. You don't normally need to configure this section.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
570 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
571 \item[\rcitem{acl}{serve}] Control incoming changesets that are arriving
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
572 from a remote repository over http or ssh. This is the default
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
573 value of \rcitem{acl}{sources}, and usually the only setting you'll
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
574 need for this configuration item.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
575 \item[\rcitem{acl}{pull}] Control incoming changesets that are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
576 arriving via a pull from a local repository.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
577 \item[\rcitem{acl}{push}] Control incoming changesets that are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
578 arriving via a push from a local repository.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
579 \item[\rcitem{acl}{bundle}] Control incoming changesets that are
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
580 arriving from another repository via a bundle.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
581 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
582
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
583 The \rcsection{acl.allow} section controls the users that are allowed to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
584 add changesets to the repository. If this section is not present, all
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
585 users that are not explicitly denied are allowed. If this section is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
586 present, all users that are not explicitly allowed are denied (so an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
587 empty section means that all users are denied).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
588
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
589 The \rcsection{acl.deny} section determines which users are denied
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
590 from adding changesets to the repository. If this section is not
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
591 present or is empty, no users are denied.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
592
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
593 The syntaxes for the \rcsection{acl.allow} and \rcsection{acl.deny}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
594 sections are identical. On the left of each entry is a glob pattern
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
595 that matches files or directories, relative to the root of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
596 repository; on the right, a user name.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
597
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
598 In the following example, the user \texttt{docwriter} can only push
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
599 changes to the \dirname{docs} subtree of the repository, while
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
600 \texttt{intern} can push changes to any file or directory except
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
601 \dirname{source/sensitive}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
602 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
603 [acl.allow]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
604 docs/** = docwriter
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
605
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
606 [acl.deny]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
607 source/sensitive/** = intern
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
608 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
609
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
610 \subsubsection{Testing and troubleshooting}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
611
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
612 If you want to test the \hgext{acl} hook, run it with Mercurial's
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
613 debugging output enabled. Since you'll probably be running it on a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
614 server where it's not convenient (or sometimes possible) to pass in
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
615 the \hggopt{--debug} option, don't forget that you can enable
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
616 debugging output in your \hgrc:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
617 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
618 [ui]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
619 debug = true
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
620 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
621 With this enabled, the \hgext{acl} hook will print enough information
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
622 to let you figure out why it is allowing or forbidding pushes from
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
623 specific users.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
624
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
625 \subsection{\hgext{bugzilla}---integration with Bugzilla}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
626
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
627 The \hgext{bugzilla} extension adds a comment to a Bugzilla bug
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
628 whenever it finds a reference to that bug ID in a commit comment. You
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
629 can install this hook on a shared server, so that any time a remote
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
630 user pushes changes to this server, the hook gets run.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
631
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
632 It adds a comment to the bug that looks like this (you can configure
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
633 the contents of the comment---see below):
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
634 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
635 Changeset aad8b264143a, made by Joe User <joe.user@domain.com> in
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
636 the frobnitz repository, refers to this bug.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
637
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
638 For complete details, see
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
639 http://hg.domain.com/frobnitz?cmd=changeset;node=aad8b264143a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
640
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
641 Changeset description:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
642 Fix bug 10483 by guarding against some NULL pointers
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
643 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
644 The value of this hook is that it automates the process of updating a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
645 bug any time a changeset refers to it. If you configure the hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
646 properly, it makes it easy for people to browse straight from a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
647 Bugzilla bug to a changeset that refers to that bug.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
648
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
649 You can use the code in this hook as a starting point for some more
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
650 exotic Bugzilla integration recipes. Here are a few possibilities:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
651 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
652 \item Require that every changeset pushed to the server have a valid
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
653 bug~ID in its commit comment. In this case, you'd want to configure
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
654 the hook as a \hook{pretxncommit} hook. This would allow the hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
655 to reject changes that didn't contain bug IDs.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
656 \item Allow incoming changesets to automatically modify the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
657 \emph{state} of a bug, as well as simply adding a comment. For
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
658 example, the hook could recognise the string ``fixed bug 31337'' as
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
659 indicating that it should update the state of bug 31337 to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
660 ``requires testing''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
661 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
662
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
663 \subsubsection{Configuring the \hook{bugzilla} hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
664 \label{sec:hook:bugzilla:config}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
665
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
666 You should configure this hook in your server's \hgrc\ as an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
667 \hook{incoming} hook, for example as follows:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
668 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
669 [hooks]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
670 incoming.bugzilla = python:hgext.bugzilla.hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
671 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
672
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
673 Because of the specialised nature of this hook, and because Bugzilla
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
674 was not written with this kind of integration in mind, configuring
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
675 this hook is a somewhat involved process.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
676
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
677 Before you begin, you must install the MySQL bindings for Python on
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
678 the host(s) where you'll be running the hook. If this is not
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
679 available as a binary package for your system, you can download it
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
680 from~\cite{web:mysql-python}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
681
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
682 Configuration information for this hook lives in the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
683 \rcsection{bugzilla} section of your \hgrc.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
684 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
685 \item[\rcitem{bugzilla}{version}] The version of Bugzilla installed on
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
686 the server. The database schema that Bugzilla uses changes
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
687 occasionally, so this hook has to know exactly which schema to use.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
688 At the moment, the only version supported is \texttt{2.16}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
689 \item[\rcitem{bugzilla}{host}] The hostname of the MySQL server that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
690 stores your Bugzilla data. The database must be configured to allow
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
691 connections from whatever host you are running the \hook{bugzilla}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
692 hook on.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
693 \item[\rcitem{bugzilla}{user}] The username with which to connect to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
694 the MySQL server. The database must be configured to allow this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
695 user to connect from whatever host you are running the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
696 \hook{bugzilla} hook on. This user must be able to access and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
697 modify Bugzilla tables. The default value of this item is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
698 \texttt{bugs}, which is the standard name of the Bugzilla user in a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
699 MySQL database.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
700 \item[\rcitem{bugzilla}{password}] The MySQL password for the user you
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
701 configured above. This is stored as plain text, so you should make
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
702 sure that unauthorised users cannot read the \hgrc\ file where you
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
703 store this information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
704 \item[\rcitem{bugzilla}{db}] The name of the Bugzilla database on the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
705 MySQL server. The default value of this item is \texttt{bugs},
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
706 which is the standard name of the MySQL database where Bugzilla
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
707 stores its data.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
708 \item[\rcitem{bugzilla}{notify}] If you want Bugzilla to send out a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
709 notification email to subscribers after this hook has added a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
710 comment to a bug, you will need this hook to run a command whenever
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
711 it updates the database. The command to run depends on where you
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
712 have installed Bugzilla, but it will typically look something like
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
713 this, if you have Bugzilla installed in
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
714 \dirname{/var/www/html/bugzilla}:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
715 \begin{codesample4}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
716 cd /var/www/html/bugzilla && ./processmail %s nobody@nowhere.com
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
717 \end{codesample4}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
718 The Bugzilla \texttt{processmail} program expects to be given a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
719 bug~ID (the hook replaces ``\texttt{\%s}'' with the bug~ID) and an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
720 email address. It also expects to be able to write to some files in
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
721 the directory that it runs in. If Bugzilla and this hook are not
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
722 installed on the same machine, you will need to find a way to run
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
723 \texttt{processmail} on the server where Bugzilla is installed.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
724 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
725
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
726 \subsubsection{Mapping committer names to Bugzilla user names}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
727
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
728 By default, the \hgext{bugzilla} hook tries to use the email address
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
729 of a changeset's committer as the Bugzilla user name with which to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
730 update a bug. If this does not suit your needs, you can map committer
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
731 email addresses to Bugzilla user names using a \rcsection{usermap}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
732 section.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
733
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
734 Each item in the \rcsection{usermap} section contains an email address
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
735 on the left, and a Bugzilla user name on the right.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
736 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
737 [usermap]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
738 jane.user@example.com = jane
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
739 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
740 You can either keep the \rcsection{usermap} data in a normal \hgrc, or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
741 tell the \hgext{bugzilla} hook to read the information from an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
742 external \filename{usermap} file. In the latter case, you can store
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
743 \filename{usermap} data by itself in (for example) a user-modifiable
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
744 repository. This makes it possible to let your users maintain their
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
745 own \rcitem{bugzilla}{usermap} entries. The main \hgrc\ file might
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
746 look like this:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
747 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
748 # regular hgrc file refers to external usermap file
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
749 [bugzilla]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
750 usermap = /home/hg/repos/userdata/bugzilla-usermap.conf
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
751 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
752 While the \filename{usermap} file that it refers to might look like
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
753 this:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
754 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
755 # bugzilla-usermap.conf - inside a hg repository
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
756 [usermap]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
757 stephanie@example.com = steph
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
758 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
759
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
760 \subsubsection{Configuring the text that gets added to a bug}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
761
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
762 You can configure the text that this hook adds as a comment; you
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
763 specify it in the form of a Mercurial template. Several \hgrc\
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
764 entries (still in the \rcsection{bugzilla} section) control this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
765 behaviour.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
766 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
767 \item[\texttt{strip}] The number of leading path elements to strip
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
768 from a repository's path name to construct a partial path for a URL.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
769 For example, if the repositories on your server live under
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
770 \dirname{/home/hg/repos}, and you have a repository whose path is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
771 \dirname{/home/hg/repos/app/tests}, then setting \texttt{strip} to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
772 \texttt{4} will give a partial path of \dirname{app/tests}. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
773 hook will make this partial path available when expanding a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
774 template, as \texttt{webroot}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
775 \item[\texttt{template}] The text of the template to use. In addition
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
776 to the usual changeset-related variables, this template can use
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
777 \texttt{hgweb} (the value of the \texttt{hgweb} configuration item
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
778 above) and \texttt{webroot} (the path constructed using
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
779 \texttt{strip} above).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
780 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
781
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
782 In addition, you can add a \rcitem{web}{baseurl} item to the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
783 \rcsection{web} section of your \hgrc. The \hgext{bugzilla} hook will
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
784 make this available when expanding a template, as the base string to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
785 use when constructing a URL that will let users browse from a Bugzilla
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
786 comment to view a changeset. Example:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
787 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
788 [web]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
789 baseurl = http://hg.domain.com/
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
790 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
791
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
792 Here is an example set of \hgext{bugzilla} hook config information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
793 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
794 [bugzilla]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
795 host = bugzilla.example.com
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
796 password = mypassword
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
797 version = 2.16
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
798 # server-side repos live in /home/hg/repos, so strip 4 leading
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
799 # separators
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
800 strip = 4
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
801 hgweb = http://hg.example.com/
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
802 usermap = /home/hg/repos/notify/bugzilla.conf
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
803 template = Changeset \{node|short\}, made by \{author\} in the \{webroot\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
804 repo, refers to this bug.\\nFor complete details, see
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
805 \{hgweb\}\{webroot\}?cmd=changeset;node=\{node|short\}\\nChangeset
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
806 description:\\n\\t\{desc|tabindent\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
807 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
808
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
809 \subsubsection{Testing and troubleshooting}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
810
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
811 The most common problems with configuring the \hgext{bugzilla} hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
812 relate to running Bugzilla's \filename{processmail} script and mapping
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
813 committer names to user names.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
814
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
815 Recall from section~\ref{sec:hook:bugzilla:config} above that the user
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
816 that runs the Mercurial process on the server is also the one that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
817 will run the \filename{processmail} script. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
818 \filename{processmail} script sometimes causes Bugzilla to write to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
819 files in its configuration directory, and Bugzilla's configuration
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
820 files are usually owned by the user that your web server runs under.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
821
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
822 You can cause \filename{processmail} to be run with the suitable
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
823 user's identity using the \command{sudo} command. Here is an example
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
824 entry for a \filename{sudoers} file.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
825 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
826 hg_user = (httpd_user) NOPASSWD: /var/www/html/bugzilla/processmail-wrapper %s
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
827 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
828 This allows the \texttt{hg\_user} user to run a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
829 \filename{processmail-wrapper} program under the identity of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
830 \texttt{httpd\_user}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
831
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
832 This indirection through a wrapper script is necessary, because
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
833 \filename{processmail} expects to be run with its current directory
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
834 set to wherever you installed Bugzilla; you can't specify that kind of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
835 constraint in a \filename{sudoers} file. The contents of the wrapper
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
836 script are simple:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
837 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
838 #!/bin/sh
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
839 cd `dirname $0` && ./processmail "$1" nobody@example.com
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
840 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
841 It doesn't seem to matter what email address you pass to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
842 \filename{processmail}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
843
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
844 If your \rcsection{usermap} is not set up correctly, users will see an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
845 error message from the \hgext{bugzilla} hook when they push changes
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
846 to the server. The error message will look like this:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
847 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
848 cannot find bugzilla user id for john.q.public@example.com
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
849 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
850 What this means is that the committer's address,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
851 \texttt{john.q.public@example.com}, is not a valid Bugzilla user name,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
852 nor does it have an entry in your \rcsection{usermap} that maps it to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
853 a valid Bugzilla user name.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
854
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
855 \subsection{\hgext{notify}---send email notifications}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
856
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
857 Although Mercurial's built-in web server provides RSS feeds of changes
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
858 in every repository, many people prefer to receive change
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
859 notifications via email. The \hgext{notify} hook lets you send out
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
860 notifications to a set of email addresses whenever changesets arrive
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
861 that those subscribers are interested in.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
862
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
863 As with the \hgext{bugzilla} hook, the \hgext{notify} hook is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
864 template-driven, so you can customise the contents of the notification
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
865 messages that it sends.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
866
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
867 By default, the \hgext{notify} hook includes a diff of every changeset
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
868 that it sends out; you can limit the size of the diff, or turn this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
869 feature off entirely. It is useful for letting subscribers review
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
870 changes immediately, rather than clicking to follow a URL.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
871
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
872 \subsubsection{Configuring the \hgext{notify} hook}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
873
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
874 You can set up the \hgext{notify} hook to send one email message per
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
875 incoming changeset, or one per incoming group of changesets (all those
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
876 that arrived in a single pull or push).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
877 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
878 [hooks]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
879 # send one email per group of changes
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
880 changegroup.notify = python:hgext.notify.hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
881 # send one email per change
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
882 incoming.notify = python:hgext.notify.hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
883 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
884
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
885 Configuration information for this hook lives in the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
886 \rcsection{notify} section of a \hgrc\ file.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
887 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
888 \item[\rcitem{notify}{test}] By default, this hook does not send out
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
889 email at all; instead, it prints the message that it \emph{would}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
890 send. Set this item to \texttt{false} to allow email to be sent.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
891 The reason that sending of email is turned off by default is that it
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
892 takes several tries to configure this extension exactly as you would
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
893 like, and it would be bad form to spam subscribers with a number of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
894 ``broken'' notifications while you debug your configuration.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
895 \item[\rcitem{notify}{config}] The path to a configuration file that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
896 contains subscription information. This is kept separate from the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
897 main \hgrc\ so that you can maintain it in a repository of its own.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
898 People can then clone that repository, update their subscriptions,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
899 and push the changes back to your server.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
900 \item[\rcitem{notify}{strip}] The number of leading path separator
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
901 characters to strip from a repository's path, when deciding whether
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
902 a repository has subscribers. For example, if the repositories on
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
903 your server live in \dirname{/home/hg/repos}, and \hgext{notify} is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
904 considering a repository named \dirname{/home/hg/repos/shared/test},
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
905 setting \rcitem{notify}{strip} to \texttt{4} will cause
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
906 \hgext{notify} to trim the path it considers down to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
907 \dirname{shared/test}, and it will match subscribers against that.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
908 \item[\rcitem{notify}{template}] The template text to use when sending
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
909 messages. This specifies both the contents of the message header
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
910 and its body.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
911 \item[\rcitem{notify}{maxdiff}] The maximum number of lines of diff
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
912 data to append to the end of a message. If a diff is longer than
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
913 this, it is truncated. By default, this is set to 300. Set this to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
914 \texttt{0} to omit diffs from notification emails.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
915 \item[\rcitem{notify}{sources}] A list of sources of changesets to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
916 consider. This lets you limit \hgext{notify} to only sending out
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
917 email about changes that remote users pushed into this repository
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
918 via a server, for example. See section~\ref{sec:hook:sources} for
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
919 the sources you can specify here.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
920 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
921
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
922 If you set the \rcitem{web}{baseurl} item in the \rcsection{web}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
923 section, you can use it in a template; it will be available as
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
924 \texttt{webroot}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
925
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
926 Here is an example set of \hgext{notify} configuration information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
927 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
928 [notify]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
929 # really send email
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
930 test = false
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
931 # subscriber data lives in the notify repo
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
932 config = /home/hg/repos/notify/notify.conf
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
933 # repos live in /home/hg/repos on server, so strip 4 "/" chars
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
934 strip = 4
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
935 template = X-Hg-Repo: \{webroot\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
936 Subject: \{webroot\}: \{desc|firstline|strip\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
937 From: \{author\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
938
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
939 changeset \{node|short\} in \{root\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
940 details: \{baseurl\}\{webroot\}?cmd=changeset;node=\{node|short\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
941 description:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
942 \{desc|tabindent|strip\}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
943
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
944 [web]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
945 baseurl = http://hg.example.com/
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
946 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
947
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
948 This will produce a message that looks like the following:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
949 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
950 X-Hg-Repo: tests/slave
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
951 Subject: tests/slave: Handle error case when slave has no buffers
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
952 Date: Wed, 2 Aug 2006 15:25:46 -0700 (PDT)
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
953
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
954 changeset 3cba9bfe74b5 in /home/hg/repos/tests/slave
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
955 details: http://hg.example.com/tests/slave?cmd=changeset;node=3cba9bfe74b5
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
956 description:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
957 Handle error case when slave has no buffers
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
958 diffs (54 lines):
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
959
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
960 diff -r 9d95df7cf2ad -r 3cba9bfe74b5 include/tests.h
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
961 --- a/include/tests.h Wed Aug 02 15:19:52 2006 -0700
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
962 +++ b/include/tests.h Wed Aug 02 15:25:26 2006 -0700
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
963 @@ -212,6 +212,15 @@ static __inline__ void test_headers(void *h)
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
964 [...snip...]
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
965 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
966
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
967 \subsubsection{Testing and troubleshooting}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
968
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
969 Do not forget that by default, the \hgext{notify} extension \emph{will
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
970 not send any mail} until you explicitly configure it to do so, by
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
971 setting \rcitem{notify}{test} to \texttt{false}. Until you do that,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
972 it simply prints the message it \emph{would} send.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
973
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
974 \section{Information for writers of hooks}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
975 \label{sec:hook:ref}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
976
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
977 \subsection{In-process hook execution}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
978
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
979 An in-process hook is called with arguments of the following form:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
980 \begin{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
981 def myhook(ui, repo, **kwargs):
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
982 pass
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
983 \end{codesample2}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
984 The \texttt{ui} parameter is a \pymodclass{mercurial.ui}{ui} object.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
985 The \texttt{repo} parameter is a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
986 \pymodclass{mercurial.localrepo}{localrepository} object. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
987 names and values of the \texttt{**kwargs} parameters depend on the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
988 hook being invoked, with the following common features:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
989 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
990 \item If a parameter is named \texttt{node} or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
991 \texttt{parent\emph{N}}, it will contain a hexadecimal changeset ID.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
992 The empty string is used to represent ``null changeset ID'' instead
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
993 of a string of zeroes.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
994 \item If a parameter is named \texttt{url}, it will contain the URL of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
995 a remote repository, if that can be determined.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
996 \item Boolean-valued parameters are represented as Python
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
997 \texttt{bool} objects.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
998 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
999
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1000 An in-process hook is called without a change to the process's working
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1001 directory (unlike external hooks, which are run in the root of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1002 repository). It must not change the process's working directory, or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1003 it will cause any calls it makes into the Mercurial API to fail.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1004
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1005 If a hook returns a boolean ``false'' value, it is considered to have
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1006 succeeded. If it returns a boolean ``true'' value or raises an
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1007 exception, it is considered to have failed. A useful way to think of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1008 the calling convention is ``tell me if you fail''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1009
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1010 Note that changeset IDs are passed into Python hooks as hexadecimal
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1011 strings, not the binary hashes that Mercurial's APIs normally use. To
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1012 convert a hash from hex to binary, use the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1013 \pymodfunc{mercurial.node}{bin} function.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1014
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1015 \subsection{External hook execution}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1016
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1017 An external hook is passed to the shell of the user running Mercurial.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1018 Features of that shell, such as variable substitution and command
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1019 redirection, are available. The hook is run in the root directory of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1020 the repository (unlike in-process hooks, which are run in the same
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1021 directory that Mercurial was run in).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1022
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1023 Hook parameters are passed to the hook as environment variables. Each
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1024 environment variable's name is converted in upper case and prefixed
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1025 with the string ``\texttt{HG\_}''. For example, if the name of a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1026 parameter is ``\texttt{node}'', the name of the environment variable
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1027 representing that parameter will be ``\texttt{HG\_NODE}''.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1028
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1029 A boolean parameter is represented as the string ``\texttt{1}'' for
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1030 ``true'', ``\texttt{0}'' for ``false''. If an environment variable is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1031 named \envar{HG\_NODE}, \envar{HG\_PARENT1} or \envar{HG\_PARENT2}, it
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1032 contains a changeset ID represented as a hexadecimal string. The
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1033 empty string is used to represent ``null changeset ID'' instead of a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1034 string of zeroes. If an environment variable is named
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1035 \envar{HG\_URL}, it will contain the URL of a remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1036 that can be determined.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1037
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1038 If a hook exits with a status of zero, it is considered to have
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1039 succeeded. If it exits with a non-zero status, it is considered to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1040 have failed.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1041
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1042 \subsection{Finding out where changesets come from}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1043
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1044 A hook that involves the transfer of changesets between a local
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1045 repository and another may be able to find out information about the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1046 ``far side''. Mercurial knows \emph{how} changes are being
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1047 transferred, and in many cases \emph{where} they are being transferred
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1048 to or from.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1049
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1050 \subsubsection{Sources of changesets}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1051 \label{sec:hook:sources}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1052
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1053 Mercurial will tell a hook what means are, or were, used to transfer
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1054 changesets between repositories. This is provided by Mercurial in a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1055 Python parameter named \texttt{source}, or an environment variable named
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1056 \envar{HG\_SOURCE}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1057
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1058 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1059 \item[\texttt{serve}] Changesets are transferred to or from a remote
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1060 repository over http or ssh.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1061 \item[\texttt{pull}] Changesets are being transferred via a pull from
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1062 one repository into another.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1063 \item[\texttt{push}] Changesets are being transferred via a push from
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1064 one repository into another.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1065 \item[\texttt{bundle}] Changesets are being transferred to or from a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1066 bundle.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1067 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1068
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1069 \subsubsection{Where changes are going---remote repository URLs}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1070 \label{sec:hook:url}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1071
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1072 When possible, Mercurial will tell a hook the location of the ``far
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1073 side'' of an activity that transfers changeset data between
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1074 repositories. This is provided by Mercurial in a Python parameter
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1075 named \texttt{url}, or an environment variable named \envar{HG\_URL}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1076
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1077 This information is not always known. If a hook is invoked in a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1078 repository that is being served via http or ssh, Mercurial cannot tell
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1079 where the remote repository is, but it may know where the client is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1080 connecting from. In such cases, the URL will take one of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1081 following forms:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1082 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1083 \item \texttt{remote:ssh:\emph{ip-address}}---remote ssh client, at
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1084 the given IP address.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1085 \item \texttt{remote:http:\emph{ip-address}}---remote http client, at
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1086 the given IP address. If the client is using SSL, this will be of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1087 the form \texttt{remote:https:\emph{ip-address}}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1088 \item Empty---no information could be discovered about the remote
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1089 client.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1090 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1091
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1092 \section{Hook reference}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1093
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1094 \subsection{\hook{changegroup}---after remote changesets added}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1095 \label{sec:hook:changegroup}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1096
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1097 This hook is run after a group of pre-existing changesets has been
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1098 added to the repository, for example via a \hgcmd{pull} or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1099 \hgcmd{unbundle}. This hook is run once per operation that added one
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1100 or more changesets. This is in contrast to the \hook{incoming} hook,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1101 which is run once per changeset, regardless of whether the changesets
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1102 arrive in a group.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1103
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1104 Some possible uses for this hook include kicking off an automated
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1105 build or test of the added changesets, updating a bug database, or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1106 notifying subscribers that a repository contains new changes.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1107
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1108 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1109 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1110 \item[\texttt{node}] A changeset ID. The changeset ID of the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1111 changeset in the group that was added. All changesets between this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1112 and \index{tags!\texttt{tip}}\texttt{tip}, inclusive, were added by
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1113 a single \hgcmd{pull}, \hgcmd{push} or \hgcmd{unbundle}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1114 \item[\texttt{source}] A string. The source of these changes. See
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1115 section~\ref{sec:hook:sources} for details.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1116 \item[\texttt{url}] A URL. The location of the remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1117 known. See section~\ref{sec:hook:url} for more information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1118 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1119
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1120 See also: \hook{incoming} (section~\ref{sec:hook:incoming}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1121 \hook{prechangegroup} (section~\ref{sec:hook:prechangegroup}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1122 \hook{pretxnchangegroup} (section~\ref{sec:hook:pretxnchangegroup})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1123
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1124 \subsection{\hook{commit}---after a new changeset is created}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1125 \label{sec:hook:commit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1126
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1127 This hook is run after a new changeset has been created.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1128
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1129 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1130 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1131 \item[\texttt{node}] A changeset ID. The changeset ID of the newly
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1132 committed changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1133 \item[\texttt{parent1}] A changeset ID. The changeset ID of the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1134 parent of the newly committed changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1135 \item[\texttt{parent2}] A changeset ID. The changeset ID of the second
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1136 parent of the newly committed changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1137 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1138
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1139 See also: \hook{precommit} (section~\ref{sec:hook:precommit}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1140 \hook{pretxncommit} (section~\ref{sec:hook:pretxncommit})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1141
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1142 \subsection{\hook{incoming}---after one remote changeset is added}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1143 \label{sec:hook:incoming}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1144
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1145 This hook is run after a pre-existing changeset has been added to the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1146 repository, for example via a \hgcmd{push}. If a group of changesets
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1147 was added in a single operation, this hook is called once for each
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1148 added changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1149
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1150 You can use this hook for the same purposes as the \hook{changegroup}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1151 hook (section~\ref{sec:hook:changegroup}); it's simply more convenient
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1152 sometimes to run a hook once per group of changesets, while other
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1153 times it's handier once per changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1154
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1155 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1156 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1157 \item[\texttt{node}] A changeset ID. The ID of the newly added
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1158 changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1159 \item[\texttt{source}] A string. The source of these changes. See
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1160 section~\ref{sec:hook:sources} for details.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1161 \item[\texttt{url}] A URL. The location of the remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1162 known. See section~\ref{sec:hook:url} for more information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1163 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1164
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1165 See also: \hook{changegroup} (section~\ref{sec:hook:changegroup}) \hook{prechangegroup} (section~\ref{sec:hook:prechangegroup}), \hook{pretxnchangegroup} (section~\ref{sec:hook:pretxnchangegroup})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1166
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1167 \subsection{\hook{outgoing}---after changesets are propagated}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1168 \label{sec:hook:outgoing}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1169
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1170 This hook is run after a group of changesets has been propagated out
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1171 of this repository, for example by a \hgcmd{push} or \hgcmd{bundle}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1172 command.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1173
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1174 One possible use for this hook is to notify administrators that
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1175 changes have been pulled.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1176
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1177 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1178 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1179 \item[\texttt{node}] A changeset ID. The changeset ID of the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1180 changeset of the group that was sent.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1181 \item[\texttt{source}] A string. The source of the of the operation
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1182 (see section~\ref{sec:hook:sources}). If a remote client pulled
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1183 changes from this repository, \texttt{source} will be
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1184 \texttt{serve}. If the client that obtained changes from this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1185 repository was local, \texttt{source} will be \texttt{bundle},
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1186 \texttt{pull}, or \texttt{push}, depending on the operation the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1187 client performed.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1188 \item[\texttt{url}] A URL. The location of the remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1189 known. See section~\ref{sec:hook:url} for more information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1190 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1191
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1192 See also: \hook{preoutgoing} (section~\ref{sec:hook:preoutgoing})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1193
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1194 \subsection{\hook{prechangegroup}---before starting to add remote changesets}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1195 \label{sec:hook:prechangegroup}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1196
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1197 This controlling hook is run before Mercurial begins to add a group of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1198 changesets from another repository.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1199
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1200 This hook does not have any information about the changesets to be
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1201 added, because it is run before transmission of those changesets is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1202 allowed to begin. If this hook fails, the changesets will not be
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1203 transmitted.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1204
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1205 One use for this hook is to prevent external changes from being added
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1206 to a repository. For example, you could use this to ``freeze'' a
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1207 server-hosted branch temporarily or permanently so that users cannot
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1208 push to it, while still allowing a local administrator to modify the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1209 repository.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1210
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1211 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1212 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1213 \item[\texttt{source}] A string. The source of these changes. See
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1214 section~\ref{sec:hook:sources} for details.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1215 \item[\texttt{url}] A URL. The location of the remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1216 known. See section~\ref{sec:hook:url} for more information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1217 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1218
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1219 See also: \hook{changegroup} (section~\ref{sec:hook:changegroup}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1220 \hook{incoming} (section~\ref{sec:hook:incoming}), ,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1221 \hook{pretxnchangegroup} (section~\ref{sec:hook:pretxnchangegroup})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1222
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1223 \subsection{\hook{precommit}---before starting to commit a changeset}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1224 \label{sec:hook:precommit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1225
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1226 This hook is run before Mercurial begins to commit a new changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1227 It is run before Mercurial has any of the metadata for the commit,
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1228 such as the files to be committed, the commit message, or the commit
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1229 date.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1230
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1231 One use for this hook is to disable the ability to commit new
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1232 changesets, while still allowing incoming changesets. Another is to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1233 run a build or test, and only allow the commit to begin if the build
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1234 or test succeeds.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1235
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1236 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1237 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1238 \item[\texttt{parent1}] A changeset ID. The changeset ID of the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1239 parent of the working directory.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1240 \item[\texttt{parent2}] A changeset ID. The changeset ID of the second
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1241 parent of the working directory.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1242 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1243 If the commit proceeds, the parents of the working directory will
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1244 become the parents of the new changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1245
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1246 See also: \hook{commit} (section~\ref{sec:hook:commit}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1247 \hook{pretxncommit} (section~\ref{sec:hook:pretxncommit})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1248
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1249 \subsection{\hook{preoutgoing}---before starting to propagate changesets}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1250 \label{sec:hook:preoutgoing}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1251
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1252 This hook is invoked before Mercurial knows the identities of the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1253 changesets to be transmitted.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1254
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1255 One use for this hook is to prevent changes from being transmitted to
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1256 another repository.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1257
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1258 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1259 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1260 \item[\texttt{source}] A string. The source of the operation that is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1261 attempting to obtain changes from this repository (see
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1262 section~\ref{sec:hook:sources}). See the documentation for the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1263 \texttt{source} parameter to the \hook{outgoing} hook, in
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1264 section~\ref{sec:hook:outgoing}, for possible values of this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1265 parameter.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1266 \item[\texttt{url}] A URL. The location of the remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1267 known. See section~\ref{sec:hook:url} for more information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1268 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1269
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1270 See also: \hook{outgoing} (section~\ref{sec:hook:outgoing})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1271
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1272 \subsection{\hook{pretag}---before tagging a changeset}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1273 \label{sec:hook:pretag}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1274
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1275 This controlling hook is run before a tag is created. If the hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1276 succeeds, creation of the tag proceeds. If the hook fails, the tag is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1277 not created.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1278
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1279 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1280 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1281 \item[\texttt{local}] A boolean. Whether the tag is local to this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1282 repository instance (i.e.~stored in \sfilename{.hg/localtags}) or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1283 managed by Mercurial (stored in \sfilename{.hgtags}).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1284 \item[\texttt{node}] A changeset ID. The ID of the changeset to be tagged.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1285 \item[\texttt{tag}] A string. The name of the tag to be created.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1286 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1287
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1288 If the tag to be created is revision-controlled, the \hook{precommit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1289 and \hook{pretxncommit} hooks (sections~\ref{sec:hook:commit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1290 and~\ref{sec:hook:pretxncommit}) will also be run.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1291
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1292 See also: \hook{tag} (section~\ref{sec:hook:tag})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1293
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1294 \subsection{\hook{pretxnchangegroup}---before completing addition of
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1295 remote changesets}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1296 \label{sec:hook:pretxnchangegroup}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1297
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1298 This controlling hook is run before a transaction---that manages the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1299 addition of a group of new changesets from outside the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1300 repository---completes. If the hook succeeds, the transaction
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1301 completes, and all of the changesets become permanent within this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1302 repository. If the hook fails, the transaction is rolled back, and
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1303 the data for the changesets is erased.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1304
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1305 This hook can access the metadata associated with the almost-added
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1306 changesets, but it should not do anything permanent with this data.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1307 It must also not modify the working directory.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1308
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1309 While this hook is running, if other Mercurial processes access this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1310 repository, they will be able to see the almost-added changesets as if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1311 they are permanent. This may lead to race conditions if you do not
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1312 take steps to avoid them.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1313
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1314 This hook can be used to automatically vet a group of changesets. If
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1315 the hook fails, all of the changesets are ``rejected'' when the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1316 transaction rolls back.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1317
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1318 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1319 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1320 \item[\texttt{node}] A changeset ID. The changeset ID of the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1321 changeset in the group that was added. All changesets between this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1322 and \index{tags!\texttt{tip}}\texttt{tip}, inclusive, were added by
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1323 a single \hgcmd{pull}, \hgcmd{push} or \hgcmd{unbundle}.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1324 \item[\texttt{source}] A string. The source of these changes. See
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1325 section~\ref{sec:hook:sources} for details.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1326 \item[\texttt{url}] A URL. The location of the remote repository, if
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1327 known. See section~\ref{sec:hook:url} for more information.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1328 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1329
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1330 See also: \hook{changegroup} (section~\ref{sec:hook:changegroup}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1331 \hook{incoming} (section~\ref{sec:hook:incoming}),
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1332 \hook{prechangegroup} (section~\ref{sec:hook:prechangegroup})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1333
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1334 \subsection{\hook{pretxncommit}---before completing commit of new changeset}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1335 \label{sec:hook:pretxncommit}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1336
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1337 This controlling hook is run before a transaction---that manages a new
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1338 commit---completes. If the hook succeeds, the transaction completes
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1339 and the changeset becomes permanent within this repository. If the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1340 hook fails, the transaction is rolled back, and the commit data is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1341 erased.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1342
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1343 This hook can access the metadata associated with the almost-new
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1344 changeset, but it should not do anything permanent with this data. It
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1345 must also not modify the working directory.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1346
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1347 While this hook is running, if other Mercurial processes access this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1348 repository, they will be able to see the almost-new changeset as if it
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1349 is permanent. This may lead to race conditions if you do not take
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1350 steps to avoid them.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1351
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1352 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1353 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1354 \item[\texttt{node}] A changeset ID. The changeset ID of the newly
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1355 committed changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1356 \item[\texttt{parent1}] A changeset ID. The changeset ID of the first
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1357 parent of the newly committed changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1358 \item[\texttt{parent2}] A changeset ID. The changeset ID of the second
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1359 parent of the newly committed changeset.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1360 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1361
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1362 See also: \hook{precommit} (section~\ref{sec:hook:precommit})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1363
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1364 \subsection{\hook{preupdate}---before updating or merging working directory}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1365 \label{sec:hook:preupdate}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1366
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1367 This controlling hook is run before an update or merge of the working
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1368 directory begins. It is run only if Mercurial's normal pre-update
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1369 checks determine that the update or merge can proceed. If the hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1370 succeeds, the update or merge may proceed; if it fails, the update or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1371 merge does not start.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1372
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1373 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1374 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1375 \item[\texttt{parent1}] A changeset ID. The ID of the parent that the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1376 working directory is to be updated to. If the working directory is
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1377 being merged, it will not change this parent.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1378 \item[\texttt{parent2}] A changeset ID. Only set if the working
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1379 directory is being merged. The ID of the revision that the working
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1380 directory is being merged with.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1381 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1382
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1383 See also: \hook{update} (section~\ref{sec:hook:update})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1384
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1385 \subsection{\hook{tag}---after tagging a changeset}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1386 \label{sec:hook:tag}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1387
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1388 This hook is run after a tag has been created.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1389
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1390 Parameters to this hook:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1391 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1392 \item[\texttt{local}] A boolean. Whether the new tag is local to this
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1393 repository instance (i.e.~stored in \sfilename{.hg/localtags}) or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1394 managed by Mercurial (stored in \sfilename{.hgtags}).
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1395 \item[\texttt{node}] A changeset ID. The ID of the changeset that was
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1396 tagged.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1397 \item[\texttt{tag}] A string. The name of the tag that was created.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1398 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1399
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1400 If the created tag is revision-controlled, the \hook{commit} hook
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1401 (section~\ref{sec:hook:commit}) is run before this hook.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1402
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1403 See also: \hook{pretag} (section~\ref{sec:hook:pretag})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1404
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1405 \subsection{\hook{update}---after updating or merging working directory}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1406 \label{sec:hook:update}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1407
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1408 This hook is run after an update or merge of the working directory
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1409 completes. Since a merge can fail (if the external \command{hgmerge}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1410 command fails to resolve conflicts in a file), this hook communicates
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1411 whether the update or merge completed cleanly.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1412
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1413 \begin{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1414 \item[\texttt{error}] A boolean. Indicates whether the update or
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1415 merge completed successfully.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1416 \item[\texttt{parent1}] A changeset ID. The ID of the parent that the
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1417 working directory was updated to. If the working directory was
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1418 merged, it will not have changed this parent.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1419 \item[\texttt{parent2}] A changeset ID. Only set if the working
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1420 directory was merged. The ID of the revision that the working
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1421 directory was merged with.
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1422 \end{itemize}
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1423
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1424 See also: \hook{preupdate} (section~\ref{sec:hook:preupdate})
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1425
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1426 %%% Local Variables:
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1427 %%% mode: latex
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1428 %%% TeX-master: "00book"
7e52f0cc4516 changed es/hgext.tex
jerojasro@localhost
parents: 432
diff changeset
1429 %%% End: