##// END OF EJS Templates
Fixed archivals by passing baseui to scm get method for hg....
marcink -
r715:066af351 beta
parent child Browse files
Show More
@@ -12,7 +12,7 b' Setting up the application'
12 12 paster make-config RhodeCode production.ini
13 13
14 14 - This will create `production.ini` config inside the directory
15 this config contains various settings for rhodecode, e.g proxy port,
15 this config contains various settings for RhodeCode, e.g proxy port,
16 16 email settings,static files, cache and logging.
17 17
18 18 ::
@@ -33,7 +33,7 b' Setting up the application'
33 33
34 34 paster serve production.ini
35 35
36 - This command runs the rhodecode server the app should be available at the
36 - This command runs the RhodeCode server the app should be available at the
37 37 127.0.0.1:5000. This ip and port is configurable via the production.ini
38 38 file created in previous step
39 39 - Use admin account you created to login.
@@ -117,14 +117,14 b' authentication so those are credentials '
117 117 support anonymous search/user lookups.
118 118
119 119 If all data are entered correctly, and `ldap-python` is properly installed
120 Users should be granted to access rhodecode wit theire ldap accounts. When
121 logging at the first time an special ldap account is created inside rhodecode,
120 Users should be granted to access RhodeCode wit theire ldap accounts. When
121 logging at the first time an special ldap account is created inside RhodeCode,
122 122 so You can control over permissions even on ldap users. If such user exists
123 already in rhodecode database ldap user with the same username would be not
124 able to access rhodecode.
123 already in RhodeCode database ldap user with the same username would be not
124 able to access RhodeCode.
125 125
126 126 If You have problems with ldap access and believe You entered correct
127 information check out the rhodecode logs,any error messages sent from
127 information check out the RhodeCode logs,any error messages sent from
128 128 ldap will be saved there.
129 129
130 130
@@ -215,7 +215,7 b' Troubleshooting'
215 215 - long lasting push timeouts ?
216 216
217 217 - make sure You set a longer timeouts in Your proxy/fcgi settings, timeouts
218 are caused by https server and not rhodecode
218 are caused by https server and not RhodeCode
219 219
220 220 - large pushes timeouts ?
221 221
@@ -155,7 +155,8 b' class ScmModel(object):'
155 155
156 156 #TODO: get the baseui from somewhere for this
157 157 if alias == 'hg':
158 repo = backend(repo_path, create=False, baseui=None)
158 from pylons import app_globals as g
159 repo = backend(repo_path, create=False, baseui=g.baseui)
159 160 #skip hidden web repository
160 161 if repo._get_hidden():
161 162 return
General Comments 0
You need to be logged in to leave comments. Login now