Commit 9cca876845b6394fc1df54457753d129e2ea8270

Blog post

Commit diff

.gitignore

 
1717log/*
1818log/route.txt
1919*.sh
20*/.LCK*
toggle raw diff

test/fixtures/article_bodies/_gitlab-rename-and-update-summary.txt

test/fixtures/article_bodies/_gitlab-rename-and-update.txt

 
0
1The project has been renamed to Gitlab (it's more meaningful and the domain was available), it will be hosted on the gitlab.org domain.
2
3I will probably fork the project from Gitorious this week and stop updating, as Gitorious is about to add Krawek's events changes which
4conflict with events in Gitlab (also I'm now using different comment and project membership models so it's getting harder
5to merge).
6
7Completed merging in Gitorious reposistory browser, source browser etc.
8Wiki CRUD is now complete and working, including syntax highlighting for most languages
9Added Journalling system that records a history of any model (e.g. ticket, wiki, article)
10Added user membership of projects
11
12
13Still to do
14
15Ticket, Forum model
16User dashboard
17Complete a lot of CRUD
toggle raw diff

test/fixtures/article_bodies/_gitlab-renamed-and-forked-summary.txt

test/fixtures/article_bodies/_gitlab-renamed-and-forked.txt

 
1<p>The project has been renamed to Gitlab (it's more meaningful and the domain was available), it will be hosted on the <a href='http://www.itlab.org'>gitlab.org</a> domain.</p>
2
3<p>I will probably fork the project from Gitorious this week and stop updating. Gitorious is about to add Krawek's events changes which
4conflict with events in Gitlab (also I'm now using different comment and project membership models so it's getting harder
5to merge).</p>
6
7<ul>
8<li>Completed merging in Gitorious reposistory browser, source browser etc.</li>
9<li>Wiki CRUD is now complete and working, including syntax highlighting for most languages</li>
10<li>Added journalling system that records a change history of any model (e.g. ticket, wiki, article)</li>
11<li>Added user membership of projects</li>
12</ul>
13
14<p>Working now on the Ticket and Forum models, the User dashboard and completing a lot of the CRUD.</p>
toggle raw diff

test/fixtures/articles.yml

 
33#
44<% fixtures :users, :categories, :projects, :journals %>
55
6A005:
7 id: 5
8 title: "Renamed and forked"
9 body: "<%= File.open("#{RAILS_ROOT}/test/fixtures/article_bodies/_gitlab-renamed-and-forked.txt",'r').read %>"
10 body_summary: "<%= File.open("#{RAILS_ROOT}/test/fixtures/article_bodies/_gitlab-renamed-and-forked.txt",'r').read %>"
11 article_type: :news
12 permalink: "gitlab-rename-and-update"
13 user_id: <%= users(:mtkd) %>
14 project_id: <%= projects(:gitlab) %>
15 audience: :public
16 status: :published
17 comment_status: :open
18 category_id: <%= categories(:none) %>
19 created_at: "2008-04-28 05:52:00"
620
721A004:
822 id: 4
923 title: "Major Refactor / Gitorious Merge"
1024 body: "<%= File.open("#{RAILS_ROOT}/test/fixtures/article_bodies/_gitlab-major-refactor-gitorious-merge.txt",'r').read %>"
1125 body_summary: "<%= File.open("#{RAILS_ROOT}/test/fixtures/article_bodies/_gitlab-major-refactor-gitorious-merge-summary.txt",'r').read %>"
12 article_type: :code
26 article_type: :news
1327 permalink: "gitlab-major-refactor-gitorious-merge"
1428 user_id: <%= users(:mtkd) %>
1529 project_id: <%= projects(:gitlab) %>
toggle raw diff