From 64a07ea6203dea55047f27d0103313a3f5bfea4d Mon Sep 17 00:00:00 2001 From: Kentaro Kuribayashi Date: Wed, 5 Nov 2008 13:51:02 +0900 Subject: [PATCH] Release 0.5 --- .ditz-config | 4 + README | 6 +- ditz.el | 7 +- html/blue-check.png | Bin 0 -> 745 bytes html/component-emacs-ditz.html | 419 ++++++++++-------- html/green-bar.png | Bin 0 -> 2953 bytes html/green-check.png | Bin 0 -> 752 bytes html/index.html | 139 +++++- ...224193897df09b58ae3181fa876abb00934f0.html | 148 ++++--- ...5db0f7686559ee9635721bc2a50e8e4a4ecbc.html | 145 +++--- ...3effe955c3240ce5dbf10f106abb1dd9512ba.html | 145 +++--- ...3336b937f24f02badd49bc545b8fc247fef4c.html | 105 +++++ ...557b035e045159203166e3294609cab145090.html | 145 +++--- ...de534d53c6ebb34006a54dcd0acf78252de1f.html | 152 ++++--- ...4dd9e965eeceef261869d99a6a0f138668e3d.html | 145 +++--- ...4c13701a917d6ec51ac6437a071889dcbc5ed.html | 145 +++--- ...de69c23d547a7a00e40e64e850517dfa04748.html | 145 +++--- ...d5faefc9c88745216729528aa3ef780d43de9.html | 109 +++++ ...36fd79b58e7a9370e3fe3a7f30154615dcd47.html | 163 +++---- ...5f5cb0c5788ef74074f2c9ff5a16e3db7c209.html | 117 +++++ ...4c1ce0b4effba53671f5ff401ce3055bdc539.html | 173 ++++---- html/red-check.png | Bin 0 -> 715 bytes html/release-0.1.html | 183 +++++--- html/release-0.2.html | 143 +++--- html/release-0.3.html | 317 ++++++++----- html/release-0.4.html | 147 +++--- html/release-0.5.html | 189 ++++++++ html/style.css | 191 ++++++-- html/unassigned.html | 18 +- html/yellow-bar.png | Bin 0 -> 2942 bytes ...3336b937f24f02badd49bc545b8fc247fef4c.yaml | 22 + ...d5faefc9c88745216729528aa3ef780d43de9.yaml | 22 + ...5f5cb0c5788ef74074f2c9ff5a16e3db7c209.yaml | 26 ++ issues/project.yaml | 13 + 34 files changed, 2453 insertions(+), 1230 deletions(-) create mode 100644 .ditz-config create mode 100644 html/blue-check.png create mode 100644 html/green-bar.png create mode 100644 html/green-check.png create mode 100644 html/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.html create mode 100644 html/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.html create mode 100644 html/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.html create mode 100644 html/red-check.png create mode 100644 html/release-0.5.html create mode 100644 html/yellow-bar.png create mode 100644 issues/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.yaml create mode 100644 issues/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.yaml create mode 100644 issues/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.yaml diff --git a/.ditz-config b/.ditz-config new file mode 100644 index 0000000..a29942a --- /dev/null +++ b/.ditz-config @@ -0,0 +1,4 @@ +--- !ditz.rubyforge.org,2008-03-06/config +name: antipop +email: kentarok@gmail.com +issue_dir: issues diff --git a/README b/README index 6527052..cbd3bf8 100644 --- a/README +++ b/README @@ -41,14 +41,16 @@ system. You can get Ditz from http://ditz.rubyforge.org/. (7) Run M-x ditz-add to add a new issue -(8) M-x ditz-status, ditz-todo, ditz-todo, ditz-log are useful for - browsing your issues. +(8) M-x ditz-status, ditz-todo, ditz-log are useful for browsing your + issues. (9) To change issues/releases' status: [1] Run M-x ditz-todo to list issues up. [2] Enter the keys below on underlined strings: + - "A": ditz-add (Add issue) + - "D": ditz-drop (Drop issue) - "s": ditz-show (Show issue's detail) - "e": ditz-edit (Edit issue's detail) - "a": ditz-assign (Assign/reassign issue to a release) diff --git a/ditz.el b/ditz.el index 2341286..d1e7505 100644 --- a/ditz.el +++ b/ditz.el @@ -50,7 +50,7 @@ must set it from minibuffer." (defconst ditz-issue-id-regex "^[_ ]+\\([^:\n]+\\):.*$" "Regex for issue id.") -(defconst ditz-release-name-regex "^Version *\\([^\n ]+\\) *.*$" +(defconst ditz-release-name-regex "^\\(Version \\)?\\([^\n ]+\\) *.*$" "Regex for issue id.") ;; Commands @@ -107,7 +107,6 @@ must set it from minibuffer." (ditz-call-process "assign" issue-id "switch") (error "Issue id not found")))) -;; Doesn't work now (defun ditz-edit () "Edit issue detale." (interactive) @@ -140,7 +139,7 @@ must set it from minibuffer." "Mark issues as released." (interactive) (let ((release-name nil)) - (setq release-name (ditz-extract-thing-at-point ditz-release-name-regex 1)) + (setq release-name (ditz-extract-thing-at-point ditz-release-name-regex 2)) (if release-name (ditz-call-process "release" release-name "switch") (error "Release name not found")))) @@ -240,7 +239,7 @@ must set it from minibuffer." (setq ditz-last-visited-issue-directory issue-directory) (mapconcat 'identity - (list ditz-program command arg "-i" issue-directory) " "))) + (list ditz-program "-i" issue-directory command arg) " "))) ;; Hooks (defvar ditz-mode-hook nil diff --git a/html/blue-check.png b/html/blue-check.png new file mode 100644 index 0000000000000000000000000000000000000000..d98cfeed9e7a971d51954193420ac4089f1fb1d4 GIT binary patch literal 745 zcmV(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;Z%IT!RCwB?lRHclQ51&1J2Sf**^LMiN!BF+14@jE5Q5QA5F07zhy~afW5UZv ztA!P@(1gktU}LN(umYRa!bhQo4dD?bK*A$&L|vB=SaxP-W@oPjFkzwePfl@9{`2MB z-1`eDB|->x)i^jA1UiAsz=fUmXW$j^Jkee6?0Th?h`oTu!O2cl5kt+j6`YEdQdY8U zO#Ov<-QdIAcf7ppN_5vhKLBVLnCLAH7d^dtu@)}?8!p)1HXx)zaR5{oUcQ^d$e1@K zdK#YjfOA7rK~)j<%}Zx7fK3;qq(DNz;Q*8ZPu@)9bZ{;vF%PX{b6@f)Jt| zKm$-ztsxN9SYOLCyR_=BeX=Ub!tyHdj+ozD&*X_7)lgKe!3O|1IfqIn( zzKx`F&{AB-#d_4Nl_N^2&>?_F0CU!0caihiEX>M zu1i>jvXDn&CB=My?|=`$O0F4;GktGob*hhOM8g_EMba{?lgoJo6-hL#QGG-5f5js0PR+^`(vFZ|{D*xcdlL0y5iC*cYZ91%U`q3>@0&S-=Lc1sqJ{ b|LETUZs0h~dCi@c00000NkvXXu0mjfKT1Zd literal 0 HcmV?d00001 diff --git a/html/component-emacs-ditz.html b/html/component-emacs-ditz.html index 883ed35..4a81338 100644 --- a/html/component-emacs-ditz.html +++ b/html/component-emacs-ditz.html @@ -1,222 +1,251 @@ + + + Component emacs-ditz - + -« emacs-ditz project page +

