Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-07 Thread Achim Gratz
Matthew Sauer  writes:
> lispdir   = $ usr/share/emacs/23.2/lisp/org

Don't do that.  Put anything you install yourself into

/usr/share/emacs/site-lisp

or more specifically for Orgmode,

/usr/share/emacs/site-lisp/org

This path won't be overwritten or ignored when you install a newer
version of Emacs and as an added benefit you don't need to change the
loadpath at all (unless you have a non-standard installation of Emacs).

> oh, and if anyone has experience on getting make doc to work on cygwin
> (texi2dvi) it would be appreciated as I haven't quite got that to work
> right.

You would need to have texinfo and TeX installed, but unless you really
want the PDF manual you don't need to "make doc" at all, use the target
"install-info" instead.


Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Samples for the Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#BlofeldSamplesExtra




Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-06 Thread Matthew Sauer
Nick was gracious enough to help me dig through a few things with my .emacs
. . . it appears I had been able to update the emacs lisp in
lispdir   = $ usr/share/emacs/23.2/lisp/org
once so that I was running 7.4 but that wasn't getting updated when I did
pulls (need to look into that once)
so, I just had to change my .emacs and add a load path to /org-mode/elisp
so that it would find everything I was updating (I go into /org-mode  to run
:
git pull && make clean && make && make install && make doc



oh, and if anyone has experience on getting make doc to work on cygwin
(texi2dvi) it would be appreciated as I haven't quite got that to work
right.

Thanks to all on the list, especially Nick for the help, it works great now
. . .now to get google weather to work the way I want it to.

Matthew

On Sun, Mar 6, 2011 at 5:20 PM, Bastien  wrote:

> Matthew Sauer  writes:
>
> > Should I be able to find org-property-set-functions-alist listed in
> > org.el?
>
> Yes:
>
> C-h v org-property-set-functions-alist RET
>
> --
>  Bastien
>
>


Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-06 Thread Bastien
Matthew Sauer  writes:

> Should I be able to find org-property-set-functions-alist listed in
> org.el?

Yes:

C-h v org-property-set-functions-alist RET

-- 
 Bastien



Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-06 Thread Matthew Sauer
I am aware of the issue of emacs (that comes with cygwin) coming with I
think it was org 6.3 and I have already (prior to this) cloned a branch,
made my own branch so I could modify the makefile to have the org files land
in the correct location to load (it kept loading 6.3 and not 7.4).  I double
checked (org-version) and I am definitely on 7.4 (when I was on 6.3 I had to
use remember as Capture wasn't in the release? and now I have switched over
to capture now and love it).  I do regular pulls from the git as explained
in the instructions (part of me is loving working in/on a growing updating
project).

It is loading from the correct spot and I opened the .el version of the .elc
and it says 7.4 and if I load the .el or the .elc org-version shows 7.4.

I know about needing to clean up the emacs, I originally started using
org-mode from an episode of FLOSS weekly and didn't come to orgmode.org,
worg or this mailing list as my first stop to learn how to update my .emacs
and make things work.  I am going to work on it some more and make sure I
have tidied up everything I need to do and then I am going to try reloading
org-contacts, I think I have something floating around somewhere that is
keeping me from loading it correctly.

Thanks for the feedback and hopefully I can get this knocked out, I am
trying to migrate more and more of my stuff to working in emacs as it and
org-mode speak to the way my brain functions.  Hopefully, I will have an
update soon as it still doesn't work but I want to weed through my .emacs
before re-submitting everything.  However, if anyone reads through my .emacs
and sees an error or something I should look at, I would greatly appreciate
it.  You guys are amazing, hopefully in a few months I can start
contributing more to this project.

Matthew

On Sat, Mar 5, 2011 at 10:47 PM, Nick Dokos  wrote:

> U-SWEETSAUERPORT\\Matthew Sauer  wrote:
>
> ,
> | Debugger entered--Lisp error: (void-variable
> org-property-set-functions-alist)
> |   add-to-list(org-property-set-functions-alist ("BIRTHDAY" .
> org-completing-read-date))
> |   eval-buffer(# nil "/elisp/org-contacts/org-contacts.el"
> nil t)  ; Reading at buffer position 12430
> |   load-with-code-conversion("/elisp/org-contacts/org-contacts.el"
> "/elisp/org-contacts/org-contacts.el" nil t)
> |   require(org-contacts)
> `
>
> org-property-set-functions-alist is a variable in org.el, so it seems
> you are loading org-contacts.el before loading org.el (and the autoloads
> in your .emacs seem to confirm that).
>
> Problems:
>
> o org-contacts requires a recent version (> 7.4) of org. The version
>  that came with your emacs is not going to cut it.
>
> o you are probably loading the version of org that came with your emacs.
>  To check, say M-x locate-library  org  and see where it loads
>  org.el (or org.elc) from.
>
> o if you are using the built-in version, download the version from git (if
>  you have not already) and follow the instructions in section 1.2,
>  "Installation", of the Org manual to install it.
>
> And please clean up your .emacs: the autoload section that goes
>
> ,
> | ;; These lines only if org-mode is not part of the X/Emacs distribution.
> | (autoload 'org-mode "org" "Org mode" t)
> | (autoload 'org-diary "org" "Diary entries from Org mode" t)
> | (autoload 'org-agenda "org" "Multi-file agenda from Org mode" t)
> | (autoload 'org-store-link "org" "Store a link to the current location" t)
> | (autoload 'orgtbl-mode "org" "Org tables as a minor mode" t)
> | (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode")
> `
>
> should be *replaced* by what the doc says. Don't leave it hanging around.
>
> If you still have problems, submit another problem report (btw, the
> information you included in this one was spot-on: both the .emacs and
> the backtrace were needed for diagnosis).
>
> HTH,
> Nick
>
>


Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-06 Thread Matthew Sauer
Should I be able to find org-property-set-functions-alist listed in org.el?
 Because I don't, maybe I have an issue, it says 7.4 in the comments at the
top of the file but I am not finding that phrase anywhere in the file, maybe
I do have an pull, update or patch issue I need to look into?

Matthew

On Sun, Mar 6, 2011 at 1:50 PM, Matthew Sauer
wrote:

> I am aware of the issue of emacs (that comes with cygwin) coming with I
> think it was org 6.3 and I have already (prior to this) cloned a branch,
> made my own branch so I could modify the makefile to have the org files land
> in the correct location to load (it kept loading 6.3 and not 7.4).  I double
> checked (org-version) and I am definitely on 7.4 (when I was on 6.3 I had to
> use remember as Capture wasn't in the release? and now I have switched over
> to capture now and love it).  I do regular pulls from the git as explained
> in the instructions (part of me is loving working in/on a growing updating
> project).
>
> It is loading from the correct spot and I opened the .el version of the
> .elc and it says 7.4 and if I load the .el or the .elc org-version shows
> 7.4.
>
> I know about needing to clean up the emacs, I originally started using
> org-mode from an episode of FLOSS weekly and didn't come to orgmode.org,
> worg or this mailing list as my first stop to learn how to update my .emacs
> and make things work.  I am going to work on it some more and make sure I
> have tidied up everything I need to do and then I am going to try reloading
> org-contacts, I think I have something floating around somewhere that is
> keeping me from loading it correctly.
>
> Thanks for the feedback and hopefully I can get this knocked out, I am
> trying to migrate more and more of my stuff to working in emacs as it and
> org-mode speak to the way my brain functions.  Hopefully, I will have an
> update soon as it still doesn't work but I want to weed through my .emacs
> before re-submitting everything.  However, if anyone reads through my .emacs
> and sees an error or something I should look at, I would greatly appreciate
> it.  You guys are amazing, hopefully in a few months I can start
> contributing more to this project.
>
> Matthew
>
> On Sat, Mar 5, 2011 at 10:47 PM, Nick Dokos  wrote:
>
>> U-SWEETSAUERPORT\\Matthew Sauer  wrote:
>>
>> ,
>> | Debugger entered--Lisp error: (void-variable
>> org-property-set-functions-alist)
>> |   add-to-list(org-property-set-functions-alist ("BIRTHDAY" .
>> org-completing-read-date))
>> |   eval-buffer(# nil
>> "/elisp/org-contacts/org-contacts.el" nil t)  ; Reading at buffer position
>> 12430
>> |   load-with-code-conversion("/elisp/org-contacts/org-contacts.el"
>> "/elisp/org-contacts/org-contacts.el" nil t)
>> |   require(org-contacts)
>> `
>>
>> org-property-set-functions-alist is a variable in org.el, so it seems
>> you are loading org-contacts.el before loading org.el (and the autoloads
>> in your .emacs seem to confirm that).
>>
>> Problems:
>>
>> o org-contacts requires a recent version (> 7.4) of org. The version
>>  that came with your emacs is not going to cut it.
>>
>> o you are probably loading the version of org that came with your emacs.
>>  To check, say M-x locate-library  org  and see where it loads
>>  org.el (or org.elc) from.
>>
>> o if you are using the built-in version, download the version from git (if
>>  you have not already) and follow the instructions in section 1.2,
>>  "Installation", of the Org manual to install it.
>>
>> And please clean up your .emacs: the autoload section that goes
>>
>> ,
>> | ;; These lines only if org-mode is not part of the X/Emacs distribution.
>> | (autoload 'org-mode "org" "Org mode" t)
>> | (autoload 'org-diary "org" "Diary entries from Org mode" t)
>> | (autoload 'org-agenda "org" "Multi-file agenda from Org mode" t)
>> | (autoload 'org-store-link "org" "Store a link to the current location"
>> t)
>> | (autoload 'orgtbl-mode "org" "Org tables as a minor mode" t)
>> | (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode")
>> `
>>
>> should be *replaced* by what the doc says. Don't leave it hanging around.
>>
>> If you still have problems, submit another problem report (btw, the
>> information you included in this one was spot-on: both the .emacs and
>> the backtrace were needed for diagnosis).
>>
>> HTH,
>> Nick
>>
>>
>


Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-05 Thread Nick Dokos
U-SWEETSAUERPORT\\Matthew Sauer  wrote:

,
| Debugger entered--Lisp error: (void-variable org-property-set-functions-alist)
|   add-to-list(org-property-set-functions-alist ("BIRTHDAY" . 
org-completing-read-date))
|   eval-buffer(# nil "/elisp/org-contacts/org-contacts.el" nil 
t)  ; Reading at buffer position 12430
|   load-with-code-conversion("/elisp/org-contacts/org-contacts.el" 
"/elisp/org-contacts/org-contacts.el" nil t)
|   require(org-contacts)
`

org-property-set-functions-alist is a variable in org.el, so it seems
you are loading org-contacts.el before loading org.el (and the autoloads
in your .emacs seem to confirm that).

Problems:

o org-contacts requires a recent version (> 7.4) of org. The version
  that came with your emacs is not going to cut it.

o you are probably loading the version of org that came with your emacs.
  To check, say M-x locate-library  org  and see where it loads
  org.el (or org.elc) from.

o if you are using the built-in version, download the version from git (if
  you have not already) and follow the instructions in section 1.2,
  "Installation", of the Org manual to install it.

And please clean up your .emacs: the autoload section that goes

,
| ;; These lines only if org-mode is not part of the X/Emacs distribution.
| (autoload 'org-mode "org" "Org mode" t)
| (autoload 'org-diary "org" "Diary entries from Org mode" t)
| (autoload 'org-agenda "org" "Multi-file agenda from Org mode" t)
| (autoload 'org-store-link "org" "Store a link to the current location" t)
| (autoload 'orgtbl-mode "org" "Org tables as a minor mode" t)
| (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode")
`

should be *replaced* by what the doc says. Don't leave it hanging around.

If you still have problems, submit another problem report (btw, the
information you included in this one was spot-on: both the .emacs and
the backtrace were needed for diagnosis).

HTH,
Nick




[O] Bug: Org-Contacts.el [7.4]

2011-03-05 Thread U-SWEETSAUERPORT\Matthew Sauer

Remember to cover the basics, that is, what you expected to happen and
what in fact did happen.  You don't know how to make a good report?  See

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

Your bug report will be posted to the Org-mode mailing list.

I test evaluated my .emacs (Yes, it needs some cleaning up and that is
one of my projects).   Deleted my org-contacts.el and re-cloned it via
git.  I made sure the directoy for it is added to the load-path and
placed the following in my .emacs
(require 'org-contacts)
I have attatched a backtrace of the error to this message but it seems
to revolve around: 
(org-property-set-functions-alist ("BIRTHDAY"
. org-completing-read-date))
not working correctly.This error won't let me load the .emacs file
and thus I can't use the org-contacts functionality.  Hopefully, I am
just missing something obvious and this will be an easy fix.(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.
 '(appt-delete-window-function (quote appt-delete-window))
 '(appt-display-duration 120)
 '(appt-display-format (quote window))
 '(auto-raise-tool-bar-buttons t t)
 '(auto-resize-tool-bars t t)
 '(battery-mode-line-format "%c %r %B %d %L %p %m")
 '(battery-status-function (quote ignore))
 '(bookmark-automatically-show-annotations t)
 '(bookmark-use-annotations nil)
 '(calendar-week-start-day 1)
 '(case-fold-search t)
 '(current-language-environment "Latin-1")
 '(default-input-method "latin-1-prefix")
 '(display-battery-mode t)
 '(display-time-24hr-format t)
 '(display-time-day-and-date t)
 '(display-time-default-load-average 2)
 '(display-time-format nil)
 '(display-time-mode t)
 '(display-time-world-list (quote (("PST8PDT" "Seattle") ("EST5EDT" "New York") 
("GMT0BST" "London") ("CET-1CDT" "Paris") ("CST-6" "Wichita"
 '(erc-modules (quote (autojoin button completion fill irccontrols list match 
menu move-to-prompt netsplit networks noncommands notify readonly ring smiley 
stamp track)))
 '(fancy-splash-image nil)
 '(fill-column 80)
 '(g-user-email "improv.philoso...@gmail.com")
 '(gblogger-user-email "improv.philoso...@gmail.com")
 '(gcal-calendar-agenda-days 7)
 '(gcal-user-email "improv.philoso...@gmail.com")
 '(googlecl-blog-exists t)
 '(googlecl-blog-tag "org")
 '(googlecl-blogname "Play the Dad?  No, be the Dad!")
 '(googlecl-footer "Matthew S.")
 '(googlecl-prompt-footer t)
 '(googlecl-username "improv.philoso...@gmail.com")
 '(imap-default-user "improv.philoso...@gmail.com")
 '(imap-store-password t)
 '(initial-buffer-choice nil)
 '(longlines-wrap-follows-window-size t)
 '(mail-host-address "imap.gmail.com")
 '(mail-user-agent (quote gnus-user-agent))
 '(make-backup-files t)
 '(normal-erase-is-backspace 0)
 '(org-agenda-files (quote ("/cygdrive/c/Dropbox/Org/Main.org" 
"/cygdrive/c/Dropbox/Org/Thea143.org" "/cygdrive/c/Dropbox/Org/Engl101.org" 
"/cygdrive/c/Dropbox/Org/Journal.org" "/cygdrive/c/Dropbox/Org/privnotes.org" 
"/cygdrive/c/Dropbox/Org/weather.org")))
 '(org-agenda-insert-diary-strategy (quote top-level))
 '(org-agenda-log-mode-add-notes nil)
 '(org-agenda-ndays 7)
 '(org-agenda-repeating-timestamp-show-all nil)
 '(org-agenda-restore-windows-after-quit t)
 '(org-agenda-show-all-dates t)
 '(org-agenda-skip-deadline-if-done t)
 '(org-agenda-skip-scheduled-if-done t)
 '(org-agenda-sorting-strategy (quote ((agenda time-up priority-down tag-up) 
