##// END OF EJS Templates
merged changes from stable into beta
marcink -
r2032:950110f3 beta
parent child Browse files
Show More
@@ -17,6 +17,14 b' please send me a pull request.'
17 To run RhodeCode in a development version you always need to install the tip
17 To run RhodeCode in a development version you always need to install the tip
18 version of RhodeCode and the VCS library.
18 version of RhodeCode and the VCS library.
19
19
20 after downloading RhodeCode make sure you run::
21
22 python setup.py develop
23
24 command to install all required packages, and prepare development enviroment
25
26
27
20 | Thank you for any contributions!
28 | Thank you for any contributions!
21 | Marcin
29 | Marcin
22
30
@@ -10,5 +10,9 b''
10 border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
10 border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
11 <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
11 <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
12 </form>
12 </form>
13 <div style="padding:5px">
14 <a href="http://flattr.com/thing/167489/RhodeCode" target="_blank">
15 <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a>
16 </div>
13 </div>
17 </div>
14 {% endblock %}}
18 {% endblock %}}
@@ -232,9 +232,6 b' def safe_str(unicode_, to_encoding=None)'
232 :returns: str object
232 :returns: str object
233 """
233 """
234
234
235 if not isinstance(unicode_, basestring):
236 return str(unicode_)
237
238 if isinstance(unicode_, str):
235 if isinstance(unicode_, str):
239 return unicode_
236 return unicode_
240
237
General Comments 0
You need to be logged in to leave comments. Login now