--- a/hg.rst Tue Nov 09 18:02:57 2010 +0200
+++ b/hg.rst Wed Nov 10 00:18:58 2010 +0200
@@ -1,6 +1,11 @@
-*- mode: outline; coding: utf-8 -*-
-* Useful customization.
+* About.
+
+ http://mercurial.selenic.com/wiki/ProjectsUsingMercurial
+ Some Projects that Use Mercurial
+
+* User config.
Put to your ~/.hgrc:
@@ -50,6 +55,114 @@
[defaults]
log = -f
+* Publishing repo.
+
+With static HTTP hosting you can copy via rsync, ftp, scp, etc., so long as all the files beneath
+.hg are copied. Also since 1.1 pull protocol can detect static HTTP hosting:
+
+ $ hg clone http://example.com/project
+
+ http://mercurial.selenic.com/wiki/hgserve
+ http://mercurial.selenic.com/wiki/HgWebDirStepByStep
+ http://mercurial.selenic.com/wiki/StaticHTTP
+
+** hgweb.config.
+
+Set allowed project by specifying paths to they (keys are URL, values are fs paths):
+
+ [paths]
+ myproject = /home/user/hg/myproject
+ otherproject = /home/user/hg/otherproject
+
+You can use single wildcard '*' to search current subdirs or double wildcard '**' to search subdirs
+recursively:
+
+ [paths]
+ myproject = /home/user/hg/my/*
+ otherproject = /home/user/hg/other/**
+
+Alternatively you can set a collection of repos (keys and values are both filesystem paths, keys
+should be prefixes of the values and are "subtracted" from the values in order to generate the URL
+paths to each repository):
+
+ [collections]
+ /home/user/hg = /home/user/hg
+ /home/another/hg = /home/another/hg
+
+Allow archive downloads:
+
+ [web]
+ allow_archive = gz, zip, bz2
+
+Make web page look nice:
+
+ [web]
+ # Use 'cd /lib/python2.x/site-packages/mercurial/templates; find . -type d' to see available
+ # styles. Some interesting: gitweb, coal, monoblue.
+ style = gitweb
+
+Set another settings:
+
+ [web]
+ encoding = UTF-8
+
+ maxchanges = 100
+ maxfiles = 100
+
+In each $proj/.hg/hgrc put:
+
+ [web]
+ contact = ADMIN <admin@example.com>
+ description = <p style="color: red;">$proj</b> allow make a <a href="http://example.com">BIG Thing.</a>
+ # Do not use name, in this case you see dir name where project lcated.
+ # name = $proj
+
+To allow push in 'hg serv':
+
+ [web]
+ allow_push = *
+ push_ssl = false
+
+ http://mercurial.selenic.com/wiki/PublishingRepositories
+ Publishing Mercurial Repositories
+
+** init.d script.
+
+ #!/bin/sh
+ CMD=/usr/bin/hg
+
+ PORT=7878
+ SRC=/srv/hg
+ CONGIG=/srv/hg/hgweb.config
+ PIDFILE=/var/run/hg.pid
+
+ case "$1" in
+ start)
+ echo "Mecurial Server service starting."
+ (cd "$SRC"; $CMD serve -d -p $PORT --pid-file "$PIDFILE")
+ ;;
+ stop)
+ if [ -f "$PIDFILE" ]; then
+ PID=`cat "$PIDFILE"`
+ if [ "$PID" -gt 1 ]; then
+ kill -TERM $PID
+ echo "Stopping the Mercurial service PID=$PID."
+ else
+ echo Bad PID for Mercurial -- \"$PID\".
+ echo You may remove \"$PIDFILE\" manually.
+ fi
+ else
+ echo No PID file recorded for mercurial.
+ fi
+ ;;
+ *)
+ echo "$0 {start|stop}"
+ exit 1
+ ;;
+ esac
+
+ http://mercurial.selenic.com/wiki/hgserve
+
* Manage patches with MQ.
First enable MQ, add following to your ~/.hgrc:
@@ -132,3 +245,8 @@
$ hg clone --config http_proxy.host=$host:$port \
--config http_proxy.user=$user --config http_proxy.passwd=$password $addr
+
+* Free Mercurial hosting.
+
+ http://mercurial.selenic.com/wiki/MercurialHosting
+ Free Hosting of Mercurial Repositories