emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Org mode 6.06b and remember2.0 problems
@ 2008-07-30  2:58 charles snyder
  2008-07-30 10:53 ` Charles Cave
  0 siblings, 1 reply; 5+ messages in thread
From: charles snyder @ 2008-07-30  2:58 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2733 bytes --]

Hi

I am having problems on 2 different machines trying to integrate org mode
and remember. I am running
GNU Emacs 22.2.50.1 (i386-apple-darwin9.4.0, Carbon Version 1.6.0) on a
10.5.4 Leopard Mac
org-6.06b is in the directory below, and remember-2.0 as well.
My .emacs is here:

------------
(add-to-list 'load-path
"/Applications/Emacs.app/Contents/Resources/lisp/org-6.06b/lisp/")
(add-to-list 'load-path
"/Applications/Emacs.app/Contents/Resources/lisp/remember-2.0/")

(require 'org)
(require 'remember)
;;(require 'org-annotate-file)

(add-to-list 'auto-mode-alist '("\.org$" . org-mode))

(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)


(setq org-log-done t)
(setq org-directory "~/orgfiles/")
(setq org-default-notes-file "~/.notes")

(setq remember-annotation-functions '(org-remember-annotation))
(setq remember-handler-functions '(org-remember-handler))
(add-hook 'remember-mode-hook 'org-remember-apply-template)
(define-key global-map "\C-cr" 'org-remember)

(setq org-remember-templates
    '(("Todo" ?t "* TODO %? %^g\n %i\n " "F:/GTD/newgtd.org" "Office")
     ("Journal" ?j "\n* %^{topic} %T \n%i%?\n" "L:journal.org")
     ("Book" ?b "\n* %^{Book Title} %t :READING: \n%[l:/booktemp.txt]\n"
             "L:journal.org")
     ("Private" ?p "\n* %^{topic} %T \n%i%?\n" "F:/gtd/privnotes.org")
     ("Contact" ?c "\n* %^{Name} :CONTACT:\n%[l:/contemp.txt]\n"
              "F:/gtd/privnotes.org")
     ))


(setq org-annotate-file-storage-file "~/annotated.org")

(setq org-annotate-file-add-search t)
(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(cua-mode t nil (cua-base))
 '(show-paren-mode t)
 '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
 '(transient-mark-mode t))
(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )
---------------------
(This is pretty much the setup shown in Charles Cave's nice tutorial)

Org mode works fine, but when I try to Ctrl-C r, I get the following error:

...run-hook-with-args-until-success: Autoloading failed to define function
org-remember-annotation

Also in my main org file, M-x org-remember gives:

Autoloading failed to define function org-remember

There was a post with relatively similar unresolved problems on this list
back in April 08 as well...


Any ideas / suggestions?

Thanks!

Charles Snyder

[-- Attachment #1.2: Type: text/html, Size: 3885 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Org mode 6.06b and remember2.0 problems
  2008-07-30  2:58 charles snyder
@ 2008-07-30 10:53 ` Charles Cave
  0 siblings, 0 replies; 5+ messages in thread
From: Charles Cave @ 2008-07-30 10:53 UTC (permalink / raw)
  To: charles snyder; +Cc: emacs-orgmode

charles snyder wrote:
> Hi
> 
> I am having problems on 2 different machines trying to integrate org 
> mode and remember. I am running

