##// 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 paster make-config RhodeCode production.ini
12 paster make-config RhodeCode production.ini
13
13
14 - This will create `production.ini` config inside the directory
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 email settings,static files, cache and logging.
16 email settings,static files, cache and logging.
17
17
18 ::
18 ::
@@ -33,7 +33,7 b' Setting up the application'
33
33
34 paster serve production.ini
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 127.0.0.1:5000. This ip and port is configurable via the production.ini
37 127.0.0.1:5000. This ip and port is configurable via the production.ini
38 file created in previous step
38 file created in previous step
39 - Use admin account you created to login.
39 - Use admin account you created to login.
@@ -117,14 +117,14 b' authentication so those are credentials '
117 support anonymous search/user lookups.
117 support anonymous search/user lookups.
118
118
119 If all data are entered correctly, and `ldap-python` is properly installed
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
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,
121 logging at the first time an special ldap account is created inside RhodeCode,
122 so You can control over permissions even on ldap users. If such user exists
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
123 already in RhodeCode database ldap user with the same username would be not
124 able to access rhodecode.
124 able to access RhodeCode.
125
125
126 If You have problems with ldap access and believe You entered correct
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 ldap will be saved there.
128 ldap will be saved there.
129
129
130
130
@@ -215,7 +215,7 b' Troubleshooting'
215 - long lasting push timeouts ?
215 - long lasting push timeouts ?
216
216
217 - make sure You set a longer timeouts in Your proxy/fcgi settings, timeouts
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 - large pushes timeouts ?
220 - large pushes timeouts ?
221
221
@@ -155,7 +155,8 b' class ScmModel(object):'
155
155
156 #TODO: get the baseui from somewhere for this
156 #TODO: get the baseui from somewhere for this
157 if alias == 'hg':
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 #skip hidden web repository
160 #skip hidden web repository
160 if repo._get_hidden():
161 if repo._get_hidden():
161 return
162 return
General Comments 0
You need to be logged in to leave comments. Login now