Skip to content

Commit

Permalink
Changed to new org-sync prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
arbox committed Mar 6, 2015
1 parent f136ed3 commit 4eb6960
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
6 changes: 3 additions & 3 deletions os-bb.el → org-sync-bb.el
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
;;; Code:

(eval-when-compile (require 'cl))
(require 'os)
(require 'org-sync)
(require 'url)
(require 'json)

Expand Down Expand Up @@ -258,5 +258,5 @@ decoded response in JSON."
(push (os-bb-json-to-bug (cdr res)) new-bugs)))))
`(:bugs ,new-bugs)))

(provide 'os-bb)
;;; os-bb.el ends here
(provide 'org-sync-bb)
;;; org-sync-bb.el ends here
8 changes: 4 additions & 4 deletions os-github.el → org-sync-github.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; os-github.el --- Redmine backend for org-sync.
;;; os-github.el --- Github backend for org-sync.

;; Copyright (C) 2012 Aurelien Aptel
;;
Expand Down Expand Up @@ -35,7 +35,7 @@

(require 'cl-lib)
(require 'url)
(require 'os)
(require 'org-sync)
(require 'json)

(defvar os-github-backend
Expand Down Expand Up @@ -268,5 +268,5 @@ Return the server decoded JSON response."
(state . ,(symbol-name (os-get-prop :status bug)))
(labels . [ ,@(os-get-prop :tags bug) ])))))

(provide 'os-github)
;;; os-github.el ends here
(provide 'org-sync-github)
;;; org-sync-github.el ends here
6 changes: 3 additions & 3 deletions os-rmine.el → org-sync-redmine.el
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
;;; Code:

(require 'cl-lib)
(require 'os)
(require 'org-sync)
(require 'url)
(require 'json)

Expand Down Expand Up @@ -219,5 +219,5 @@ decoded response in JSON."
new-bugs)))))
`(:bugs ,new-bugs)))

(provide 'os-rmine)
;;; os-rmine.el ends here
(provide 'org-sync-redmine)
;;; org-sync-redmine.el ends here
6 changes: 3 additions & 3 deletions os-rtm.el → org-sync-rtm.el
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
;;; Code:

(require 'cl-lib)
(require 'os)
(require 'org-sync)
(require 'json)
(require 'url)

Expand Down Expand Up @@ -174,5 +174,5 @@

nil nil 'utf-8))))

(provide 'os-rtm)
;;; os-rtm.el ends here
(provide 'org-sync-rtm)
;;; org-sync-rtm.el ends here
5 changes: 3 additions & 2 deletions os.el → org-sync.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
;;; os.el --- Synchronize Org documents with external services

;; Copyright (C) 2012 Aurelien Aptel
;; Copyright (C) 2015- Andrei Beliankou
;;
;; Author: Aurelien Aptel <aurelien dot aptel at gmail dot com>
;; Keywords: org, synchronization
Expand Down Expand Up @@ -941,5 +942,5 @@ to import otherwise synchronize the buffer."
(os-sync)
(call-interactively 'os-import))))

(provide 'os)
;;; os.el ends here
(provide 'org-sync)
;;; org-sync.el ends here

0 comments on commit 4eb6960

Please sign in to comment.