Re: [O] Dynamically exclude an 'org id' with org-babel-load-file?

2012-03-01 Thread Damon Haley
Damon Haley  writes:

Oops, the answer was right in from of me.  Just set
'org-user-agenda-files.'

"
;; The following setting is different from the document so that you
;; can override the document org-agenda-files by setting your
;; org-agenda-files in the variable org-user-agenda-files
"

However, it would still be nice to know how to untangle a specific
block by id if that is possible.

Thanks,

Damon

> Hi, I downloaded Bernt Hansen's wonderful GTD orgmode setup from:
>
> git clone git://git.norang.ca/org-mode-doc.git
>
> I am then using his customizations in my emacs config with:
>
> (org-babel-tangle-file "~/git/src/org-mode-doc/org-mode.org")
> (org-babel-load-file "~/git/src/org-mode-doc/org-mode.org")
>
> However there is one section under Bernt's 'Agenda setup' with an org id
> of 'AgendaSetup' that I don't want to evaluate in my emacs
> initialization.
>
> ** Agenda Setup
> :PROPERTIES:
> :CUSTOM_ID: AgendaSetup
> :END:
>
>
> #+begin_src emacs-lisp :tangle yes :exports none
>   ;; The following setting is different from the document so that you
>   ;; can override the document org-agenda-files by setting your
>   ;; org-agenda-files in the variable org-user-agenda-files
>   ;;
>   (if (boundp 'org-user-agenda-files)
>   (setq org-agenda-files org-user-agenda-files)
> (setq org-agenda-files (quote ("~/git/org"
>  "~/git/org/client1"
>  "~/git/org/bzflag"
>  "~/git/client2"
>   
> #+end_src
>
>
> I know I could edit the file directly and change tangle to 'no'.
>
> But is there a way to exclude this section dynamically when I start up
> emacs without having to manually change Bernt's file?  This is because
> I'd like to use git pull again in the future to get Bernt's latest
> changes and not have to keep track of the changes I made.
>
> There is a function in the 'emacs starter kit' called starter-kit-load
> that loads org file section by id or tag, but I'm not sure if there's a
> way to do the opposite and load while excluding id(s) or tag(s) using
> org-babel.
>
> Any help or suggestions would be appreciated.
>
> Damon
>

-- 
   ___ 
  /    -[]--. \ \/ I /\/ Y |_ I S |_ A |\| |}  @  ssl-mail.com   
 / ,-' `-.   \ \ Send me long text - http://www.asciiribbon.org  
/ (   o   )  _) \ http://email.is-not-s.ms 
   /   `-._,-'_ /_/-.\ \/ I /\/ Y |_ I S |_  @  jabber.sdf.org  Jabber 
me
  /  __ _" " "\ \/ I /\/ Y |_ I S |_  .  netlsd dot com  Check 
out my PGP key 
 /_\
 "-=-=-"



[O] Dynamically exclude an 'org id' with org-babel-load-file?

2012-03-01 Thread Damon Haley
Hi, I downloaded Bernt Hansen's wonderful GTD orgmode setup from:

git clone git://git.norang.ca/org-mode-doc.git

I am then using his customizations in my emacs config with:

(org-babel-tangle-file "~/git/src/org-mode-doc/org-mode.org")
(org-babel-load-file "~/git/src/org-mode-doc/org-mode.org")

However there is one section under Bernt's 'Agenda setup' with an org id
of 'AgendaSetup' that I don't want to evaluate in my emacs
initialization.

** Agenda Setup
:PROPERTIES:
:CUSTOM_ID: AgendaSetup
:END:

#+begin_src emacs-lisp :tangle yes :exports none
  ;; The following setting is different from the document so that you
  ;; can override the document org-agenda-files by setting your
  ;; org-agenda-files in the variable org-user-agenda-files
  ;;
  (if (boundp 'org-user-agenda-files)
  (setq org-agenda-files org-user-agenda-files)
(setq org-agenda-files (quote ("~/git/org"
 "~/git/org/client1"
 "~/git/org/bzflag"
 "~/git/client2"
  
#+end_src

I know I could edit the file directly and change tangle to 'no'.

But is there a way to exclude this section dynamically when I start up
emacs without having to manually change Bernt's file?  This is because
I'd like to use git pull again in the future to get Bernt's latest
changes and not have to keep track of the changes I made.

There is a function in the 'emacs starter kit' called starter-kit-load
that loads org file section by id or tag, but I'm not sure if there's a
way to do the opposite and load while excluding id(s) or tag(s) using
org-babel.

Any help or suggestions would be appreciated.

Damon