##// END OF EJS Templates
merge with beta
marcink -
r2096:934906f0 merge rhodecode-0.0.1.3.3 default
parent child Browse files
Show More
@@ -1,6 +1,6 b''
1 .. _api:
1 .. _api:
2
2
3
3 ===
4 API
4 API
5 ===
5 ===
6
6
@@ -1,5 +1,6 b''
1 .. _models:
1 .. _models:
2
2
3 ========================
3 The :mod:`models` Module
4 The :mod:`models` Module
4 ========================
5 ========================
5
6
@@ -1,9 +1,36 b''
1 .. _changelog:
1 .. _changelog:
2
2
3 =========
3 Changelog
4 Changelog
4 =========
5 =========
5
6
6
7
8
9 1.3.3 (**2012-03-02**)
10 ----------------------
11
12 news
13 ++++
14
15
16 fixes
17 +++++
18
19 - fixed some python2.5 compatibility issues
20 - fixed issues with removed repos was accidentally added as groups, after
21 full rescan of paths
22 - fixes #376 Cannot edit user (using container auth)
23 - fixes #378 Invalid image urls on changeset screen with proxy-prefix
24 configuration
25 - fixed initial sorting of repos inside repo group
26 - fixes issue when user tried to resubmit same permission into user/user_groups
27 - bumped beaker version that fixes #375 leap error bug
28 - fixed raw_changeset for git. It was generated with hg patch headers
29 - fixed vcs issue with last_changeset for filenodes
30 - fixed missing commit after hook delete
31 - fixed #372 issues with git operation detection that caused a security issue
32 for git repos
33
7 1.3.2 (**2012-02-28**)
34 1.3.2 (**2012-02-28**)
8 ----------------------
35 ----------------------
9
36
@@ -1,5 +1,6 b''
1 .. _contributing:
1 .. _contributing:
2
2
3 =========================
3 Contributing to RhodeCode
4 Contributing to RhodeCode
4 =========================
5 =========================
5
6
@@ -14,16 +15,19 b' fix might be already fixed there and i t'
14 stable, and not the other way. Finally, when you are finished making a change,
15 stable, and not the other way. Finally, when you are finished making a change,
15 please send me a pull request.
16 please send me a pull request.
16
17
17 To run RhodeCode in a development version you always need to install the tip
18 To run RhodeCode in a development version you always need to install the latest
18 version of RhodeCode and the VCS library.
19 required libs from `requires.txt` file.
19
20
20 after downloading RhodeCode make sure you run::
21 after downloading/pulling RhodeCode make sure you run::
21
22
22 python setup.py develop
23 python setup.py develop
23
24
24 command to install all required packages, and prepare development enviroment
25 command to install/verify all required packages, and prepare development
26 enviroment.
25
27
26
28
29 After finishing your changes make sure all tests passes ok. You can run
30 the testsuite running nosetest from the project root.
27
31
28 | Thank you for any contributions!
32 | Thank you for any contributions!
29 | Marcin
33 | Marcin
@@ -1,5 +1,6 b''
1 .. _installation:
1 .. _installation:
2
2
3 ============
3 Installation
4 Installation
4 ============
5 ============
5
6
@@ -1,5 +1,6 b''
1 .. _setup:
1 .. _setup:
2
2
3 =====
3 Setup
4 Setup
4 =====
5 =====
5
6
@@ -1,5 +1,6 b''
1 .. _upgrade:
1 .. _upgrade:
2
2
3 =======
3 Upgrade
4 Upgrade
4 =======
5 =======
5
6
@@ -25,11 +26,11 b' Then make sure you run the following com'
25
26
26 This will display any changes made by the new version of RhodeCode to your
27 This will display any changes made by the new version of RhodeCode to your
27 current configuration. It will try to perform an automerge. It's always better
28 current configuration. It will try to perform an automerge. It's always better
28 to make a backup of your configuration file before hand and recheck the
29 to make a backup of your configuration file before hand and re check the
29 content after the automerge.
30 content after the automerge.
30
31
31 .. note::
32 .. note::
32 Please always make sure your .ini files are upto date. Often errors are
33 Please always make sure your .ini files are up to date. Often errors are
33 caused by missing params added in new versions.
34 caused by missing params added in new versions.
34
35
35
36
@@ -1,5 +1,6 b''
1 .. _backup:
1 .. _backup:
2
2
3 ====================
3 Backing up RhodeCode
4 Backing up RhodeCode
4 ====================
5 ====================
5
6
@@ -1,5 +1,6 b''
1 .. _general:
1 .. _general:
2
2
3 =======================
3 General RhodeCode usage
4 General RhodeCode usage
4 =======================
5 =======================
5
6
@@ -1,5 +1,6 b''
1 .. _git_support:
1 .. _git_support:
2
2
3 ===========
3 GIT support
4 GIT support
4 ===========
5 ===========
5
6
@@ -1,6 +1,6 b''
1 .. _statistics:
1 .. _statistics:
2
2
3
3 ==========
4 Statistics
4 Statistics
5 ==========
5 ==========
6
6
@@ -26,7 +26,7 b''
26 import sys
26 import sys
27 import platform
27 import platform
28
28
29 VERSION = (1, 3, 2)
29 VERSION = (1, 3, 3)
30 __version__ = '.'.join((str(each) for each in VERSION[:4]))
30 __version__ = '.'.join((str(each) for each in VERSION[:4]))
31 __dbversion__ = 5 # defines current db version for migrations
31 __dbversion__ = 5 # defines current db version for migrations
32 __platform__ = platform.system()
32 __platform__ = platform.system()
General Comments 0
You need to be logged in to leave comments. Login now