(todo tag-up
 '(org-agenda-start-on-weekday nil)
 '(org-agenda-text-search-extra-files (quote (agenda-archives)))
 '(org-agenda-todo-ignore-deadlines nil)
 '(org-agenda-todo-ignore-scheduled nil)
 '(org-agenda-todo-ignore-with-date t)
 '(org-agenda-window-setup (quote other-window))
 '(org-attach-directory "/cygdrive/C/Dropbox/Org/data/")
 '(org-capture-templates (quote (("t" "Todo" entry (file+headline 
"/cygdrive/c/Dropbox/Org/Refile.org" "Refile") "* TODO %^{Brief Description} %^g
%?
Added: %U") ("j" "Journal/Blog/Private" entry (file+headline 
"/cygdrive/c/Dropbox/Org/Refile.org" "Refile") "** %^{Head Line} %U %^g
%i%?") ("a" "Appt" entry (file+headline "/cygdrive/c/Dropbox/Org/Refile.org" 
"Refile") "* %^{Brief Description}  %^g
 %^{When?}T 
%?
Added: %U %") ("s" "Someday" entry (file+headline 
"/cygdrive/c/Dropbox/Org/someday.org" "Someday") "** %^{Someday Heading} %U
%?
") ("c" "Contact" entry (file+headline "/cygdrive/c/Dropbox/Org/Contacts.org" 
"Contacts") "* %^{Contact Name}
:PROPERTIES:
:EMAIL: %^{Contact Email}
:PHONE: %^{Contact Phone}
:NOTES: %^{Notes?}
:END:") ("e" "English" entry (file+datetree 
"/cygdrive/c/Dropbox/Org/Engl101.org") "* %^{Class Session:} %^g
Added: %T
 %k
%K
%
* ?") ("u" "Theatre" entry (file+datetree 
"/cygdrive/c/Dropbox/Org/Thea143.org") "* %^{Class Session:} %^g
Added: %T
 %k
%K
%
* ?") ("l" "Clock This" entry