Show More
@@ -0,0 +1,32 b'' | |||||
|
1 | .. _upgrade: | |||
|
2 | ||||
|
3 | Upgrade | |||
|
4 | ======= | |||
|
5 | ||||
|
6 | Upgrade from Cheese Shop | |||
|
7 | ------------------------ | |||
|
8 | ||||
|
9 | Easiest way to upgrade ``rhodecode`` is to run:: | |||
|
10 | ||||
|
11 | easy_install -U rhodecode | |||
|
12 | ||||
|
13 | Or:: | |||
|
14 | ||||
|
15 | pip install --upgrade rhodecode | |||
|
16 | ||||
|
17 | ||||
|
18 | Then make sure You run from the installation directory | |||
|
19 | ||||
|
20 | :: | |||
|
21 | ||||
|
22 | paster make-config RhodeCode production.ini | |||
|
23 | ||||
|
24 | This will display any changes made from new version of RhodeCode To your | |||
|
25 | current config. And tries to do an automerge. | |||
|
26 | ||||
|
27 | ||||
|
28 | .. _virtualenv: http://pypi.python.org/pypi/virtualenv | |||
|
29 | .. _python: http://www.python.org/ | |||
|
30 | .. _mercurial: http://mercurial.selenic.com/ | |||
|
31 | .. _celery: http://celeryproject.org/ | |||
|
32 | .. _rabbitmq: http://www.rabbitmq.com/ No newline at end of file |
@@ -3,19 +3,21 b'' | |||||
3 | Changelog |
|
3 | Changelog | |
4 | ========= |
|
4 | ========= | |
5 |
|
5 | |||
6 |
1.1.0 (** |
|
6 | 1.1.0 (**2010-XX-XX**) | |
7 | ---------------------- |
|
7 | ---------------------- | |
8 | - git support |
|
8 | - git support | |
|
9 | - rewrite of internals for vcs >=0.1.9 | |||
9 | - performance upgrade for cached repos list |
|
10 | - performance upgrade for cached repos list | |
|
11 | - gui optimizations | |||
|
12 | - main page quick filter for filtering repositories | |||
10 |
|
13 | |||
11 |
|
14 | 1.0.0 (**2010-11-02**) | ||
12 | 1.0.0 (**2010-10-xx**) |
|
|||
13 | ---------------------- |
|
15 | ---------------------- | |
14 |
|
16 | |||
15 | - security bugfix simplehg wasn't checking for permissions on commands |
|
17 | - security bugfix simplehg wasn't checking for permissions on commands | |
16 | other than pull or push. |
|
18 | other than pull or push. | |
17 | - fixed doubled messages after push or pull in admin journal |
|
19 | - fixed doubled messages after push or pull in admin journal | |
18 | - templating and css corrections, fixed repo switcher on chrome,updated titles |
|
20 | - templating and css corrections, fixed repo switcher on chrome, updated titles | |
19 | - admin menu accessible from options menu on repository view |
|
21 | - admin menu accessible from options menu on repository view | |
20 | - permissions cached queries |
|
22 | - permissions cached queries | |
21 |
|
23 |
@@ -4,15 +4,14 b' Welcome to RhodeCode (RhodiumCode) docum' | |||||
4 | ================================================= |
|
4 | ================================================= | |
5 |
|
5 | |||
6 | ``RhodeCode`` (formerly hg-app) is Pylons based repository management and |
|
6 | ``RhodeCode`` (formerly hg-app) is Pylons based repository management and | |
7 |
serving for mercurial_. It's similar to github or bitbucket, but |
|
7 | serving for mercurial_ and git_. It's similar to github or bitbucket, but | |
8 |
as standalone app, it's open source and focuses more on |
|
8 | it's suppose to run as standalone app, it's open source and focuses more on | |
9 | There's no default free access to RhodeCode You have to create an account in order |
|
9 | restricted access to repositories. There's no default free access to RhodeCode | |
10 | to use the application. It's powered by vcs_ library that we created to handle |
|
10 | You have to create an account in order to use the application. It's powered | |
11 | many various version control systems. |
|
11 | by vcs_ library that we created to handle many various version control systems. | |
12 |
|
12 | |||
13 | RhodeCode uses `Semantic Versioning <http://semver.org/>`_ |
|
13 | RhodeCode uses `Semantic Versioning <http://semver.org/>`_ | |
14 |
|
14 | |||
15 |
|
||||
16 | RhodeCode demo |
|
15 | RhodeCode demo | |
17 | -------------- |
|
16 | -------------- | |
18 |
|
17 | |||
@@ -29,15 +28,16 b' Source code' | |||||
29 | Source code is along with issue tracker is available at |
|
28 | Source code is along with issue tracker is available at | |
30 | http://bitbucket.org/marcinkuzminski/rhodecode |
|
29 | http://bitbucket.org/marcinkuzminski/rhodecode | |
31 |
|
30 | |||
32 |
Also a source codes can be obtained from demo |
|
31 | Also a source codes can be obtained from demo RhodeCode instance | |
33 | http://hg.python-works.com/rhodecode/summary |
|
32 | http://hg.python-works.com/rhodecode/summary | |
34 |
|
33 | |||
35 | Features |
|
34 | Features | |
36 | -------- |
|
35 | -------- | |
37 |
|
36 | |||
38 |
- Has it's own middleware to handle mercurial_ protocol request. |
|
37 | - Has it's own middleware to handle mercurial_ and git_ protocol request. | |
39 |
can be logged and authenticated. Runs on threads unlikely to |
|
38 | Each request can be logged and authenticated. Runs on threads unlikely to | |
40 | make multiple pulls/pushes simultaneous. Supports http/https |
|
39 | hgweb You can make multiple pulls/pushes simultaneous. Supports http/https | |
|
40 | both on git_ and mercurial_ | |||
41 | - Full permissions and authentication per project private/read/write/admin. |
|
41 | - Full permissions and authentication per project private/read/write/admin. | |
42 | One account for web interface and mercurial_ push/pull/clone. |
|
42 | One account for web interface and mercurial_ push/pull/clone. | |
43 | - Mako templates let's you customize look and feel of application. |
|
43 | - Mako templates let's you customize look and feel of application. | |
@@ -80,6 +80,8 b' Incoming' | |||||
80 | - commit based build in wiki system |
|
80 | - commit based build in wiki system | |
81 | - clone points and cloning from remote repositories into rhodecode |
|
81 | - clone points and cloning from remote repositories into rhodecode | |
82 | (git_ and mercurial_) |
|
82 | (git_ and mercurial_) | |
|
83 | - more statistics and graph (global annotation + some more statistics) | |||
|
84 | - user customized activity dashboards | |||
83 | - some cache optimizations |
|
85 | - some cache optimizations | |
84 | - other cools stuff that i can figure out (or You can help me figure out) |
|
86 | - other cools stuff that i can figure out (or You can help me figure out) | |
85 |
|
87 | |||
@@ -98,6 +100,7 b' Documentation' | |||||
98 | :maxdepth: 1 |
|
100 | :maxdepth: 1 | |
99 |
|
101 | |||
100 | installation |
|
102 | installation | |
|
103 | upgrade | |||
101 | setup |
|
104 | setup | |
102 | changelog |
|
105 | changelog | |
103 |
|
106 |
General Comments 0
You need to be logged in to leave comments.
Login now