Skip to content

Latest commit

 

History

History
171 lines (169 loc) · 5.83 KB

File metadata and controls

171 lines (169 loc) · 5.83 KB

sample org-mode file for orgmine

An example of ~/.emacs configuration

 (require 'orgmine)
 (add-hook 'org-mode-hook
           (lambda () (if (assoc "om_project" org-file-properties)
                          (orgmine-mode))))
 (setq org-link-abbrev-alist
	'(("redmine" . "http://redmine.example.com/")
	  ;;...
	  ))
 (setq orgmine-servers
	'(("redmine"                      ; server name for this entry
	   (host . "http://redmine.example.com")
	   (api-key . "blabblabblab")	; your Redmine REST API key
	   (issue-title-format . "[[redmine:issues/%{id}][#%{id}]] %{subject}")
	   (journal-title-format . "[[redmine:issues/%{id}#note-%{count}][V#%{id}-%{count}]] %{created_on} %{author}")
	   (version-title-format . "[[redmine:versions/%{id}][V#%{id}]] %{name}")
	   (tracker-title-format . "%{name}")
	   (project-title-format . "[[redmine:projects/%{identifier}][%{identifier}]] %{name}")
	   (user-name-format . "%{firstname} %{lastname}"))))
 (setq orgmine-tags '((update-me . "UPDATE_ME")
		       (create-me . "CREATE_ME")
		       (project . "project")
		       (tracker . "tracker")
		       (version . "version")
		       (issue . "issue")
		       (description . "description")
		       (journals . "journals")
		       (journal . "journal")
		       (attachments . "attachments")
		       (wiki . "wiki")))

SandBox (redmine:projects/sandbox)

Description

This is a sandbox project. Feel free to play with this project.

V#3 Sprint-001

Tasks

  • tickets which do not belong to any version.

New #24 Implement orgmine-xxx function

Description

This is a hard part.

Attachments

  • a.jpg (25370 bytes) Tokuya Kameshima [2015-09-14 Mon 01:13] abcdefg

Journals

redmine:issues/24#note-2 [2015-09-20 Sun 03:30] Tokuya Kameshima

This is a note...

redmine:issues/24#note-1 [2015-09-14 Mon 01:15] Tokuya Kameshima

  • attachment_11: ADDED -> “naorio.JPG”

Milestone

  • tickets of the “Milestone” tracker.

#12 New Code Freeze

V#2 Coding

#22 New Implement wiki pages editing

Description

- orgmine-wiki-xxx
blab, blab, blab...

Journals

Journal #22#note-1 [2015-09-10 Thu 18:13] Tokuya Kameshima

  • attr_start_date: “2015-09-10” -> “2015-11-11”
  • attr_due_date: ADDED -> “2015-11-13”
Changed start date to 11/11 and due date to 11/13.