Changeset - bdd1ddd05b7c
[Not reviewed]
beta
0 4 0
Marcin Kuzminski - 15 years ago 2010-11-11 01:49:57
marcin@python-works.com
docs update, setup libs version bumps
4 files changed with 34 insertions and 11 deletions:
0 comments (0 inline, 0 general)
README.rst
Show inline comments
 
@@ -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
docs/changelog.rst
Show inline comments
 
@@ -7,6 +7,7 @@ Changelog
 
----------------------
 
- 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 @@ Changelog
 
- 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**)
 
----------------------
docs/index.rst
Show inline comments
 
@@ -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
 
-------------
 

	
setup.py
Show inline comments
 
@@ -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",
 
    ]
0 comments (0 inline, 0 general)