emacs-ditz component: emacs-ditz

+ +

All issues

- - - - - - + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- closed: fixed - - create ditz.el - - - - - in release 0.1 - (released) - +
fixed 2008-11-05 + Release 0.5
- closed: fixed - - write README - - - - - in release 0.1 - (released) - + + + + + 0.5 + +
fixed 2008-11-05 + Adopt a patch from id:t-wada
- closed: fixed - - support `ditz html' command - - - - - in release 0.2 - (released) - + + + + + 0.5 + +
fixed 2008-11-05 + Accept a pull-request from rmm5t
- closed: fixed - - Better window handling (popup/display/switch) - - - - - in release 0.3 - (released) - + + + + + 0.5 + +
fixed 2008-04-11 + Show prompt to set issue dir after failing to find dir in auto-finding mode.
- closed: fixed - - Add support for `ditz edit' command - - - - - in release 0.3 - (released) - + + + + + 0.4 + +
fixed 2008-04-11 + Confirm if ditz-edit works correctly.
- closed: fixed - - Add documentation of ditz-edit command into README - - - - - in release 0.3 - (released) - + + + + + 0.3 + +
fixed 2008-04-11 + ditz-add/add-release should run using switch-to-buffer in ditz-mode window.
- closed: fixed - - goto-char properly should run after ditz-log/status/todo. - (bug) - - - - in release 0.3 - (released) - + + + + + 0.3 + +
fixed 2008-04-11 + goto-char properly should run after ditz-log/status/todo.
- closed: fixed - - ditz-add/add-release should run using switch-to-buffer in ditz-mode window. - - - - - in release 0.3 - (released) - + + + + + 0.3 + +
fixed 2008-04-11 + Add documentation of ditz-edit command into README
- closed: fixed - - Confirm if ditz-edit works correctly. - - - - - in release 0.3 - (released) - + + + + + 0.3 + +
fixed 2008-04-11 + Add support for `ditz edit' command
- closed: fixed - - Show prompt to set issue dir after failing to find dir in auto-finding mode. - (bug) - - - - in release 0.4 - (released) - + + + + + 0.3 + +
fixed 2008-04-11 + Better window handling (popup/display/switch)
+ + + 0.3 + +
fixed 2008-04-10 + support `ditz html' command + + + + 0.2 + +
fixed 2008-04-10 + write README + + + + 0.1 + +
fixed 2008-04-10 + create ditz.el + + + + 0.1 + +
- -
+ diff --git a/html/green-bar.png b/html/green-bar.png new file mode 100644 index 0000000000000000000000000000000000000000..82e770c9b4d5b2e2f184d2ba5cddf12b837a44c7 GIT binary patch literal 2953 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 literal 0 HcmV?d00001 diff --git a/html/green-check.png b/html/green-check.png new file mode 100644 index 0000000000000000000000000000000000000000..fc5029a25f4417ad92afa7489f464874dc3318df GIT binary patch literal 752 zcmV(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;c1c7*RCwB?lTAoeQ5c4wGk2VE(s3N6G)+pYjcFT2iI8xUB#|3YcWp$mz?IZO zSK_9YK}q7KU52X+0|{Dagx0{|UpUcV)RYchW}N?f?%cU8)Qh9bUicR0<@+Aa$2qSs zO%ovmN9vt#bN~ZDH*n+7{tV0lQ!|}w@~GD|O~i3P?|kEcB9xa67h1V^{xYTIUI3zM zgr9$Zu>N})!!!nGI@hL70eapwJaD@_&u=$(Ly19}1X(ly>^N~z3^9d;ud~F{`w!pT zU4LN#`rco6C_>ThwcaOPvX5rOG0B$zoQfM)%){H|R~V+@e0^tC+5oaLH&kEMj8+&Y zo>I{?4SAxz_?KDoeLyRWQ(x6gR_2BPYydVP`YOw6h-OqWGJ__yyjuO{XS!vP>6S&J z8I{Vi8f-%J9jpfkyJ#wK+DW8h1Vi7gYhS9aV>=XNx@FPw5~&!at_p-*G+6)uJ)1?- z(s|AOD{Xn_v0x91O+g~TG<9nQJ#B2Hl1Xwo7}@Hw296JpY;}>*HF8-PHw$PUh25xSHNuXW_T!0=iJQfAPl#F;B%FS0{2oSL%$3!~eU0o9M&@Z!LQE_DWd z?Enn=+R>y$mpTqyxD77>)z8A{_M`D41p*Tjn=VLbQG(G8e)-fVpTKKLdh5@*oN)!gMGHPz-ng*P)jN i_JIU&I*tFMe**wrqevEjZknS20000 + + emacs-ditz Issue Tracker - + +

emacs-ditz Issue Tracker

Upcoming Releases

@@ -15,28 +20,134 @@

Upcoming Releases

Past Releases

- + + + + + + + + + + + + + + +
0.5on 2008-11-05
0.4on 2008-04-11
0.3on 2008-04-11
0.2on 2008-04-10
0.1on 2008-04-10

Unassigned issues

- No unassigned issues; no open. + + No unassigned issues. +

-

Recent activity

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2008-11-05 + Release 0.5 fixed + closed with disposition fixed
2008-11-05 + Release 0.5 fixed + edited description
2008-11-05 + Release 0.5 fixed + created
2008-11-05 + Adopt a patch from id:t-wada fixed + closed with disposition fixed
2008-11-05 + Adopt a patch from id:t-wada fixed + created
2008-11-05 + Accept a pull-request from rmm5t fixed + closed with disposition fixed
2008-11-05 + Accept a pull-request from rmm5t fixed + created
2008-04-11 + Show prompt to set issue dir after failing to find dir in auto-finding mode. fixed + closed issue with disposition fixed
2008-04-11 + Show prompt to set issue dir after failing to find dir in auto-finding mode. fixed + created
2008-04-11 + Confirm if ditz-edit works correctly. fixed + closed issue with disposition fixed
+ +
+ + diff --git a/html/issue-057224193897df09b58ae3181fa876abb00934f0.html b/html/issue-057224193897df09b58ae3181fa876abb00934f0.html index b6416b7..67b5b57 100644 --- a/html/issue-057224193897df09b58ae3181fa876abb00934f0.html +++ b/html/issue-057224193897df09b58ae3181fa876abb00934f0.html @@ -1,97 +1,109 @@ + + + Better window handling (popup/display/switch) - + -« emacs-ditz project page +

Better window handling (popup/display/switch)

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:057224193897df09b58ae3181fa876abb00934f0
Type:feature
Creation time:Fri Apr 11 07:21:24 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:057224193897df09b58ae3181fa876abb00934f0
Type:feature
Creation time:2008-04-11 07:21 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.3 +
Release: - (released 2008-04-11) + 0.3 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
+ + + + + Component: + emacs-ditz + + + + Status: + + closed: fixed + fixed + + -

Issue log

+ + + - - +

Issue log

- - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + -

Issue log

+ + +
Fri Apr 11 07:21:25 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- + + + + + + + + - - - - - - - - - - -

now ditz-todo/log/status run display-window not pop-to-window.

+ + + + + + + - - + + +
2008-04-11 07:24 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
Fri Apr 11 07:24:03 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+
+ now ditz-todo/log/status run display-window not pop-to-window. +
2008-04-11 07:21 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-1bc5db0f7686559ee9635721bc2a50e8e4a4ecbc.html b/html/issue-1bc5db0f7686559ee9635721bc2a50e8e4a4ecbc.html index 685251f..f179bbe 100644 --- a/html/issue-1bc5db0f7686559ee9635721bc2a50e8e4a4ecbc.html +++ b/html/issue-1bc5db0f7686559ee9635721bc2a50e8e4a4ecbc.html @@ -1,96 +1,105 @@ + + + support `ditz html' command - + -« emacs-ditz project page +

support `ditz html' command

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:1bc5db0f7686559ee9635721bc2a50e8e4a4ecbc
Type:feature
Creation time:Thu Apr 10 22:39:25 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:1bc5db0f7686559ee9635721bc2a50e8e4a4ecbc
Type:feature
Creation time:2008-04-10 22:39 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.2 +
Release: - (released 2008-04-10) + 0.2 + + (released 2008-04-10) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

- - - + + + + + + + + + + + + - - - - - - - + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
Thu Apr 10 22:39:26 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
-
Thu Apr 10 22:47:17 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+

Issue log

+ + + + + + + + + + + + + + + + - - + + +
2008-04-10 22:47 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-10 22:39 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-3123effe955c3240ce5dbf10f106abb1dd9512ba.html b/html/issue-3123effe955c3240ce5dbf10f106abb1dd9512ba.html index b1f773e..c7d69cf 100644 --- a/html/issue-3123effe955c3240ce5dbf10f106abb1dd9512ba.html +++ b/html/issue-3123effe955c3240ce5dbf10f106abb1dd9512ba.html @@ -1,96 +1,105 @@ + + + Confirm if ditz-edit works correctly. - + -« emacs-ditz project page +

Confirm if ditz-edit works correctly.

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:3123effe955c3240ce5dbf10f106abb1dd9512ba
Type:feature
Creation time:Fri Apr 11 10:48:42 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:3123effe955c3240ce5dbf10f106abb1dd9512ba
Type:feature
Creation time:2008-04-11 10:48 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.3 +
Release: - (released 2008-04-11) + 0.3 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

- - - + + + + + + + + + + + + - - - - - - - + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
Fri Apr 11 10:48:43 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
-
Fri Apr 11 10:49:40 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+

Issue log

+ + + + + + + + + + + + + + + + - - + + +
2008-04-11 10:49 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-11 10:48 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.html b/html/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.html new file mode 100644 index 0000000..d278825 --- /dev/null +++ b/html/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.html @@ -0,0 +1,105 @@ + + + + + +Adopt a patch from id:t-wada + + + + + + +
+ +

Adopt a patch from id:t-wada

+ + + + +

Details

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Id:44d3336b937f24f02badd49bc545b8fc247fef4c
Type:bugfix
Creation time:2008-11-05 03:52 UTC
Creator:antipop <kentarok@...>
Release: + + 0.5 + + (released 2008-11-05) + + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
+ + + +

Issue log

+ + + + + + + + + + + + + + + + + + + + + +
2008-11-05 03:55 UTCantipop <kentarok@...>closed with disposition fixed
2008-11-05 03:52 UTCantipop <kentarok@...>created
+ +
+ + + + diff --git a/html/issue-637557b035e045159203166e3294609cab145090.html b/html/issue-637557b035e045159203166e3294609cab145090.html index 2a90350..cec014d 100644 --- a/html/issue-637557b035e045159203166e3294609cab145090.html +++ b/html/issue-637557b035e045159203166e3294609cab145090.html @@ -1,96 +1,105 @@ + + + write README - + -« emacs-ditz project page +

write README

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:637557b035e045159203166e3294609cab145090
Type:feature
Creation time:Thu Apr 10 20:27:30 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:637557b035e045159203166e3294609cab145090
Type:feature
Creation time:2008-04-10 20:27 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.1 +
Release: - (released 2008-04-10) + 0.1 + + (released 2008-04-10) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

- - - + + + + + + + + + + + + - - - - - - - + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
Thu Apr 10 20:27:32 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
-
Thu Apr 10 20:32:52 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+

Issue log

+ + + + + + + + + + + + + + + + - - + + +
2008-04-10 20:32 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-10 20:27 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-7ccde534d53c6ebb34006a54dcd0acf78252de1f.html b/html/issue-7ccde534d53c6ebb34006a54dcd0acf78252de1f.html index 56836a2..c61583c 100644 --- a/html/issue-7ccde534d53c6ebb34006a54dcd0acf78252de1f.html +++ b/html/issue-7ccde534d53c6ebb34006a54dcd0acf78252de1f.html @@ -1,97 +1,113 @@ + + + goto-char properly should run after ditz-log/status/todo. - + -« emacs-ditz project page +

goto-char properly should run after ditz-log/status/todo.

+ + + +
+

If the result these commands give is too long, the newest line goes away above the screen. (goto-char (point-min)) should work well.

+
-

If the result these commands give is too long, the newest line goes away above the screen. (goto-char (point-min)) should work well.

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:7ccde534d53c6ebb34006a54dcd0acf78252de1f
Type:bugfix
Creation time:Fri Apr 11 10:08:44 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:7ccde534d53c6ebb34006a54dcd0acf78252de1f
Type:bugfix
Creation time:2008-04-11 10:08 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.3 +
Release: - (released 2008-04-11) + 0.3 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
+
Component:emacs-ditz
Status: + closed: fixed + fixed +
- - +

Issue log

- - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + -
Fri Apr 11 10:08:45 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- + + + + + + + + - - - - - - - - - - -

Reverted ditz-todo/log to popup window.

+ + + + + + + - - + + +
2008-04-11 10:30 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
Fri Apr 11 10:30:53 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+
+ Reverted ditz-todo/log to popup window. +
2008-04-11 10:08 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-89b4dd9e965eeceef261869d99a6a0f138668e3d.html b/html/issue-89b4dd9e965eeceef261869d99a6a0f138668e3d.html index fb3a494..8e9fcc5 100644 --- a/html/issue-89b4dd9e965eeceef261869d99a6a0f138668e3d.html +++ b/html/issue-89b4dd9e965eeceef261869d99a6a0f138668e3d.html @@ -1,96 +1,105 @@ + + + Show prompt to set issue dir after failing to find dir in auto-finding mode. - + -« emacs-ditz project page +

Show prompt to set issue dir after failing to find dir in auto-finding mode.

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:89b4dd9e965eeceef261869d99a6a0f138668e3d
Type:bugfix
Creation time:Fri Apr 11 13:02:26 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:89b4dd9e965eeceef261869d99a6a0f138668e3d
Type:bugfix
Creation time:2008-04-11 13:02 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.4 +
Release: - (released 2008-04-11) + 0.4 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

- - - + + + + + + + + + + + + - - - - - - - + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
Fri Apr 11 13:02:27 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
-
Fri Apr 11 13:18:41 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+

Issue log

+ + + + + + + + + + + + + + + + - - + + +
2008-04-11 13:18 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-11 13:02 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-a384c13701a917d6ec51ac6437a071889dcbc5ed.html b/html/issue-a384c13701a917d6ec51ac6437a071889dcbc5ed.html index 1b20c82..613ceb4 100644 --- a/html/issue-a384c13701a917d6ec51ac6437a071889dcbc5ed.html +++ b/html/issue-a384c13701a917d6ec51ac6437a071889dcbc5ed.html @@ -1,96 +1,105 @@ + + + create ditz.el - + -« emacs-ditz project page +

create ditz.el

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:a384c13701a917d6ec51ac6437a071889dcbc5ed
Type:feature
Creation time:Thu Apr 10 20:27:09 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:a384c13701a917d6ec51ac6437a071889dcbc5ed
Type:feature
Creation time:2008-04-10 20:27 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.1 +
Release: - (released 2008-04-10) + 0.1 + + (released 2008-04-10) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

- - - + + + + + + + + + + + + - - - - - - - + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
Thu Apr 10 20:27:10 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
-
Thu Apr 10 20:32:45 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+

Issue log

+ + + + + + + + + + + + + + + + - - + + +
2008-04-10 20:32 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-10 20:27 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-a75de69c23d547a7a00e40e64e850517dfa04748.html b/html/issue-a75de69c23d547a7a00e40e64e850517dfa04748.html index f347f49..8c5b0c9 100644 --- a/html/issue-a75de69c23d547a7a00e40e64e850517dfa04748.html +++ b/html/issue-a75de69c23d547a7a00e40e64e850517dfa04748.html @@ -1,96 +1,105 @@ + + + Add documentation of ditz-edit command into README - + -« emacs-ditz project page +

Add documentation of ditz-edit command into README

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:a75de69c23d547a7a00e40e64e850517dfa04748
Type:feature
Creation time:Fri Apr 11 10:05:18 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:a75de69c23d547a7a00e40e64e850517dfa04748
Type:feature
Creation time:2008-04-11 10:05 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.3 +
Release: - (released 2008-04-11) + 0.3 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

- - - + + + + + + + + + + + + - - - - - - - + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
Fri Apr 11 10:05:20 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
-
Fri Apr 11 10:12:37 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+

Issue log

+ + + + + + + + + + + + + + + + - - + + +
2008-04-11 10:12 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-11 10:05 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.html b/html/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.html new file mode 100644 index 0000000..3b001b3 --- /dev/null +++ b/html/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.html @@ -0,0 +1,109 @@ + + + + + +Accept a pull-request from rmm5t + + + + + + +
+ +

Accept a pull-request from rmm5t

+ + + +
+

http://github.com/rmm5t/emacs-ditz/tree/master

+
+ + +

Details

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Id:c1ed5faefc9c88745216729528aa3ef780d43de9
Type:task
Creation time:2008-11-05 03:49 UTC
Creator:antipop <kentarok@...>
Release: + + 0.5 + + (released 2008-11-05) + + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
+ + + +

Issue log

+ + + + + + + + + + + + + + + + + + + + + +
2008-11-05 03:51 UTCantipop <kentarok@...>closed with disposition fixed
2008-11-05 03:49 UTCantipop <kentarok@...>created
+ +
+ + + + diff --git a/html/issue-cbc36fd79b58e7a9370e3fe3a7f30154615dcd47.html b/html/issue-cbc36fd79b58e7a9370e3fe3a7f30154615dcd47.html index e83dfbe..1d662ab 100644 --- a/html/issue-cbc36fd79b58e7a9370e3fe3a7f30154615dcd47.html +++ b/html/issue-cbc36fd79b58e7a9370e3fe3a7f30154615dcd47.html @@ -1,108 +1,113 @@ + + + Add support for `ditz edit' command - + -« emacs-ditz project page +

Add support for `ditz edit' command

+ + -

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:cbc36fd79b58e7a9370e3fe3a7f30154615dcd47
Type:feature
Creation time:Fri Apr 11 10:03:01 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:cbc36fd79b58e7a9370e3fe3a7f30154615dcd47
Type:feature
Creation time:2008-04-11 10:03 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.3 +
Release: - (released 2008-04-11) + 0.3 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
- -

Issue log

+
Component:emacs-ditz
Status: + closed: fixed + fixed +
- - - - - - - - - - - - + +
Fri Apr 11 10:03:03 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -
- Fri Apr 11 10:03:41 UTC 2008 - Kentaro Kuribayashi <kentarok@...> - assigned to release 0.3 from unassigned - - - - - - +

Issue log

- Fri Apr 11 10:12:27 UTC 2008 - Kentaro Kuribayashi <kentarok@...> - closed issue with disposition fixed - - + + + + + + + + + + + + + + + - - + + + + + + + + + + +
2008-04-11 10:12 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
2008-04-11 10:03 UTCKentaro Kuribayashi <kentarok@...>assigned to release 0.3 from unassigned
2008-04-11 10:03 UTCKentaro Kuribayashi <kentarok@...>created
-
+ + diff --git a/html/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.html b/html/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.html new file mode 100644 index 0000000..298ebe9 --- /dev/null +++ b/html/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.html @@ -0,0 +1,117 @@ + + + + + +Release 0.5 + + + + + + +
+ +

Release 0.5

+ + + +
+

test

+
+ + +

Details

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Id:e205f5cb0c5788ef74074f2c9ff5a16e3db7c209
Type:task
Creation time:2008-11-05 04:39 UTC
Creator:antipop <kentarok@...>
Release: + + 0.5 + + (released 2008-11-05) + + +
Component:emacs-ditz
Status: + closed: fixed + fixed +
+ + + +

Issue log

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2008-11-05 04:46 UTCantipop <kentarok@...>closed with disposition fixed
2008-11-05 04:42 UTCantipop <kentarok@...>edited description
2008-11-05 04:39 UTCantipop <kentarok@...>created
+ +
+ + + + diff --git a/html/issue-f7e4c1ce0b4effba53671f5ff401ce3055bdc539.html b/html/issue-f7e4c1ce0b4effba53671f5ff401ce3055bdc539.html index bea02e3..9ebdf48 100644 --- a/html/issue-f7e4c1ce0b4effba53671f5ff401ce3055bdc539.html +++ b/html/issue-f7e4c1ce0b4effba53671f5ff401ce3055bdc539.html @@ -1,110 +1,125 @@ + + + ditz-add/add-release should run using switch-to-buffer in ditz-mode window. - + -« emacs-ditz project page +

ditz-add/add-release should run using switch-to-buffer in ditz-mode window.

+ + + +
+

Works fine?

+
-

Works fine?

+

Details

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + - - - - - - - - - - - -
Id:f7e4c1ce0b4effba53671f5ff401ce3055bdc539
Type:feature
Creation time:Fri Apr 11 10:10:46 UTC 2008
Creator:Kentaro Kuribayashi <kentarok@...>
Id:f7e4c1ce0b4effba53671f5ff401ce3055bdc539
Type:feature
Creation time:2008-04-11 10:10 UTC
Creator:Kentaro Kuribayashi <kentarok@...>
Release: - - 0.3 +
Release: - (released 2008-04-11) + 0.3 + + (released 2008-04-11) + - -
Component:emacs-ditz
Status: - closed: fixed -
+ + + + + Component: + emacs-ditz + + + + Status: + + closed: fixed + fixed + + -

Issue log

+ + + - - +

Issue log

- - - - - +

Release log

+
Fri Apr 11 10:10:48 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- + + + + + + + + - - - - - - - - - - -

Those commands now check if being in ditz-mode buffer or other.

+ + + + + + + - - - - - - - - - - -

Good!

+ + + + + + + - - + + +
2008-04-11 10:49 UTCKentaro Kuribayashi <kentarok@...>changed description
Fri Apr 11 10:32:18 UTC 2008Kentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
+
+ Good! +
2008-04-11 10:32 UTCKentaro Kuribayashi <kentarok@...>closed issue with disposition fixed
Fri Apr 11 10:49:11 UTC 2008Kentaro Kuribayashi <kentarok@...>changed description
+
+ Those commands now check if being in ditz-mode buffer or other. +
2008-04-11 10:10 UTCKentaro Kuribayashi <kentarok@...>created
- + diff --git a/html/red-check.png b/html/red-check.png new file mode 100644 index 0000000000000000000000000000000000000000..4f7e3c06c7072ab8bd2992ec1db3040dde5bb9ff GIT binary patch literal 715 zcmV;+0yO=JP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;QAtEWRCwB?lRr#TaS+Ep?@wES8fe1+O&LfK8xlI{8g*x!>LAes`A> z9LM3)^m+c07Z?Ms02iyicfd2?5un!sqjMjSsn?hwN=semVg$QSL$JN#RSsjy*PU4M zg$#jkH;MS`5#XK-AWPza?D1e{a$uW;Z@p*; zu%AqWVIl`Y$dWivH$=zKDVJ2ROqyt{vZf+RG9ImjW7&oaP<3-lEf%8ywyyDW{wn{H z*mM$8RnaVa*9D|=>Pjx1injXwl=E3|?8e!G$cZ*T`E-hOPF-=gFuA<5c(@(MYHkN# z3x;7}=;eAd4DhvJHMeuP9cOZRXVC>@AiJ4VW>V{G$Q?b%!4Qt*#j;E+%fykq$iWbD zM-Qp>H8zvVOa`)U3ma2|djEWU_Tgp2ccG--2%d`K>x>}F0^nd;0;Qb7_qVIO|MKJR z_-bNyV`@;Z+X7G=UrpSG#M3*MQrG)BTVq{;mL7oAQE_i;KmY3H%WwCAJ)r20<@h!B x&&R!hA7}-4qZ*J0e$^`1u2FCthyT&<0RU|@782+2Qd0l`002ovPDHLkV1n3wH?;r& literal 0 HcmV?d00001 diff --git a/html/release-0.1.html b/html/release-0.1.html index c3771ad..b9d3ca0 100644 --- a/html/release-0.1.html +++ b/html/release-0.1.html @@ -1,100 +1,153 @@ + + + emacs-ditz release 0.1 - + -« emacs-ditz project page +

emacs-ditz release 0.1

+ -

- - - - - + - - + + - - - - - + + + + + + + + + + +
Status:released
Release time:Thu Apr 10 20:33:03 UTC 2008Status:released
Completion:100%
Release time:2008-04-10 20:33 UTC
Completion: + +                                                    + 100% +
+ 2 / 2 issues +
-

Issues

- - - - + + + + + - - - - - - - - - - - - + + + + + + + + + + +
- closed: fixed - - create ditz.el +
fixed 2008-04-10 + write README +
- closed: fixed - - write README -
fixed 2008-04-10 + create ditz.el +
-

Release log

- - - - - - - - - - +

Recent activity for this release

+
Thu Apr 10 20:26:45 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- -

Initial release

- -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2008-04-10 + write README fixed + closed issue with disposition fixed
2008-04-10 + create ditz.el fixed + closed issue with disposition fixed
2008-04-10 + write README fixed + created
2008-04-10 + create ditz.el fixed + created
+

Release log

+ + - + + + + + + + - - - - - + + + + + + + +
Thu Apr 10 20:33:03 UTC 2008Kentaro Kuribayashi <kentarok@...>released
+ + Initial release + +
Thu Apr 10 20:33:03 UTC 2008Kentaro Kuribayashi <kentarok@...>released
- -

Initial release

- -
Thu Apr 10 20:26:45 UTC 2008Kentaro Kuribayashi <kentarok@...>created
+ + Initial release + +
-
+ diff --git a/html/release-0.2.html b/html/release-0.2.html index ccf20be..a1bea44 100644 --- a/html/release-0.2.html +++ b/html/release-0.2.html @@ -1,87 +1,124 @@ + + + emacs-ditz release 0.2 - + -« emacs-ditz project page +

emacs-ditz release 0.2

+ -

- - - - - + - - + + - - - - - + + + + + + + + + + +
Status:released
Release time:Thu Apr 10 22:47:34 UTC 2008Status:released
Completion:100%
Release time:2008-04-10 22:47 UTC
Completion: + +                                                    + 100% +
+ 1 / 1 issues +
-

Issues

- - - - + + + + + - - - - - + + + +
- closed: fixed - - support `ditz html' command +
fixed 2008-04-10 + support `ditz html' command +
-

Release log

- - - - - - - - - - +

Recent activity for this release

+
Thu Apr 10 22:38:55 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- - -
+ + + + + + + + + + + + + + + + + +
2008-04-10 + support `ditz html' command fixed + closed issue with disposition fixed
2008-04-10 + support `ditz html' command fixed + created
+

Release log

+ + - + + + + + + + - - - - - + + + + + + + +
Thu Apr 10 22:47:34 UTC 2008Kentaro Kuribayashi <kentarok@...>released
+ + release 0.2 + +
Thu Apr 10 22:47:34 UTC 2008Kentaro Kuribayashi <kentarok@...>released
- -

release 0.2

- -
Thu Apr 10 22:38:55 UTC 2008Kentaro Kuribayashi <kentarok@...>created
+ + +
-
+ diff --git a/html/release-0.3.html b/html/release-0.3.html index 4ef7db5..c5e5def 100644 --- a/html/release-0.3.html +++ b/html/release-0.3.html @@ -1,147 +1,246 @@ + + + emacs-ditz release 0.3 - + -« emacs-ditz project page +

emacs-ditz release 0.3

+ -

- - - - - + - - + + - - - - - + + + + + + + + + + +
Status:released
Release time:Fri Apr 11 10:50:46 UTC 2008Status:released
Completion:100%
Release time:2008-04-11 10:50 UTC
Completion: + +                                                    + 100% +
+ 6 / 6 issues +
-

Issues

- - - - + + + + + - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- closed: fixed - - Better window handling (popup/display/switch) +
fixed 2008-04-11 + Confirm if ditz-edit works correctly. +
- closed: fixed - - Add support for `ditz edit' command -
- closed: fixed - - Add documentation of ditz-edit command into README +
fixed 2008-04-11 + ditz-add/add-release should run using switch-to-buffer in ditz-mode window. +
- closed: fixed - - goto-char properly should run after ditz-log/status/todo. - (bug) -
- closed: fixed - - ditz-add/add-release should run using switch-to-buffer in ditz-mode window. -
- closed: fixed - - Confirm if ditz-edit works correctly. +
fixed 2008-04-11 + goto-char properly should run after ditz-log/status/todo. +
fixed 2008-04-11 + Add documentation of ditz-edit command into README +
fixed 2008-04-11 + Add support for `ditz edit' command +
fixed 2008-04-11 + Better window handling (popup/display/switch) +
-

Release log

- - - - - - - - - - +

Recent activity for this release

+
Fri Apr 11 10:03:23 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2008-04-11 + Confirm if ditz-edit works correctly. fixed + closed issue with disposition fixed
2008-04-11 + ditz-add/add-release should run using switch-to-buffer in ditz-mode window. fixed + changed description
2008-04-11 + Confirm if ditz-edit works correctly. fixed + created
2008-04-11 + ditz-add/add-release should run using switch-to-buffer in ditz-mode window. fixed + closed issue with disposition fixed
2008-04-11 + goto-char properly should run after ditz-log/status/todo. fixed + closed issue with disposition fixed
2008-04-11 + Add documentation of ditz-edit command into README fixed + closed issue with disposition fixed
2008-04-11 + Add support for `ditz edit' command fixed + closed issue with disposition fixed
2008-04-11 + ditz-add/add-release should run using switch-to-buffer in ditz-mode window. fixed + created
2008-04-11 + goto-char properly should run after ditz-log/status/todo. fixed + created
2008-04-11 + Add documentation of ditz-edit command into README fixed + created
+

Release log

+ + - + + + + + + + - - - - - + + + + + + + +
Fri Apr 11 10:50:46 UTC 2008Kentaro Kuribayashi <kentarok@...>released
+ + release 0.3 + +
Fri Apr 11 10:50:46 UTC 2008Kentaro Kuribayashi <kentarok@...>released
- -

release 0.3

- -
Fri Apr 11 10:03:23 UTC 2008Kentaro Kuribayashi <kentarok@...>created
+ + +
-
+ diff --git a/html/release-0.4.html b/html/release-0.4.html index ca687fe..dbe9c9f 100644 --- a/html/release-0.4.html +++ b/html/release-0.4.html @@ -1,87 +1,124 @@ + + + emacs-ditz release 0.4 - + -« emacs-ditz project page +

emacs-ditz release 0.4

+ -

- - - - - + - - + + - - - - - + + + + + + + + + + +
Status:released
Release time:Fri Apr 11 13:18:54 UTC 2008Status:released
Completion:100%
Release time:2008-04-11 13:18 UTC
Completion: + +                                                    + 100% +
+ 1 / 1 issues +
-

Issues

- - - - - - - - + + + + + + + + + + +
- closed: fixed - - Show prompt to set issue dir after failing to find dir in auto-finding mode. - (bug) -
fixed 2008-04-11 + Show prompt to set issue dir after failing to find dir in auto-finding mode. +
-

Release log

- - - - - - - - - - - +

Recent activity for this release

+
Fri Apr 11 12:12:15 UTC 2008Kentaro Kuribayashi <kentarok@...>created
- - -
+ + + + + + + + + + + + + + + + + +
2008-04-11 + Show prompt to set issue dir after failing to find dir in auto-finding mode. fixed + closed issue with disposition fixed
2008-04-11 + Show prompt to set issue dir after failing to find dir in auto-finding mode. fixed + created
-
+ - - - - - + + + + + + + + + + + + + + + +
Fri Apr 11 13:18:54 UTC 2008Kentaro Kuribayashi <kentarok@...>released
- -

release 0.4

- -
Fri Apr 11 13:18:54 UTC 2008Kentaro Kuribayashi <kentarok@...>released
+ + release 0.4 + +
Fri Apr 11 12:12:15 UTC 2008Kentaro Kuribayashi <kentarok@...>created
+ + +
-
+ diff --git a/html/release-0.5.html b/html/release-0.5.html new file mode 100644 index 0000000..4b7c6c9 --- /dev/null +++ b/html/release-0.5.html @@ -0,0 +1,189 @@ + + + + + +emacs-ditz release 0.5 + + + + + +
+ +

emacs-ditz release 0.5

+ + + + + + + + + + + + + + + + + + + + +
Status:released
Release time:2008-11-05 04:46 UTC
Completion: + +                                                    + 100% +
+ 3 / 3 issues +
+ +

Issues

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fixed 2008-11-05 + Release 0.5 +
fixed 2008-11-05 + Adopt a patch from id:t-wada +
fixed 2008-11-05 + Accept a pull-request from rmm5t +
+ + + + +

Recent activity for this release

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2008-11-05 + Release 0.5 fixed + closed with disposition fixed
2008-11-05 + Release 0.5 fixed + edited description
2008-11-05 + Release 0.5 fixed + created
2008-11-05 + Adopt a patch from id:t-wada fixed + closed with disposition fixed
2008-11-05 + Adopt a patch from id:t-wada fixed + created
2008-11-05 + Accept a pull-request from rmm5t fixed + closed with disposition fixed
2008-11-05 + Accept a pull-request from rmm5t fixed + created
+ +

Release log

+ + + + + + + + + + + + + + + + + + + + +
Wed Nov 05 04:46:42 UTC 2008antipop <kentarok@...>released
+ + Released 0.5 + +
Wed Nov 05 03:47:09 UTC 2008antipop <kentarok@...>created
+ + +
+ +
+ + + + diff --git a/html/style.css b/html/style.css index 8838f5d..5d4d3e6 100644 --- a/html/style.css +++ b/html/style.css @@ -1,17 +1,33 @@ body { - background: white; - color: #202020; - margin-bottom: 2em; - margin-left: auto; - margin-right: auto; - width: 90%; + font-family: "lucida grande", "sans serif"; + color: #333; + width: 60em; + margin: auto; +} + +div.main { + padding: 20px; + margin: auto; + padding-top: 0; + margin-top: 1em; + background-color: #fcfcfc; +} + +.person { + font-family: courier; } a, a:visited { - border-bottom: 1px dotted #03c; - background: inherit; - color: #03c; - text-decoration: none; + background: inherit; + text-decoration: none; +} + +a { + color: #003d41; +} + +a:visited { + color: #553d41; } ul { @@ -23,11 +39,24 @@ p { width: 40em; } +.inline-status-image { + position: relative; + top: 0.2em; +} + +.dimmed { + color: #bbb; +} + table { border-style: none; border-spacing: 0; } +table.log { +} + + td { border-width: 0; border-style: none; @@ -36,56 +65,162 @@ td { } tr { - padding-bottom: 5em; + vertical-align: top; } h1 { - padding: 0.2em; - margin-left: -1em; - margin-right: 1em; - background: #abc; + padding: 0.5em; + margin-left: -20px; + margin-right: -20px; + background-color: #305275; + margin-top: 0; + margin-bottom: 0; + color: #fff; +} + +h2 { + text-transform: uppercase; + font-size: smaller; + margin-top: 1em; + margin-left: -0.5em; + width: 100%; + /*background: #fffbce;*/ + /*background: #628a0d;*/ + padding: 5px; + color: #305275; } .attrname { text-align: right; + font-size: smaller; +} + +.attrval { + color: #222; +} + +.issue-closed-fixed { + background-image: "green-check.png"; +} + +.issue-closed-wontfix { + background-image: "red-check.png"; +} + +.issue-closed-reorg { + background-image: "blue-check.png"; +} + +.inline-issue-link { + text-decoration: underline; +} + +img { + border: 0; } +/* .issuestatus_closed { - background-color: #afa; + background-color: #f2fff2; text-align: center; } .issuestatus_in_progress { - background-color: #ffa; + background-color: #fffff2; text-align: center; } .issuestatus_paused { - background-color: #ffa; + background-color: #fffff2; text-align: center; } .issuestatus_unstarted { - background-color: #faa; + background-color: #fff2f2; text-align: center; } -.logwhat { - font-style: italic; +.issuestatus_closed a { + color: #202020; } -.logentryeven { - background: #eee; +.issuestatus_in_progress a { + color: #202020; } -.logentryodd { - background: #eee; +.issuestatus_paused a { + color: #202020; } -.logcomment { - padding-left: 3em; +.issuestatus_unstarted a { + color: #202020; } +*/ -.footer { +div.footer { font-size: small; + padding-left: 20px; + padding-right: 20px; + padding-top: 5px; + padding-bottom: 5px; + margin: auto; + background: #305275; + color: #fffee7; +} + +.footer a { + color: #508d91; +} + +.even-row { + font-size: smaller; + background-color: #f2f2f2; +} + +.odd-row { + font-size: smaller; + background-color: #f2f2f2; +} + +.backptr { + font-size: smaller; + width: 100%; + text-align: left; + padding-bottom: 1em; + margin-top: 0; +} + +.logcomment { + padding-left: 4em; + font-size: smaller; +} + +.id { + font-family: courier; +} + +.description { + background: #f2f2f2; + padding-left: 1em; + padding-right: 1em; + padding-top: 0.5em; + padding-bottom: 0.5em; +} + +.message { +} + +.littledate { + font-size: smaller; +} + +.progress-meter-done { + background-color: #03af00; +} + +.progress-meter-undone { + background-color: #ddd; +} + +.progress-meter { } diff --git a/html/unassigned.html b/html/unassigned.html index 9a4b658..7fad149 100644 --- a/html/unassigned.html +++ b/html/unassigned.html @@ -1,17 +1,29 @@ + + + Issues not assigned to any release - + +

Issues not assigned to any release

+ +

All issues

- + + +
-
+ + diff --git a/html/yellow-bar.png b/html/yellow-bar.png new file mode 100644 index 0000000000000000000000000000000000000000..32c483a72a5d0540551a22e7f73ef05f74bb98cc GIT binary patch literal 2942 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 literal 0 HcmV?d00001 diff --git a/issues/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.yaml b/issues/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.yaml new file mode 100644 index 0000000..89c72d8 --- /dev/null +++ b/issues/issue-44d3336b937f24f02badd49bc545b8fc247fef4c.yaml @@ -0,0 +1,22 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: Adopt a patch from id:t-wada +desc: "" +type: :bugfix +component: emacs-ditz +release: "0.5" +reporter: antipop +status: :closed +disposition: :fixed +creation_time: 2008-11-05 03:52:10.813093 Z +references: [] + +id: 44d3336b937f24f02badd49bc545b8fc247fef4c +log_events: +- - 2008-11-05 03:52:12.109692 Z + - antipop + - created + - "" +- - 2008-11-05 03:55:15.774360 Z + - antipop + - closed with disposition fixed + - "" diff --git a/issues/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.yaml b/issues/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.yaml new file mode 100644 index 0000000..1390d86 --- /dev/null +++ b/issues/issue-c1ed5faefc9c88745216729528aa3ef780d43de9.yaml @@ -0,0 +1,22 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: Accept a pull-request from rmm5t +desc: http://github.com/rmm5t/emacs-ditz/tree/master +type: :task +component: emacs-ditz +release: "0.5" +reporter: antipop +status: :closed +disposition: :fixed +creation_time: 2008-11-05 03:49:42.636901 Z +references: [] + +id: c1ed5faefc9c88745216729528aa3ef780d43de9 +log_events: +- - 2008-11-05 03:49:44.044476 Z + - antipop + - created + - "" +- - 2008-11-05 03:51:39.093231 Z + - antipop + - closed with disposition fixed + - "" diff --git a/issues/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.yaml b/issues/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.yaml new file mode 100644 index 0000000..7d3f20f --- /dev/null +++ b/issues/issue-e205f5cb0c5788ef74074f2c9ff5a16e3db7c209.yaml @@ -0,0 +1,26 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: Release 0.5 +desc: test +type: :task +component: emacs-ditz +release: "0.5" +reporter: antipop +status: :closed +disposition: :fixed +creation_time: 2008-11-05 04:39:06.266676 Z +references: [] + +id: e205f5cb0c5788ef74074f2c9ff5a16e3db7c209 +log_events: +- - 2008-11-05 04:39:07.267040 Z + - antipop + - created + - "" +- - 2008-11-05 04:42:03.082568 Z + - antipop + - edited description + - "" +- - 2008-11-05 04:46:20.855733 Z + - antipop + - closed with disposition fixed + - "" diff --git a/issues/project.yaml b/issues/project.yaml index 31e69ee..e7d8dc1 100644 --- a/issues/project.yaml +++ b/issues/project.yaml @@ -57,3 +57,16 @@ releases: - Kentaro Kuribayashi - released - release 0.4 +- !ditz.rubyforge.org,2008-03-06/release + name: "0.5" + status: :released + release_time: 2008-11-05 04:46:42.872290 Z + log_events: + - - 2008-11-05 03:47:09.300501 Z + - antipop + - created + - "" + - - 2008-11-05 04:46:42.872306 Z + - antipop + - released + - Released 0.5