changeset 676:bdd1ddd05b7c beta

docs update, setup libs version bumps
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 11 Nov 2010 01:49:57 +0100
parents 59670f091c76
children 469108c210f6
files README.rst docs/changelog.rst docs/index.rst setup.py
diffstat 4 files changed, 34 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/README.rst	Thu Nov 11 01:33:26 2010 +0100
+++ b/README.rst	Thu Nov 11 01:49:57 2010 +0100
@@ -27,7 +27,7 @@
 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 @@
 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 @@
 - 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 @@
 ``rhodecode`` is released under GPL_ license.
 
 
+Mailing group Q&A
+-----------------
+
+http://groups.google.com/group/rhodecode
+
+
 Documentation
 -------------
 
@@ -100,4 +112,4 @@
 .. _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
--- a/docs/changelog.rst	Thu Nov 11 01:33:26 2010 +0100
+++ b/docs/changelog.rst	Thu Nov 11 01:49:57 2010 +0100
@@ -7,6 +7,7 @@
 ----------------------
 - 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 @@
 - 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**)
 ----------------------
--- a/docs/index.rst	Thu Nov 11 01:33:26 2010 +0100
+++ b/docs/index.rst	Thu Nov 11 01:49:57 2010 +0100
@@ -72,11 +72,14 @@
    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 @@
 ``rhodecode`` is released under GPL_ license.
 
 
+Mailing group Q&A
+-----------------
+
+http://groups.google.com/group/rhodecode
+
+
 Documentation
 -------------
 
--- a/setup.py	Thu Nov 11 01:33:26 2010 +0100
+++ b/setup.py	Thu Nov 11 01:49:57 2010 +0100
@@ -4,13 +4,13 @@
 
 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",
     ]