diff options
| author | Tom Tromey | 2013-06-13 11:29:06 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-06-13 11:29:06 -0600 |
| commit | 5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da (patch) | |
| tree | af9b79246f0b18d748c3e1c33b1bb1b33cf1fbe0 /admin | |
| parent | 313dfb6277b3e1ef28c7bb76e776f10168e3f0a3 (diff) | |
| parent | 94fa6ec7b306b47c251f7b8b67662598027a7ff3 (diff) | |
| download | emacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.tar.gz emacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.zip | |
merge from trunk
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 7 | ||||
| -rw-r--r-- | admin/admin.el | 2 | ||||
| -rw-r--r-- | admin/notes/bzr | 45 |
3 files changed, 51 insertions, 3 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index ac6031fa205..8fdfe3965b1 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,9 +1,12 @@ | |||
| 1 | 2013-06-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * admin.el (manual-style-string): Use new file manual.css. | ||
| 4 | |||
| 1 | 2013-06-02 Eric Ludlam <zappo@gnu.org> | 5 | 2013-06-02 Eric Ludlam <zappo@gnu.org> |
| 2 | 6 | ||
| 3 | * grammars/srecode-template.wy (variable): Accept a single number | 7 | * grammars/srecode-template.wy (variable): Accept a single number |
| 4 | as a variable value. Allows the 'priority' to be set to a number. | 8 | as a variable value. Allows the 'priority' to be set to a number. |
| 5 | (wisent-srecode-template-lexer): Move number up so it can be | 9 | (wisent-srecode-template-lexer): Move number up so it can be created. |
| 6 | created. | ||
| 7 | 10 | ||
| 8 | 2013-05-16 Glenn Morris <rgm@gnu.org> | 11 | 2013-05-16 Glenn Morris <rgm@gnu.org> |
| 9 | 12 | ||
diff --git a/admin/admin.el b/admin/admin.el index cb7eaead27f..8366207f5b0 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -271,7 +271,7 @@ Root must be the root of an Emacs source tree." | |||
| 271 | <meta name=\"DC.title\" content=\"gnu.org\">\n\n") | 271 | <meta name=\"DC.title\" content=\"gnu.org\">\n\n") |
| 272 | 272 | ||
| 273 | (defconst manual-style-string "<style type=\"text/css\"> | 273 | (defconst manual-style-string "<style type=\"text/css\"> |
| 274 | @import url('/style.css');\n</style>\n") | 274 | @import url('/s/emacs/manual.css');\n</style>\n") |
| 275 | 275 | ||
| 276 | (defun manual-misc-html (name root html-node-dir html-mono-dir) | 276 | (defun manual-misc-html (name root html-node-dir html-mono-dir) |
| 277 | (let ((texi (expand-file-name (format "doc/misc/%s.texi" name) root))) | 277 | (let ((texi (expand-file-name (format "doc/misc/%s.texi" name) root))) |
diff --git a/admin/notes/bzr b/admin/notes/bzr index f35ff95f9d6..8f7d0d94fa8 100644 --- a/admin/notes/bzr +++ b/admin/notes/bzr | |||
| @@ -316,3 +316,48 @@ When finished, use | |||
| 316 | bzr bisect reset | 316 | bzr bisect reset |
| 317 | 317 | ||
| 318 | or simply delete the entire branch if you created it just for this. | 318 | or simply delete the entire branch if you created it just for this. |
| 319 | |||
| 320 | * Commit emails | ||
| 321 | |||
| 322 | ** Old method: bzr-hookless-email | ||
| 323 | https://launchpad.net/bzr-hookless-email | ||
| 324 | |||
| 325 | Runs hourly via cron. Must ask Savannah admins to enable/disable it | ||
| 326 | for each branch. Stores the last revision that it mailed as | ||
| 327 | last_revision_mailed in branch.conf on the server. Breaks with bzr 2.6: | ||
| 328 | |||
| 329 | http://lists.gnu.org/archive/html/savannah-hackers-public/2013-05/msg00000.html | ||
| 330 | |||
| 331 | Fix from https://bugs.launchpad.net/bzr-hookless-email/+bug/988195 | ||
| 332 | only partially works. Breaks again on every merge commit: | ||
| 333 | |||
| 334 | https://lists.ubuntu.com/archives/bazaar/2013q2/075520.html | ||
| 335 | http://lists.gnu.org/archive/html/savannah-hackers-public/2013-05/msg00024.html | ||
| 336 | |||
| 337 | You can force it to skip the merge commit by changing the value for | ||
| 338 | last_revision_mailed, eg: | ||
| 339 | |||
| 340 | bzr config last_revision_mailed=xfq.free@gmail.com-20130603233720-u1aumaxvf3o0rlai -d bzr+ssh://USERNAME@bzr.savannah.gnu.org/emacs/trunk/ | ||
| 341 | |||
| 342 | ** New method: bzr-email plugin | ||
| 343 | https://launchpad.net/bzr-email | ||
| 344 | http://lists.gnu.org/archive/html/savannah-hackers-public/2013-06/msg00007.html | ||
| 345 | |||
| 346 | Runs on commit. Projects can enable it themselves by using `bzr | ||
| 347 | config' to set post_commit_to option for a branch. See `bzr help email' | ||
| 348 | (if you have the plugin installed) for other options. | ||
| 349 | |||
| 350 | Note: if you have the bzr-email plugin installed locally, then when | ||
| 351 | you commit to the Emacs repository it will also try to send a commit | ||
| 352 | email from your local machine. If your machine is not configured to | ||
| 353 | send external mail, this will just fail. In any case, you may prefer | ||
| 354 | to either remove the plugin from your machine, or disable it for Emacs | ||
| 355 | branches. You can do this either by editing branch.conf in your Emacs | ||
| 356 | branches, to override the server setting (untested; not sure this | ||
| 357 | works), or by adding an entry to ~/.bazaar/locations.conf: | ||
| 358 | |||
| 359 | [bzr+ssh://USERNAME@bzr.savannah.gnu.org/emacs/*/] | ||
| 360 | post_commit_to = "" | ||
| 361 | |||
| 362 | You have to use locations.conf rather than bazaar.conf because the | ||
| 363 | latter has a lower priority than branch.conf. | ||