# HG changeset patch # User Marcin Kuzminski # Date 2012-02-26 17:08:37 # Node ID 950110f3f99fb069a9809e10a3b58dc06ce58583 # Parent 61f9aeb2129e10a12d88895527ffe1f1692e997d merged changes from stable into beta diff --git a/docs/contributing.rst b/docs/contributing.rst --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -17,6 +17,14 @@ please send me a pull request. To run RhodeCode in a development version you always need to install the tip version of RhodeCode and the VCS library. +after downloading RhodeCode make sure you run:: + + python setup.py develop + +command to install all required packages, and prepare development enviroment + + + | Thank you for any contributions! | Marcin diff --git a/docs/theme/nature/layout.html b/docs/theme/nature/layout.html --- a/docs/theme/nature/layout.html +++ b/docs/theme/nature/layout.html @@ -10,5 +10,9 @@ border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> +
+ + Flattr this +
{% endblock %}} diff --git a/rhodecode/lib/__init__.py b/rhodecode/lib/__init__.py --- a/rhodecode/lib/__init__.py +++ b/rhodecode/lib/__init__.py @@ -232,9 +232,6 @@ def safe_str(unicode_, to_encoding=None) :returns: str object """ - if not isinstance(unicode_, basestring): - return str(unicode_) - if isinstance(unicode_, str): return unicode_