# HG changeset patch # User Marcin Kuzminski # Date 2010-11-11 00:49:57 # Node ID bdd1ddd05b7c09449e79dc226e48ec438cab7377 # Parent 59670f091c7617b00195b8e44b72a11d728f4a57 docs update, setup libs version bumps diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ Source code Source code is along with issue tracker is available at http://bitbucket.org/marcinkuzminski/rhodecode -Also a source codes can be obtained from demo rhodecode instance +Also a source codes can be obtained from demo RhodeCode instance http://hg.python-works.com/rhodecode/summary Instalation @@ -39,9 +39,10 @@ Instalation Features -------- -- Has it's own middleware to handle mercurial_ protocol request. Each request - can be logged and authenticated. Runs on threads unlikely to hgweb You can - make multiple pulls/pushes simultaneous. Supports http/https +- Has it's own middleware to handle mercurial_ and git_ protocol request. + Each request can be logged and authenticated. Runs on threads unlikely to + hgweb You can make multiple pulls/pushes simultaneous. Supports http/https + both on git_ and mercurial_ - Full permissions and authentication per project private/read/write/admin. One account for web interface and mercurial_ push/pull/clone. - Mako templates let's you customize look and feel of application. @@ -65,14 +66,19 @@ Features - Based on pylons 1.0 / sqlalchemy 0.6 / sqlite -Incoming --------- +Incoming / Plans +---------------- - code review (probably based on hg-review) - full git_ support, with push/pull server +- project grouping +- anonymous access +- - commit based build in wiki system - clone points and cloning from remote repositories into rhodecode (git_ and mercurial_) +- more statistics and graph (global annotation + some more statistics) +- user customized activity dashboards - some cache optimizations - other cools stuff that i can figure out (or You can help me figure out) @@ -82,6 +88,12 @@ License ``rhodecode`` is released under GPL_ license. +Mailing group Q&A +----------------- + +http://groups.google.com/group/rhodecode + + Documentation ------------- @@ -100,4 +112,4 @@ Documentation .. _celery: http://celeryproject.org/ .. _Sphinx: http://sphinx.pocoo.org/ .. _GPL: http://www.gnu.org/licenses/gpl.html -.. _vcs: http://pypi.python.org/pypi/vcs \ No newline at end of file +.. _vcs: http://pypi.python.org/pypi/vcs diff --git a/docs/changelog.rst b/docs/changelog.rst --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,7 @@ 1.1.0 (**2010-XX-XX**) ---------------------- - git support with push/pull via RhodeCode web interface - rewrite of internals for vcs >=0.1.9 +- anonymous access - performance upgrade for cached repos list - each repository has it's own cache that's invalidated when needed. - main page quick filter for filtering repositories @@ -15,6 +16,7 @@ 1.1.0 (**2010-XX-XX**) - a lot of fixes and tweaks for file browser - introduced new enhanced changelog for merges that shows more accurate results - gui optimizations, fixed application width to 1024px +- numerous small bugfixes 1.0.0 (**2010-11-02**) ---------------------- diff --git a/docs/index.rst b/docs/index.rst --- a/docs/index.rst +++ b/docs/index.rst @@ -72,11 +72,14 @@ Features Summary page -Incoming --------- +Incoming / Plans +---------------- - code review (probably based on hg-review) - full git_ support, with push/pull server +- project grouping +- anonymous access +- - commit based build in wiki system - clone points and cloning from remote repositories into rhodecode (git_ and mercurial_) @@ -91,6 +94,12 @@ License ``rhodecode`` is released under GPL_ license. +Mailing group Q&A +----------------- + +http://groups.google.com/group/rhodecode + + Documentation ------------- diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ py_version = sys.version_info requirements = [ "Pylons>=1.0.0", - "SQLAlchemy>=0.6.4", + "SQLAlchemy>=0.6.5", "Mako>=0.3.5", "vcs>=0.1.10", "pygments>=1.3.0", "mercurial>=1.6.4", "whoosh>=1.3.1", - "celery>=2.1.2", + "celery>=2.1.3", "py-bcrypt", "babel", ]