##// END OF EJS Templates
doc fix
marcink -
r929:c44b3c9b beta
parent child Browse files
Show More
@@ -4,13 +4,13 b' Changelog'
4 4 =========
5 5
6 6 1.2.0 (**2011-XX-XX**)
7 ----------------------
7 ======================
8 8
9 9 :status: in-progress
10 10 :branch: beta
11 11
12 12 news
13 ++++
13 ----
14 14
15 15 - implemented #89 Can setup google analytics code from settings menu
16 16 - implemented #91 added nicer looking archive urls
@@ -21,7 +21,7 b' news'
21 21 line
22 22
23 23 fixes
24 ++++
24 -----
25 25
26 26 - fixed file browser bug, when switching into given form revision the url was
27 27 not changing
@@ -29,17 +29,17 b' fixes'
29 29
30 30
31 31 1.1.1 (**2011-01-06**)
32 ----------------------
32 ======================
33 33
34 34 news
35 ++++
35 ----
36 36
37 37 - added force https option into ini files for easier https usage (no need to
38 38 set server headers with this options)
39 39 - small css updates
40 40
41 41 fixes
42 ++++
42 -----
43 43
44 44 - fixed #96 redirect loop on files view on repositories without changesets
45 45 - fixed #97 unicode string passed into server header in special cases (mod_wsgi)
@@ -48,10 +48,10 b' fixes'
48 48 - fixed #92 whoosh indexer is more error proof
49 49
50 50 1.1.0 (**2010-12-18**)
51 ----------------------
51 ======================
52 52
53 53 news
54 ++++
54 ----
55 55
56 56 - rewrite of internals for vcs >=0.1.10
57 57 - uses mercurial 1.7 with dotencode disabled for maintaining compatibility
@@ -76,7 +76,7 b' news'
76 76 - other than sqlite database backends can be used
77 77
78 78 fixes
79 +++++
79 -----
80 80
81 81 - fixes #61 forked repo was showing only after cache expired
82 82 - fixes #76 no confirmation on user deletes
@@ -96,16 +96,16 b' fixes'
96 96
97 97
98 98 1.0.2 (**2010-11-12**)
99 ----------------------
99 ======================
100 100
101 101 news
102 ++++
102 ----
103 103
104 104 - tested under python2.7
105 105 - bumped sqlalchemy and celery versions
106 106
107 107 fixes
108 +++++
108 -----
109 109
110 110 - fixed #59 missing graph.js
111 111 - fixed repo_size crash when repository had broken symlinks
@@ -113,15 +113,15 b' fixes'
113 113
114 114
115 115 1.0.1 (**2010-11-10**)
116 ----------------------
116 ======================
117 117
118 118 news
119 ++++
119 ----
120 120
121 121 - small css updated
122 122
123 123 fixes
124 +++++
124 -----
125 125
126 126 - fixed #53 python2.5 incompatible enumerate calls
127 127 - fixed #52 disable mercurial extension for web
@@ -129,7 +129,7 b' fixes'
129 129
130 130
131 131 1.0.0 (**2010-11-02**)
132 ----------------------
132 ======================
133 133
134 134 - security bugfix simplehg wasn't checking for permissions on commands
135 135 other than pull or push.
@@ -139,7 +139,7 b' 1.0.0 (**2010-11-02**)'
139 139 - permissions cached queries
140 140
141 141 1.0.0rc4 (**2010-10-12**)
142 --------------------------
142 ==========================
143 143
144 144 - fixed python2.5 missing simplejson imports (thanks to Jens Bäckman)
145 145 - removed cache_manager settings from sqlalchemy meta
@@ -149,12 +149,12 b' 1.0.0rc4 (**2010-10-12**)'
149 149
150 150
151 151 1.0.0rc3 (**2010-10-11**)
152 -------------------------
152 =========================
153 153
154 154 - fixed i18n during installation.
155 155
156 156 1.0.0rc2 (**2010-10-11**)
157 -------------------------
157 =========================
158 158
159 159 - Disabled dirsize in file browser, it's causing nasty bug when dir renames
160 160 occure. After vcs is fixed it'll be put back again.
@@ -256,27 +256,27 b' Apache virtual host example'
256 256
257 257 Sample config for apache using proxy::
258 258
259 <VirtualHost *:80>
260 ServerName hg.myserver.com
261 ServerAlias hg.myserver.com
262
263 <Proxy *>
264 Order allow,deny
265 Allow from all
266 </Proxy>
267
268 #important !
269 #Directive to properly generate url (clone url) for pylons
270 ProxyPreserveHost On
271
272 #rhodecode instance
273 ProxyPass / http://127.0.0.1:5000/
274 ProxyPassReverse / http://127.0.0.1:5000/
275
276 #to enable https use line below
277 #SetEnvIf X-Url-Scheme https HTTPS=1
278
279 </VirtualHost>
259 <VirtualHost *:80>
260 ServerName hg.myserver.com
261 ServerAlias hg.myserver.com
262
263 <Proxy *>
264 Order allow,deny
265 Allow from all
266 </Proxy>
267
268 #important !
269 #Directive to properly generate url (clone url) for pylons
270 ProxyPreserveHost On
271
272 #rhodecode instance
273 ProxyPass / http://127.0.0.1:5000/
274 ProxyPassReverse / http://127.0.0.1:5000/
275
276 #to enable https use line below
277 #SetEnvIf X-Url-Scheme https HTTPS=1
278
279 </VirtualHost>
280 280
281 281
282 282 Additional tutorial
General Comments 0
You need to be logged in to leave comments. Login now