Size: 1757
Comment:
|
Size: 3199
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 19: | Line 19: |
Extract c:\wamp\mercurial\library.zip to C:\wamp\mercurial\lib | '''1.''' Install WAMP if not already installed. * Your installation directory will be referred to as ```<WAMPPath>``` |
Line 21: | Line 22: |
Create 'hg' dir in c:\wamp\www | '''2.''' Install Python 2.5 if not installed. * Your installation directory will be referred to as ```<PythonPath>``` |
Line 23: | Line 25: |
Download [http://svn.aminus.net/misc/modpython_gateway.py modpython_gateway.py] and install to <Python Path>Lib\site-packages | '''3.''' Install mod_python. * When installing mod_python you will be asked for your Apache directory. This will depend on the version of apache you are using, in 2.0c it is 2.2.8 so in this example it is: ```<WAMPPath>\bin\apache\apache2.2.8```[[BR]][[BR]] * Additionally you will need to add the appropriate line to httpd.conf to add the module. This can easily be done by clicking the WAMP system tray, going to the Apache folder, and clicking httpd.conf. Search for ```LoadModule proxy_http_module modules/mod_proxy_http.so``` and add the following line afterward: ```LoadModule python_mod modules/mod_python.so``` |
Line 25: | Line 31: |
Download [http://www.selenic.com/repo/hg-stable/raw-file/tip/hgwebdir.cgi hgwebdir.cgi] and place in c:\wamp\mercurial\ (One doesn't come in the binary package unless I missed it) | '''4.''' Install Python Win32 API |
Line 27: | Line 33: |
Rename hgwebdir.cgi to hgwebdir.py | '''5.''' Install Mercurial Binaries * I suggest installing Mercurial to the location where you are going to house your repository(ies) * You should know that due to limitations of Python's ConfigParser class repositories on Windows have a tough time with drive letters, so keep that in mind when choosing your installation home. (I chose to install to (D:) because it's raided and has more space) * Your install path will be ```<MercurialPath>``` |
Line 29: | Line 38: |
Edit hgwebdir.py to the following: | '''6.''' Extract ```<MercurialPath>```\library.zip to ```<MercurialPath>```\lib '''7.''' Create 'hg' dir in c:\wamp\www '''8.''' Download [http://svn.aminus.net/misc/modpython_gateway.py modpython_gateway.py] and install to <Python Path>Lib\site-packages '''9.''' Download [http://www.selenic.com/repo/hg-stable/raw-file/tip/hgwebdir.cgi hgwebdir.cgi] and place in c:\wamp\mercurial\ (One doesn't come in the binary package unless I missed it) * Rename hgwebdir.cgi to hgwebdir.py * Edit hgwebdir.py to the following: |
Line 34: | Line 51: |
Create c:\wamp\alias\hg.conf with the following contents: | '''10.''' Create ```<WAMPPath>```\alias\hg.conf with the following contents: |
Line 36: | Line 53: |
{{{ | |
Line 37: | Line 55: |
Line 39: | Line 56: |
Line 41: | Line 57: |
Line 43: | Line 58: |
Line 45: | Line 59: |
Line 47: | Line 60: |
Line 49: | Line 61: |
Line 51: | Line 62: |
}}} |
WAMP Installation notes
Binaries and requirements used in setup:
INCOMPLETE - Need to finish.
[http://wampserver.com/en/ WAMP 2.0c]
[http://www.python.org/ Python 2.5.2 (32 bit)]
[http://apache.ziply.com/httpd/modpython/win/3.3.1/ mod_python v3.3.1 (win32) (py2.5) (Apache2.2)]
[http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063 Python Win32 API (py2.5)]
[http://www.selenic.com/mercurial/wiki/index.cgi/BinaryPackages Mercurial v1.01]
Installation Steps
1. Install WAMP if not already installed.
Your installation directory will be referred to as <WAMPPath>
2. Install Python 2.5 if not installed.
Your installation directory will be referred to as <PythonPath>
3. Install mod_python.
When installing mod_python you will be asked for your Apache directory. This will depend on the version of apache you are using, in 2.0c it is 2.2.8 so in this example it is: <WAMPPath>\bin\apache\apache2.2.8BRBR
- Additionally you will need to add the appropriate line to httpd.conf to add the module. This can easily be done by clicking the WAMP system tray, going to the Apache folder, and clicking httpd.conf.
Search for LoadModule proxy_http_module modules/mod_proxy_http.so and add the following line afterward: LoadModule python_mod modules/mod_python.so
4. Install Python Win32 API
5. Install Mercurial Binaries
- I suggest installing Mercurial to the location where you are going to house your repository(ies)
You should know that due to limitations of Python's ConfigParser class repositories on Windows have a tough time with drive letters, so keep that in mind when choosing your installation home. (I chose to install to (D:) because it's raided and has more space)
Your install path will be <MercurialPath>
6. Extract <MercurialPath>\library.zip to <MercurialPath>\lib
7. Create 'hg' dir in c:\wamp\www
8. Download [http://svn.aminus.net/misc/modpython_gateway.py modpython_gateway.py] and install to <Python Path>Lib\site-packages
9. Download [http://www.selenic.com/repo/hg-stable/raw-file/tip/hgwebdir.cgi hgwebdir.cgi] and place in c:\wamp\mercurial\ (One doesn't come in the binary package unless I missed it)
- Rename hgwebdir.cgi to hgwebdir.py
- Edit hgwebdir.py to the following:
- ..blah...
10. Create <WAMPPath>\alias\hg.conf with the following contents:
<Location /hg> PythonPath "sys.path + [ 'c:\\wamp\\mercurial' ]" #PythonDebug On #Uncomment this line if you got a problem and need debug information SetHandler mod_python PythonHandler modpython_gateway::handler PythonOption SCRIPT_NAME /hg PythonOption wsgi.application hgwebdir::application </Location>
Restart Apache
References:
http://www.selenic.com/mercurial/wiki/index.cgi/HgWebDirStepByStep
http://slucas.wikidot.com/en:hgweb-mod-python
http://www.modpython.org/FAQ/faqw.py?req=show&file=faq03.029.htp
Caveats:
Some errors will appear in appache error log, they can be ignored:
- ..Errors...