Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 24
- Log:
Initial import of Collaboa 0.5.6 from downloaded Tarball. Collaboa is
a Ruby On Rails based bug tracker and SVN repository browsing tool.
- Author:
- adh
- Date:
- Mon Jul 24 21:54:39 +0100 2006
- Size:
- 2841 Bytes
1 | Welcome to Collaboa |
2 | ======================= |
3 | |
4 | CONTENTS |
5 | -------- |
6 | 1. About |
7 | 2. Requirements |
8 | 3. Installation & Upgrading |
9 | 4. Running tests |
10 | 5. Authors |
11 | 6. Acknowledgments |
12 | |
13 | |
14 | 1. About |
15 | -------- |
16 | |
17 | The goal of Collaboa is to be a collaborative tool for developers using Subversion. |
18 | |
19 | Currently, only the following features are available: |
20 | * Repository browsing |
21 | * Changeset viewer |
22 | * Issue tracking |
23 | * Milestone management |
24 | |
25 | Thanks to Rails, the underlying framework, it runs on a number of web servers |
26 | supporting both FastCGI and plain CGI. Because of the speed improvements over plain |
27 | CGI, FastCGI is the preferred environment to run it in. The developer is known to |
28 | have a personal taste for "Lighttpd":http://lighttpd.net as a web server, but that |
29 | shouldn't stop you from using anything else, like Apache. |
30 | |
31 | Some of the features planned for future releases are: |
32 | * Continuous integration of tests/builds |
33 | |
34 | ### A little background... |
35 | |
36 | Colloboa has been heavily influenced by "Trac":http://projects.edgewall.com/trac/, |
37 | which showed the world how nicely version and bug tracking could be integrated. |
38 | Hopefully Colloboa still has a place in the world because of its different feature |
39 | set (although it may not be quite there yet). |
40 | |
41 | |
42 | You can find more info on http://collaboa.org along with official releases. |
43 | If you want to report a bug or submit a patch (both greatly appreciated) you can |
44 | visit the "Collaboa for Collaboa" at http://dev.collaboa.org |
45 | |
46 | |
47 | 2. Requirements |
48 | --------------- |
49 | |
50 | Subversion 1.2.x with the Ruby SWIG bindings installed (see "Install" below) |
51 | Rails 1.0+ |
52 | |
53 | |
54 | 3. Install |
55 | ---------- |
56 | |
57 | Please see INSTALL & UPGRADE |
58 | |
59 | |
60 | 4. Running tests |
61 | ---------------- |
62 | The unit and functional tests expect the svn dump located in |
63 | ./lib/actionsubversion/test/fixtures/data_for_tests.svn to be loaded in the repository located |
64 | at the path you've specified under "test" in the collaboa-config.yml. You can load it with the |
65 | following commands (REPOS_PATH being where you want the test repos): |
66 | $ svnadmin create REPOS_PATH |
67 | $ cat ./lib/actionsubversion/test/fixtures/data_for_tests.svn | svnadmin load REPOS_PATH |
68 | |
69 | 5. Authors |
70 | ---------- |
71 | |
72 | Collaboa is maintained and developed by Johan Sørensen. You can find out more about him |
73 | at http://johansorensen.com/ or read his blog at http://theexciter.com. You can also send |
74 | an email to johan at johansorensen.com. |
75 | |
76 | Contributions has been made by the following people: |
77 | * Jean-Philippe Bougi |
78 | |
79 | |
80 | 6. Acknowledgments |
81 | ------------------- |
82 | Collaboa contains a few shamefully lifted codesnippets from the Bugtrack application made by |
83 | Kent Sibilev. Specifically things related to creating TicketChange logs. You can find out more |
84 | about Kent's excellent bugtracker at http://rubyforge.org/projects/bugtrack |
85 | |
86 |