aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2011-04-12 23:51:04 +0200
committerMarcin Kuzminski <marcin@python-works.com>2011-04-12 23:51:04 +0200
commit3f0d8c9accbe01bf2b1957c049748e8b3f20a6a5 (patch)
tree58424add3e01f1d716f8a4698680abfdb0958c4a
parent65cb844c9915954005edaf83a3b5c8754d3a0dc9 (diff)
docs, and changelog updatev1.1.8
-rw-r--r--docs/changelog.rst15
-rw-r--r--docs/setup.rst56
-rw-r--r--docs/theme/nature/static/nature.css_t2
3 files changed, 62 insertions, 11 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 7fb297f7..2ff40754 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,12 +4,14 @@ Changelog
=========
-1.1.8 (**2011-04-XX**)
+1.1.8 (**2011-04-12**)
======================
news
----
+- improved windows support
+
fixes
-----
@@ -17,18 +19,17 @@ fixes
incompatible
- setup-app will check for write permission in given path
- cleaned up license info issue #149
-- fixes for issues #137,#116 and #116, problems with unicode and
- accented characters.
+- fixes for issues #137,#116 and problems with unicode and accented characters.
- fixes crashes on gravatar, when passed in email as unicode
- fixed tooltip flickering problems
- fixed came_from redirection on windows
-- fixed logging modules,and sql formatters
-- windows fixes for os.kill #133
+- fixed logging modules, and sql formatters
+- windows fixes for os.kill issue #133
- fixes path splitting for windows issues #148
- fixed issue #143 wrong import on migration to 1.1.X
- fixed problems with displaying binary files, thanks to Thomas Waldmann
-- removed name from archive files since it's breaking ui for long names
-- fixed issue witg archive headers sent to browser, thanks to Thomas Waldmann
+- removed name from archive files since it's breaking ui for long repo names
+- fixed issue with archive headers sent to browser, thanks to Thomas Waldmann
- fixed compatibility for 1024px displays, and larger dpi settings, thanks to
Thomas Waldmann
- fixed issue #166 summary pager was skipping 10 revisions on second page
diff --git a/docs/setup.rst b/docs/setup.rst
index 50676fad..a752aef5 100644
--- a/docs/setup.rst
+++ b/docs/setup.rst
@@ -328,10 +328,60 @@ Add the following at the end of the .ini file::
then change <someprefix> into your choosen prefix
-Apache's example FCGI config
-----------------------------
+Apache's example WSGI+SSL config
+--------------------------------
+
+virtual host example::
+
+ <VirtualHost *:443>
+ ServerName hg.domain.eu:443
+ DocumentRoot /var/www
+
+ SSLEngine on
+ SSLCertificateFile /etc/apache2/ssl/hg.domain.eu.cert
+ SSLCertificateKeyFile /etc/apache2/ssl/hg.domain.eu.key
+ SSLCertificateChainFile /etc/apache2/ssl/ca.cert
+ SetEnv HTTP_X_URL_SCHEME https
+
+ Alias /css /home/web/virtualenvs/hg/lib/python2.6/site-packages/rhodecode/public/css
+ Alias /images /home/web/virtualenvs/hg/lib/python2.6/site-packages/rhodecode/public/images
+ Alias /js /home/web/virtualenvs/hg/lib/python2.6/site-packages/rhodecode/public/js
+
+ WSGIDaemonProcess hg user=web group=web processes=1 threads=10 display-name=%{GROUP} python-path=/home/web/virtualenvs/hg/lib/python2.6/site-packages
+
+ WSGIPassAuthorization On
+ WSGIProcessGroup hg
+ WSGIApplicationGroup hg
+ WSGIScriptAlias / /home/web/apache/conf/hg.wsgi
+
+ <Directory /home/web/apache/conf>
+ Order deny,allow
+ Allow from all
+ </Directory>
+ <Directory /var/www>
+ Order deny,allow
+ Allow from all
+ </Directory>
+
+ </VirtualHost>
+
+ <VirtualHost *:80>
+ ServerName hg.domain.eu
+ Redirect permanent / https://hg.domain.eu/
+ </VirtualHost>
+
+
+HG.WSGI::
+
+ import os
+ os.environ["HGENCODING"] = "UTF-8"
+
+ from paste.deploy import loadapp
+ from paste.script.util.logging_config import fileConfig
+
+ fileConfig('/home/web/virtualenvs/hg/config/production.ini')
+ application = loadapp('config:/home/web/virtualenvs/hg/config/production.ini'
-TODO !
Other configuration files
-------------------------
diff --git a/docs/theme/nature/static/nature.css_t b/docs/theme/nature/static/nature.css_t
index 03b0379d..3cddf73e 100644
--- a/docs/theme/nature/static/nature.css_t
+++ b/docs/theme/nature/static/nature.css_t
@@ -54,7 +54,7 @@ div.footer a {
}
div.related {
- background-color: #6BA81E;
+ background-color: #003367;
line-height: 32px;
color: #fff;
text-shadow: 0px 1px 0 #444;