##// END OF EJS Templates
docs update, setup libs version bumps
marcink -
r676:bdd1ddd0 beta
parent child Browse files
Show More
@@ -27,7 +27,7 b' Source code'
27 27 Source code is along with issue tracker is available at
28 28 http://bitbucket.org/marcinkuzminski/rhodecode
29 29
30 Also a source codes can be obtained from demo rhodecode instance
30 Also a source codes can be obtained from demo RhodeCode instance
31 31 http://hg.python-works.com/rhodecode/summary
32 32
33 33 Instalation
@@ -39,9 +39,10 b' Instalation'
39 39 Features
40 40 --------
41 41
42 - Has it's own middleware to handle mercurial_ protocol request. Each request
43 can be logged and authenticated. Runs on threads unlikely to hgweb You can
44 make multiple pulls/pushes simultaneous. Supports http/https
42 - Has it's own middleware to handle mercurial_ and git_ protocol request.
43 Each request can be logged and authenticated. Runs on threads unlikely to
44 hgweb You can make multiple pulls/pushes simultaneous. Supports http/https
45 both on git_ and mercurial_
45 46 - Full permissions and authentication per project private/read/write/admin.
46 47 One account for web interface and mercurial_ push/pull/clone.
47 48 - Mako templates let's you customize look and feel of application.
@@ -65,14 +66,19 b' Features'
65 66 - Based on pylons 1.0 / sqlalchemy 0.6 / sqlite
66 67
67 68
68 Incoming
69 --------
69 Incoming / Plans
70 ----------------
70 71
71 72 - code review (probably based on hg-review)
72 73 - full git_ support, with push/pull server
74 - project grouping
75 - anonymous access
76 -
73 77 - commit based build in wiki system
74 78 - clone points and cloning from remote repositories into rhodecode
75 79 (git_ and mercurial_)
80 - more statistics and graph (global annotation + some more statistics)
81 - user customized activity dashboards
76 82 - some cache optimizations
77 83 - other cools stuff that i can figure out (or You can help me figure out)
78 84
@@ -82,6 +88,12 b' License'
82 88 ``rhodecode`` is released under GPL_ license.
83 89
84 90
91 Mailing group Q&A
92 -----------------
93
94 http://groups.google.com/group/rhodecode
95
96
85 97 Documentation
86 98 -------------
87 99
@@ -100,4 +112,4 b' Documentation'
100 112 .. _celery: http://celeryproject.org/
101 113 .. _Sphinx: http://sphinx.pocoo.org/
102 114 .. _GPL: http://www.gnu.org/licenses/gpl.html
103 .. _vcs: http://pypi.python.org/pypi/vcs No newline at end of file
115 .. _vcs: http://pypi.python.org/pypi/vcs
@@ -7,6 +7,7 b' 1.1.0 (**2010-XX-XX**)'
7 7 ----------------------
8 8 - git support with push/pull via RhodeCode web interface
9 9 - rewrite of internals for vcs >=0.1.9
10 - anonymous access
10 11 - performance upgrade for cached repos list - each repository has it's own
11 12 cache that's invalidated when needed.
12 13 - main page quick filter for filtering repositories
@@ -15,6 +16,7 b' 1.1.0 (**2010-XX-XX**)'
15 16 - a lot of fixes and tweaks for file browser
16 17 - introduced new enhanced changelog for merges that shows more accurate results
17 18 - gui optimizations, fixed application width to 1024px
19 - numerous small bugfixes
18 20
19 21 1.0.0 (**2010-11-02**)
20 22 ----------------------
@@ -72,11 +72,14 b' Features'
72 72 Summary page
73 73
74 74
75 Incoming
76 --------
75 Incoming / Plans
76 ----------------
77 77
78 78 - code review (probably based on hg-review)
79 79 - full git_ support, with push/pull server
80 - project grouping
81 - anonymous access
82 -
80 83 - commit based build in wiki system
81 84 - clone points and cloning from remote repositories into rhodecode
82 85 (git_ and mercurial_)
@@ -91,6 +94,12 b' License'
91 94 ``rhodecode`` is released under GPL_ license.
92 95
93 96
97 Mailing group Q&A
98 -----------------
99
100 http://groups.google.com/group/rhodecode
101
102
94 103 Documentation
95 104 -------------
96 105
@@ -4,13 +4,13 b' py_version = sys.version_info'
4 4
5 5 requirements = [
6 6 "Pylons>=1.0.0",
7 "SQLAlchemy>=0.6.4",
7 "SQLAlchemy>=0.6.5",
8 8 "Mako>=0.3.5",
9 9 "vcs>=0.1.10",
10 10 "pygments>=1.3.0",
11 11 "mercurial>=1.6.4",
12 12 "whoosh>=1.3.1",
13 "celery>=2.1.2",
13 "celery>=2.1.3",
14 14 "py-bcrypt",
15 15 "babel",
16 16 ]
General Comments 0
You need to be logged in to leave comments. Login now