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:
- 4747 Bytes
1 | ** SVN ** |
2 | |
3 | |
4 | |
5 | |
6 | ** 0.5.6 ** |
7 | |
8 | * Don’t select “completed” milestones for the “Add to milestone” dropdown when creating new ticket |
9 | |
10 | * Added permissions for viewing milestones [jwa] |
11 | |
12 | * Make ./script/repository_syncer use less memory by running GC manually |
13 | |
14 | * Updated ActionSubversion to support the Subversion 1.3 API |
15 | |
16 | |
17 | ** 0.5.5 ** |
18 | |
19 | * Added a simple search mechanism for tickets and changesets |
20 | |
21 | * Added next/prev links when showing a ticket |
22 | |
23 | * Handle milestone.info.nil? nicely [Oliver Legg] |
24 | |
25 | * Placed all admin related controller & views in /admin/ |
26 | |
27 | * ActionSubversion: Guard against non-canonical repository paths |
28 | |
29 | * ActionSubversion: Fixed memory issues |
30 | |
31 | * Added "meta" info about the current dir being browsed |
32 | |
33 | * ActionSubversion: Added #get_node_entry for getting a single RepositoryNode object |
34 | |
35 | * ActionSubversion: Adding Base::fs_root(rev) for getting the root object from a given revision |
36 | |
37 | * Now accepting +rev+ params properly to get the file/path at the given revision, link to this revision when showing a changeset as well. |
38 | |
39 | * Added so that it is possible to get a listing of all past revisions when viewing a file |
40 | |
41 | * Make path_breadcrumbs not break path where multiple occurances of the same same occur [jon.tai@medsphere.com] |
42 | |
43 | * Make rss feeds work with urls like http://my.url:3455 [joevandyk@gmail.com] |
44 | |
45 | * Show some "meta info" about the file we're viewing in the browser |
46 | |
47 | * Encode email addresses in ticket authornames and make them clickable. [lucas@rufy.com] |
48 | |
49 | * Create/edit admin users from admin UI [sean@lowpro.ca] |
50 | |
51 | * Updated to edge rails (0.14/1.0) |
52 | |
53 | * Added db/default_content.rb as an attempt at an easy way to create initial content |
54 | |
55 | * Dropping development_structure.*.sql in favor of schema.rb |
56 | |
57 | * Bring various railsisms up to date (@params => params etc) [Lucas Carlson] |
58 | |
59 | * ActionSubversion: Objectified repository node entries |
60 | |
61 | * Added so that NULL values in ticket associations are not dependent on mysql behaviour [Samuel Kvarnbrink] |
62 | |
63 | * Added PostgreSQL schema [Samuel Kvarnbrink] |
64 | |
65 | * Handle mime-types not found in the ext->mimetype hash |
66 | |
67 | * Attempt to avoid race conditions when syncing changesets |
68 | |
69 | * Fixed so that we don't diff binary files when showing a changeset |
70 | |
71 | * format_and_make_links for rss description as well |
72 | |
73 | * Better support for multiple apps and mod_ruby [shugo@ruby-lang.org] |
74 | |
75 | * Escape some html in ticket listing and be able to use textile in tickets+comments |
76 | |
77 | * Added migrations for easier updates of DB. |
78 | |
79 | * Adding User roles and permissions [Dan Willemsen]. |
80 | |
81 | * Calling a model Version is a bad idea, renamed it to Release. Version causes all sorts of funny clashes with it being a reserved-ish word and all |
82 | |
83 | * ActionSubversion: Fixed so that you can't diff a dir (eg. when setting svn props on a dir in a changeset) |
84 | |
85 | * Upgraded misc. rails related files to 0.13 |
86 | |
87 | * Changed so that controller picks up if svn:mime-type prop was there and converts (using iconv) it to utf8 [shugo@ruby-lang.org] |
88 | |
89 | * Added snazzy icons for status of affected files in a changeset |
90 | |
91 | * Updated Changeset.sync_changesets to reflect the changes below |
92 | |
93 | * Added ./script/repository_syncer for syncing the repos from the commandline. |
94 | Run ./script/repository_syncer --truncate-db --reload-db to update table schemes and re-sync |
95 | |
96 | * ActionSubversion: Added so that copied & moved files/dirs gets detected properly. |
97 | Also, only copied_nodes, moved_nodes, deleted_nodes, updated_nodes & added_nodes are available as methods to get both files and dirs |
98 | |
99 | * Removed due dates in milestones (out of scope for collaboa) |
100 | |
101 | * Improved/fixed date/time display in changesets |
102 | |
103 | * Added sortable ticket tables |
104 | |
105 | * README updated to reflect the fact that we need to manually execute the SQL for creating a new admin user [Jeff Rose] |
106 | |
107 | * Updated .htaccess file [Jeff Rose] |
108 | |
109 | * Fix AdminController to delete the milestone and not the version, when clicking "delete" on a milestone |
110 | |
111 | * Make stylesheet links, image links, etc work properly in a non-vhost setup [shugo@ruby-lang.org] |
112 | |
113 | * Don't make render_diff helper go nuts when passed an empty udiff |
114 | |
115 | * HTMLescape rescue_exception_in_public output |
116 | |
117 | * Redirect to 'browse' action if no action (eg 'index') is given for RepositoryController |
118 | |
119 | * Escape log message in repos browser |
120 | |
121 | |
122 | ** 0.5 ** |
123 | |
124 | * Milestones can be set as completed within the admin ui |
125 | |
126 | * Added links to the ticket filter (open/closed with milestone) from the milestone view |
127 | |
128 | * Renamed collaboa-conf.yml to repository.yml |
129 | |
130 | * changeset logs, ticket details and ticket comments will now link to a changeset |
131 | or ticket if ticket #num or changeset #num (or changeset num, ticket num) is used |
132 | in the text. Like this: |
133 | "blabla fixed in changeset #47" |
134 | #=> blabla duplicate of <a href="example.com/tickets/42">ticket #42</a> |
135 |