> (setq org-remember-templates
>     '(("Todo" ?t "* TODO %? %^g\n %i\n " "F:/GTD/newgtd.org 
> <http://newgtd.org>" "Office")
>      ("Journal" ?j "\n* %^{topic} %T \n%i%?\n" "L:journal.org 

Be aware that you will nee dto change the names of the target files,
namely F:/GTD/newgtd.org   and  L:journal.org

L is my home network drive at my office and F is the drive for
my USB.   You may want to use path names starting with ~ if your files
are relative to your home directory.

> <http://journal.org>")
>      ("Book" ?b "\n* %^{Book Title} %t :READING: \n%[l:/booktemp.txt]\n"
>              "L:journal.org <http://journal.org>")

What is this syntax? You have a file name followed by an http???

Chares

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Org mode 6.06b and remember2.0 problems
@ 2008-07-30 21:59 Juri Krivov
  2008-07-31  6:19 ` Heinz R. Hopfgartner
  0 siblings, 1 reply; 5+ messages in thread
From: Juri Krivov @ 2008-07-30 21:59 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 3339 bytes --]

On Jul 29, 2008, at 7:58 PM, charles snyder wrote:

> Hi

> I am having problems on 2 different machines trying to integrate org mode
and remember. I am running
> GNU Emacs 22.2.50.1 (i386-apple-darwin9.4.0, Carbon Version 1.6.0) on a
10.5.4 Leopard Mac
> org-6.06b is in the directory below, and remember-2.0 as well.
> My .emacs is here:

> ------------
> (add-to-list 'load-path
"/Applications/Emacs.app/Contents/Resources/lisp/org-6.06b/lisp/")
> (add-to-list 'load-path
"/Applications/Emacs.app/Contents/Resources/lisp/remember-2.0/")

> (require 'org)

I understand from manual and previous discussion, that if you use
distribution from the Web and not within Emacs, that you then
must build org-install.el and write

(require 'org-install)

and that in fact  (require 'org) is never used in init file?

I repeat bug with (require 'org), but not with (require 'org-install)

Juri

> (require 'remember)
;;(require 'org-annotate-file)

(add-to-list 'auto-mode-alist '("\.org$" . org-mode))

(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)


(setq org-log-done t)
(setq org-directory "~/orgfiles/")
(setq org-default-notes-file "~/.notes")

(setq remember-annotation-functions '(org-remember-annotation))
(setq remember-handler-functions '(org-remember-handler))
(add-hook 'remember-mode-hook 'org-remember-apply-template)
(define-key global-map "\C-cr" 'org-remember)

(setq org-remember-templates
    '(("Todo" ?t "* TODO %? %^g\n %i\n " "F:/GTD/newgtd.org" "Office")
     ("Journal" ?j "\n* %^{topic} %T \n%i%?\n" "L:journal.org")
     ("Book" ?b "\n* %^{Book Title} %t :READING: \n%[l:/booktemp.txt]\n"
             "L:journal.org")
     ("Private" ?p "\n* %^{topic} %T \n%i%?\n" "F:/gtd/privnotes.org")
     ("Contact" ?c "\n* %^{Name} :CONTACT:\n%[l:/contemp.txt]\n"
              "F:/gtd/privnotes.org")
     ))


(setq org-annotate-file-storage-file "~/annotated.org")

(setq org-annotate-file-add-search t)
(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(cua-mode t nil (cua-base))
 '(show-paren-mode t)
 '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
 '(transient-mark-mode t))
(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )
---------------------
(This is pretty much the setup shown in Charles Cave's nice tutorial)

Org mode works fine, but when I try to Ctrl-C r, I get the following error:

...run-hook-with-args-until-success: Autoloading failed to define function
org-remember-annotation

Also in my main org file, M-x org-remember gives:

Autoloading failed to define function org-remember

There was a post with relatively similar unresolved problems on this list
back in April 08 as well...


Any ideas / suggestions?

Thanks!

Charles Snyder

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[-- Attachment #1.2: Type: text/html, Size: 4886 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Org mode 6.06b and remember2.0 problems
  2008-07-30 21:59 Org mode 6.06b and remember2.0 problems Juri Krivov
@ 2008-07-31  6:19 ` Heinz R. Hopfgartner
  2008-07-31  6:41   ` Juri Krivov
  0 siblings, 1 reply; 5+ messages in thread
From: Heinz R. Hopfgartner @ 2008-07-31  6:19 UTC (permalink / raw)
  To: Juri Krivov; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 730 bytes --]


Am 30.07.2008 um 23:59 schrieb Juri Krivov:

>
> On Jul 29, 2008, at 7:58 PM, charles snyder wrote:
>
> > Hi
>
> > I am having problems on 2 different machines trying to integrate  
> org mode and remember. I am running
> > GNU Emacs 22.2.50.1 (i386-apple-darwin9.4.0, Carbon Version 1.6.0)  
> on a 10.5.4 Leopard Mac
> > org-6.06b is in the directory below, and remember-2.0 as well.
> > My .emacs is here:
>
>
> I understand from manual and previous discussion, that if you use
> distribution from the Web and not within Emacs, that you then
> must build org-install.el and write
>

Hello Juri,

> (require 'org-install)

this solves the problem - which I also had.

Where did you find this hint in the documentation?

Heinz


[-- Attachment #1.2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 2431 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Org mode 6.06b and remember2.0 problems
  2008-07-31  6:19 ` Heinz R. Hopfgartner
@ 2008-07-31  6:41   ` Juri Krivov
  0 siblings, 0 replies; 5+ messages in thread
From: Juri Krivov @ 2008-07-31  6:41 UTC (permalink / raw)
  To: Heinz R. Hopfgartner; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 987 bytes --]

On Wed, Jul 30, 2008 at 11:19 PM, Heinz R. Hopfgartner <
heinz.hopfgartner@web.de> wrote:

>
> Am 30.07.2008 um 23:59 schrieb Juri Krivov:
>
>
>> On Jul 29, 2008, at 7:58 PM, charles snyder wrote:
>>
>> > Hi
>>
>> > I am having problems on 2 different machines trying to integrate org
>> mode and remember. I am running
>> > GNU Emacs 22.2.50.1 (i386-apple-darwin9.4.0, Carbon Version 1.6.0) on a
>> 10.5.4 Leopard Mac
>> > org-6.06b is in the directory below, and remember-2.0 as well.
>> > My .emacs is here:
>>
>>
>> I understand from manual and previous discussion, that if you use
>> distribution from the Web and not within Emacs, that you then
>> must build org-install.el and write
>>
>>
> Hello Juri,
>
>  (require 'org-install)
>>
>
> this solves the problem - which I also had.
>
> Where did you find this hint in the documentation?
>
> Heinz
>
>

Heinz,

     this is written in Org-mode manual "Installation"

http://orgmode.org/manual/Installation.html#Installation


Juri

[-- Attachment #1.2: Type: text/html, Size: 1897 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-07-31  6:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-30 21:59 Org mode 6.06b and remember2.0 problems Juri Krivov
2008-07-31  6:19 ` Heinz R. Hopfgartner
2008-07-31  6:41   ` Juri Krivov
  -- strict thread matches above, loose matches on Subject: below --
2008-07-30  2:58 charles snyder
2008-07-30 10:53 ` Charles Cave

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).