Skip to content

Commit

Permalink
Added Ditz issue tracking to the repo, as well as importing all curre…
Browse files Browse the repository at this point in the history
…nt TODOs from the GitHub wiki. See task collective-1.
  • Loading branch information
ELLIOTTCABLE authored and Jed Hurt committed Apr 15, 2008
1 parent e66494c commit 7d8e668
Show file tree
Hide file tree
Showing 8 changed files with 150 additions and 0 deletions.
22 changes: 22 additions & 0 deletions bugs/issue-0d5da407b983b129b4f83b79c2092cc4a0a2824b.yaml
@@ -0,0 +1,22 @@
--- !ditz.rubyforge.org,2008-03-06/issue
title: Internal links
desc: Support [[double bracket]] style internal links
type: :feature
component: collective
release:
reporter: meekish <jed.hurt@gmail.com>
status: :unstarted
disposition:
creation_time: 2008-04-14 09:32:07.189800 Z
references: []

id: 0d5da407b983b129b4f83b79c2092cc4a0a2824b
log_events:
- - 2008-04-14 09:32:08.752583 Z
- elliottcable <git@elliottcable.name>
- created
- ""
- - 2008-04-14 09:32:42.694063 Z
- elliottcable <git@elliottcable.name>
- commented
- Extract the Page#set_slug logic to a public method so that it can be used for internal link formatting
26 changes: 26 additions & 0 deletions bugs/issue-3fdc19a7629266f2ef5df4f4c0f3ed8c7ecd3cb0.yaml
@@ -0,0 +1,26 @@
--- !ditz.rubyforge.org,2008-03-06/issue
title: Add Ditz issue tracker to repo
desc: ""
type: :feature
component: collective
release:
reporter: meekish <jed.hurt@gmail.com>
status: :paused
disposition:
creation_time: 2008-04-14 09:31:10.759756 Z
references: []

id: 3fdc19a7629266f2ef5df4f4c0f3ed8c7ecd3cb0
log_events:
- - 2008-04-14 09:31:12.041566 Z
- elliottcable <git@elliottcable.name>
- created
- ""
- - 2008-04-14 09:31:39.379589 Z
- elliottcable <git@elliottcable.name>
- changed status from unstarted to in_progress
- Forked to github.com/elliottcable/collective, now copying all the TODOs from the wiki in
- - 2008-04-14 09:36:51.701592 Z
- elliottcable <git@elliottcable.name>
- changed status from in_progress to paused
- All done! All non-completed wiki TODOs have been added as well.
18 changes: 18 additions & 0 deletions bugs/issue-b3698ffdf14f54c9e4fc9af6cd78bc902938640e.yaml
@@ -0,0 +1,18 @@
--- !ditz.rubyforge.org,2008-03-06/issue
title: Default styling
desc: ""
type: :feature
component: Styling
release:
reporter: meekish <jed.hurt@gmail.com>
status: :unstarted
disposition:
creation_time: 2008-04-14 09:30:42.612662 Z
references: []

id: b3698ffdf14f54c9e4fc9af6cd78bc902938640e
log_events:
- - 2008-04-14 09:30:43.781583 Z
- elliottcable <git@elliottcable.name>
- created
- ""
18 changes: 18 additions & 0 deletions bugs/issue-d9e9b3b8255b65417e6da1baa713a3090bd31756.yaml
@@ -0,0 +1,18 @@
--- !ditz.rubyforge.org,2008-03-06/issue
title: Purge bad code from binge, to release Collective
desc: ""
type: :bugfix
component: Quality
release:
reporter: meekish <jed.hurt@gmail.com>
status: :unstarted
disposition:
creation_time: 2008-04-14 09:29:51.367836 Z
references: []

id: d9e9b3b8255b65417e6da1baa713a3090bd31756
log_events:
- - 2008-04-14 09:29:52.627652 Z
- elliottcable <git@elliottcable.name>
- created
- ""
18 changes: 18 additions & 0 deletions bugs/issue-f0ae77e55e5254366e34057ff293ba74553ea9d8.yaml
@@ -0,0 +1,18 @@
--- !ditz.rubyforge.org,2008-03-06/issue
title: Audio code to ensure that Collective works without Defensio enabled
desc: ""
type: :feature
component: Security
release:
reporter: meekish <jed.hurt@gmail.com>
status: :unstarted
disposition:
creation_time: 2008-04-14 09:30:21.866913 Z
references: []

id: f0ae77e55e5254366e34057ff293ba74553ea9d8
log_events:
- - 2008-04-14 09:30:23.531760 Z
- elliottcable <git@elliottcable.name>
- created
- ""
14 changes: 14 additions & 0 deletions bugs/project.yaml
@@ -0,0 +1,14 @@
--- !ditz.rubyforge.org,2008-03-06/project
name: collective
version: "0.2"
components:
- !ditz.rubyforge.org,2008-03-06/component
name: collective
- !ditz.rubyforge.org,2008-03-06/component
name: Quality
- !ditz.rubyforge.org,2008-03-06/component
name: Security
- !ditz.rubyforge.org,2008-03-06/component
name: Styling
releases: []

3 changes: 3 additions & 0 deletions meta/.gitignore
@@ -0,0 +1,3 @@
coverage
issues
documentation
31 changes: 31 additions & 0 deletions tasks/ditz.rake
@@ -0,0 +1,31 @@
namespace :ditz do

desc "Show current issue status overview"
task :status do
system 'ditz status'
end
desc "Show currently open issues"
task :todo do
system 'ditz todo'
end
desc "Show recent issue activity"
task :log do
system 'ditz log'
end

# desc "Generate issues to meta/issues"
task :html do
# `'d instead of system'd, because I don't want that output cluttering shit
`ditz html meta/issues`
end
# desc "Opens meta/issues in your main browser, if you are using a Macintosh"
task :'html:open' do
system 'open ' + :meta / :issues / 'index.html' if PLATFORM['darwin']
end

# protip: Create a bash alias for this!
desc "Stage all issues to git (always run before commiting!)"
task :stage do
system 'git-add bugs/'
end
end

0 comments on commit 7d8e668

Please sign in to comment.