# HG changeset patch # User Bradley M. Kuhn # Date 2014-07-03 01:04:00 # Node ID 48ad84558fb4b9954b8e57a7d48ba01c0decab1f # Parent da3c57422ee64e7a8d7aa11a188ab1f243e16644 Change project URL - use kallithea-scm.org diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -36,16 +36,6 @@ Detailed instructions and links may be f Please visit http://packages.python.org/RhodeCode/installation.html for more details -RhodeCode demo --------------- - -http://demo.rhodecode.org - -The default access is anonymous but you can login to an administrative account -using the following credentials: - -- username: demo -- password: demo12 Source code ----------- diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py --- a/rhodecode/__init__.py +++ b/rhodecode/__init__.py @@ -56,7 +56,7 @@ __platform__ = platform.system() __license__ = 'GPLv3' __py_version__ = sys.version_info __author__ = 'RhodeCode GmbH' -__url__ = 'http://rhodecode.com' +__url__ = 'https://kallithea-scm.org/' is_windows = __platform__ in ['Windows'] is_unix = not is_windows diff --git a/rhodecode/config/routing.py b/rhodecode/config/routing.py --- a/rhodecode/config/routing.py +++ b/rhodecode/config/routing.py @@ -108,7 +108,7 @@ def make_map(config): rmap.connect('rst_help', "http://docutils.sourceforge.net/docs/user/rst/quickref.html", _static=True) - rmap.connect('rhodecode_official', "https://rhodecode.com", _static=True) + rmap.connect('rhodecode_official', "https://kallithea-scm.org/", _static=True) rmap.connect('rc_issue_tracker', 'https://bitbucket.org/conservancy/kallithea/issues', _static=True) #ADMIN REPOSITORY ROUTES diff --git a/rhodecode/lib/db_manage.py b/rhodecode/lib/db_manage.py --- a/rhodecode/lib/db_manage.py +++ b/rhodecode/lib/db_manage.py @@ -209,7 +209,7 @@ class DbManage(object): def_user.name = 'Anonymous' def_user.lastname = 'User' - def_user.email = 'anonymous@rhodecode.org' + def_user.email = 'anonymous@kallithea-scm.org' try: self.sa.add(def_user) @@ -548,7 +548,7 @@ class DbManage(object): # create default user for handling default permissions. user = UserModel().create_or_update(username=User.DEFAULT_USER, password=str(uuid.uuid1())[:20], - email='anonymous@rhodecode.org', + email='anonymous@kallithea-scm.org', firstname='Anonymous', lastname='User') # based on configuration options activate/deactive this user which diff --git a/rhodecode/lib/dbmigrate/schema/db_2_1_0.py b/rhodecode/lib/dbmigrate/schema/db_2_1_0.py --- a/rhodecode/lib/dbmigrate/schema/db_2_1_0.py +++ b/rhodecode/lib/dbmigrate/schema/db_2_1_0.py @@ -169,7 +169,7 @@ class RhodeCodeSetting(Base, BaseModel): 'bool': str2bool, 'list': functools.partial(aslist, sep=',') } - DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' + DEFAULT_UPDATE_URL = 'https://kallithea-scm.org/api/v1/info/versions' app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) app_settings_name = Column("app_settings_name", String(255, convert_unicode=False, assert_unicode=None), nullable=True, unique=None, default=None) diff --git a/rhodecode/lib/dbmigrate/schema/db_2_2_0.py b/rhodecode/lib/dbmigrate/schema/db_2_2_0.py --- a/rhodecode/lib/dbmigrate/schema/db_2_2_0.py +++ b/rhodecode/lib/dbmigrate/schema/db_2_2_0.py @@ -170,7 +170,7 @@ class RhodeCodeSetting(Base, BaseModel): 'bool': str2bool, 'list': functools.partial(aslist, sep=',') } - DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' + DEFAULT_UPDATE_URL = 'https://kallithea-scm.org/api/v1/info/versions' app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) app_settings_name = Column("app_settings_name", String(255, convert_unicode=False), nullable=True, unique=None, default=None) diff --git a/rhodecode/lib/dbmigrate/schema/db_2_2_3.py b/rhodecode/lib/dbmigrate/schema/db_2_2_3.py --- a/rhodecode/lib/dbmigrate/schema/db_2_2_3.py +++ b/rhodecode/lib/dbmigrate/schema/db_2_2_3.py @@ -170,7 +170,7 @@ class RhodeCodeSetting(Base, BaseModel): 'bool': str2bool, 'list': functools.partial(aslist, sep=',') } - DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' + DEFAULT_UPDATE_URL = 'https://kallithea-scm.org/api/v1/info/versions' app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) app_settings_name = Column("app_settings_name", String(255, convert_unicode=False), nullable=True, unique=None, default=None) diff --git a/rhodecode/lib/helpers.py b/rhodecode/lib/helpers.py --- a/rhodecode/lib/helpers.py +++ b/rhodecode/lib/helpers.py @@ -835,7 +835,7 @@ def gravatar_url(email_address, size=30, from pylons import url from pylons import tmpl_context as c - _def = 'anonymous@rhodecode.org' # default gravatar + _def = 'anonymous@kallithea-scm.org' # default gravatar _use_gravatar = c.visual.use_gravatar _gravatar_url = c.visual.gravatar_url or User.DEFAULT_GRAVATAR_URL diff --git a/rhodecode/model/db.py b/rhodecode/model/db.py --- a/rhodecode/model/db.py +++ b/rhodecode/model/db.py @@ -170,7 +170,7 @@ class RhodeCodeSetting(Base, BaseModel): 'bool': str2bool, 'list': functools.partial(aslist, sep=',') } - DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' + DEFAULT_UPDATE_URL = 'https://kallithea-scm.org/api/v1/info/versions' app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) app_settings_name = Column("app_settings_name", String(255, convert_unicode=False), nullable=True, unique=None, default=None) diff --git a/rhodecode/templates/journal/journal_data.html b/rhodecode/templates/journal/journal_data.html --- a/rhodecode/templates/journal/journal_data.html +++ b/rhodecode/templates/journal/journal_data.html @@ -6,7 +6,7 @@ % for user,entries in items:
- gravatar + gravatar
%if user:
${user.name} ${user.lastname}