diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -13,14 +13,14 @@ Fully customizable, with authentication, - diffs annotations and source code all colored by pygments. - mercurial branch graph - admin interface for performing user/permission managments as well as repository - managment + managment. Additionall settings for mercurial web, (hooks editable from admin + panel !) - backup scripts can do backup of whole app and send it over scp to desired location - setup project descriptions and info inside built in db for easy, non file-system operations - added cache with invalidation on push/repo managment for high performance and always upto date data. - rss /atom feed customizable -- future support for git - based on pylons 1.0 / sqlalchemy 0.6 **Incoming** @@ -28,6 +28,7 @@ Fully customizable, with authentication, - code review based on hg-review (when it's stable) - git support (when vcs can handle it) - other cools stuff that i can figure out +- manage hg ui() per repo, add hooks settings, per repo, and not globally .. note:: This software is still in beta mode. I don't guarantee that it'll work. @@ -45,8 +46,8 @@ Installation - download hg app from default (not demo) branch from bitbucket and run 'python setup.py install' this will install all required dependencies needed - run paster setup-app production.ini it should create all needed tables - and an admin account. Also it will create repositories.config for mercurial - commands, remember that the given path for mercurial repositories must be write + and an admin account. +- remember that the given path for mercurial repositories must be write accessible for the application - run paster serve development.ini - or you can use manage-hg_app script. the app should be available at the 127.0.0.1:5000 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -19,9 +19,9 @@ setup( "Pylons>=1.0.0", "SQLAlchemy>=0.6", "Mako>=0.3.2", - "vcs>=0.1.3", + "vcs>=0.1.4", "pygments>=1.3.0", - "mercurial>=1.5", + "mercurial>=1.6", "pysqlite" ], setup_requires=["PasteScript>=1.6.3"],