Re: [Orgmode] [org-Calendar] Recurring events with exception on days

2009-07-12 Thread Dirk-Jan Binnema
Hi Marcelo,

On Mon, Jul 13, 2009 at 6:47 AM, Marcelo de Moraes Serpa <
celose...@gmail.com> wrote:

> Hello list!
>
> Is there a way to schedule an item as a recurring event AND tell org
> to exclude it from specific weekdays (for example, Saturday & Sunday)
> ?
>
>
This is becoming a FAQ.

The short answer is 'no'. The somewhat longer answer is that you can use
diary-sexps to have appointments only on weekdays, but you cannot use them
for things you want to tick off as 'DONE'. The only working solution is to
make separate recurring appointments for each of the weekdays.

Also see: http://osdir.com/ml/emacs-orgmode-gnu/2009-07/msg00093.html

Best wishes,
Dirk.
___
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


Re: [Orgmode] [org-Calendar] Recurring events with exception on days

2009-07-12 Thread Brian van den Broek

Marcelo de Moraes Serpa said unto the world at 12/07/09 11:47 PM:

Hello list!

Is there a way to schedule an item as a recurring event AND tell org
to exclude it from specific weekdays (for example, Saturday & Sunday)
?

Thanks in advance,

Marcelo.




Hi Marcelo,

The easiest thing is to define n distinct events, one for each pf the 
n days of the week for which you wish to schedule it. When I do that, 
I put them all under a `container' heading that exists solely to group 
them.


That isn't entirely satisfactory, but it works well enough for me. You 
can also use sexp diary entries 
 though I've 
never bothered.


Best,

Brian vdB


___
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


[Orgmode] Typo in current org-mode online manual

2009-07-12 Thread Dave Roberts
http://orgmode.org/manual/Activation.html#Activation

"If you do not like transient-make-mode..."

Should read "transient-mark-mode" not "transient-make-mode".

-- Dave
___
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


[Orgmode] [org-Calendar] Recurring events with exception on days

2009-07-12 Thread Marcelo de Moraes Serpa
Hello list!

Is there a way to schedule an item as a recurring event AND tell org
to exclude it from specific weekdays (for example, Saturday & Sunday)
?

Thanks in advance,

Marcelo.


___
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


Re: [Orgmode] further on compiling development version of org-mode without make command

2009-07-12 Thread Eric S Fraga
At Thu, 09 Jul 2009 21:47:43 +0200,
Sebastian Rose wrote:
> 
> Hi Eric and Stefan,
> 
> I push the results of this thread to
> 
>   http://orgmode.org/org-hacks.html#compiling-org-without-make

Thanks Sebastian.

> This will be available only in one or two hours. If you follow worg.git,
> feel free to pull and edit it (Eric, you're a worger, aren't you?). That
> way we don't have to send that stuff back and forth all the time.

I am (was) not a worger (but have now registered!).  Great idea to use
worg for this.

I've been "offline" the past few days so haven't tried your updates
yet on my tablet but will do so soon.

Thanks again,
eric


___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Eric S Fraga
At Sun, 12 Jul 2009 23:47:12 +0200,
Nicolas Goaziou wrote:

> (setq load-path
>   (append (list
>"~/.emacs.d/elisp"
>"~/.emacs.d/elisp/yasnippet-0.5.10"
>"~/.emacs.d/elisp/magit"
>"~/.emacs.d/elisp/org-mode/lisp"
>"~/.emacs.d/elisp/org-mode/contrib/lisp")
>   load-path
>   (list
>"~/.emacs.d/etc")))

You might find it easier to use add-to-list which prepends entries to
the list...

> As a side note, .emacs.d/etc, holding my gnus.el must be put at the end.
> Otherwise, I get some load recursive error.

with gnus, isn't it easier/better to simply have a ~/.gnus file?  But
it's been a while since I used gnus so possibly ignore this comment!


___
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


[Orgmode] refile to .gpg file

2009-07-12 Thread Richard Riley

What would the most efficient way of adding a .gpg file to the refile
list be? My org files are set so

  org-agenda-files "~/.emacs.d/org-files"

but the .gpg is not included in the potential refile targets.

regards

r.


___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Nicolas Goaziou
Nick Dokos  writes:

> Well, you are appending your stuff at the end of whatever emacs sets it to,
> so it prefers *its* directories over yours.

Understood.

This new load-path is better then :

(setq load-path
  (append (list
   "~/.emacs.d/elisp"
   "~/.emacs.d/elisp/yasnippet-0.5.10"
   "~/.emacs.d/elisp/magit"
   "~/.emacs.d/elisp/org-mode/lisp"
   "~/.emacs.d/elisp/org-mode/contrib/lisp")
  load-path
  (list
   "~/.emacs.d/etc")))

As a side note, .emacs.d/etc, holding my gnus.el must be put at the end.
Otherwise, I get some load recursive error.

Thanks for pointing me on the right direction.

-- 
Nicolas Goaziou



___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Nick Dokos
Nicolas Goaziou  wrote:

> Nick Dokos  writes:
> 
> > Check your load-path - sometimes, packages take too many freedoms with
> > it.
> 
> Here is my load-path :
> 
> (setq load-path
>   (append load-path
>   (list
>"~/.emacs.d/elisp"
>"~/.emacs.d/etc"
>"~/.emacs.d/elisp/yasnippet-0.5.10"
>"~/.emacs.d/elisp/org-mode/lisp"
>"~/.emacs.d/elisp/org-mode/contrib/lisp")))
> 
> I don't see anything that could be wrong.
> 

Well, you are appending your stuff at the end of whatever emacs sets it to,
so it prefers *its* directories over yours.

I also meant that you should ask emacs what *it* thinks its load path is:

  C-h v load-path

That may differ wildly from what you think it is.

As an aside, I think (but I am not sure) that part of the debian/ubuntu
problem that people have been running into is that the convoluted
loading of packages causes load-path to be set in such a way that the
user *cannot* override the setting from his/her own init files; one has
to find and edit/delete system files (in /etc/emacs or thereabouts).

> > locate-library is also useful to see from where a package is loaded:
> >
> >(locate-library "htmlize")
> 
> You are right. I tend to forget about this function. Alas, in that case,
> this will give me the "who" but not the "why".
> 

It's another debugging tool. In combination with the value of load-path,
it can guide you in the right direction.

Nick


___
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


[Orgmode] Re: A MindMap export would be awesome

2009-07-12 Thread Leo
On 2009-07-07 20:33 +0100, Tassilo Horn wrote:
> Maybe there a special LaTeX styles for that.  Google came up with
> something called PGF/TikZ.  Or maybe there are generators for creating
> SVG mindmaps, I don't know...

It would be more interesting to have one that uses pgf/tikz than
freemind mentioned in other threads.

-- 
Leo's Emacs uptime: 32 days, 5 hours, 41 minutes, 47 seconds



___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Nicolas Goaziou
Nick Dokos  writes:

> Check your load-path - sometimes, packages take too many freedoms with
> it.

Here is my load-path :

(setq load-path
  (append load-path
  (list
   "~/.emacs.d/elisp"
   "~/.emacs.d/etc"
   "~/.emacs.d/elisp/yasnippet-0.5.10"
   "~/.emacs.d/elisp/org-mode/lisp"
   "~/.emacs.d/elisp/org-mode/contrib/lisp")))

I don't see anything that could be wrong.

> locate-library is also useful to see from where a package is loaded:
>
>(locate-library "htmlize")

You are right. I tend to forget about this function. Alas, in that case,
this will give me the "who" but not the "why".

-- 
Nicolas Goaziou



___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Nick Dokos
Nicolas Goaziou  wrote:

> ...
> 
> Though, I still wonder why htmlize.elc in /usr was taking precedence
> over the one in the contrib directory, even after I had compiled it.
> 

Check your load-path - sometimes, packages take too many freedoms with
it.

locate-library is also useful to see from where a package is loaded:

   (locate-library "htmlize")

HTH,
Nick


___
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


[Orgmode] Possible bug with refile

2009-07-12 Thread Richard Riley

My org-mode usage had become a bit messy so I decided to go back to
first principles and follow through Bernd Hansen's tutorial here

http://doc.norang.ca/org-mode.html#sec-1

One real eye opener was the completion on category levels inside files as
described here:

http://doc.norang.ca/org-mode.html#Refiling

(The use of refile as a staging area makes everything a lot easier IMO too).

Anyway I removed my numerous agenda-files from my org.el settings and have:

  (setq org-refile-targets (quote ((org-agenda-files :maxlevel . 5)
  (nil :maxlevel . 5

where org-agenda-files is set to a *directory name* as described in the
manual.

This set up causes the following error when trying to refile from within
a new org item buffer (C-c C-w).

,
|   expand-file-name(nil)
|   org-get-refile-targets(nil)
|   org-refile-get-location("Refile to: " nil nil)
|   org-refile(nil)
|   call-interactively(org-refile nil nil)
`

regards

r.


___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Nicolas Goaziou
Dan Davison  writes:

> I think this is caused by a problem with an Emacs component called
> htmlize, when used on Emacs 23 (are you using Emacs 23?). 

I am.

> (add-to-list 'load-path "location/of/org-mode/contrib/lisp")
> (require 'htmlize)

Well, after putting that in my .emacs, byte-compiling htmlize.el *and*
renaming every single file named htmlize.el[c] in my /usr hierarchy, it
now works.

I owe you a thank you.

Though, I still wonder why htmlize.elc in /usr was taking precedence
over the one in the contrib directory, even after I had compiled it.

-- 
Nicolas Goaziou



___
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


Re: [Orgmode] Agenda export to html error

2009-07-12 Thread Dan Davison
Nicolas Goaziou  writes:

> Hello,
>
> When I try to export my agenda view to html (C-x C-w test.html), I get
> an "Invalid face" error in the minibuffer and no output file. The
> Message buffer tells me "face-attribute: Invalid face".
>
> Exporting to postscript works well though.
>
> I have tried with and without setting org-todo-keyword-faces with no
> success.
>
> Would anyone have a clue about this problem ?

I think this is caused by a problem with an Emacs component called
htmlize, when used on Emacs 23 (are you using Emacs 23?). Carsten has
put the appropriate new version of htmlize.el into the
org-mode/contrib/lisp directory, to address this problem. So my
suggestion is to try

(add-to-list 'load-path "location/of/org-mode/contrib/lisp")
(require 'htmlize)

and see if that fixes it (The aim is to make sure that the version of
htmlize in org-mode/contrib/lisp gets used as opposed to the version
that comes with Emacs).

Dan

>
> Thanks,
>
> --
> Nicolas Goaziou
>
>
>
> ___
> 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


___
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


[Orgmode] Agenda export to html error

2009-07-12 Thread Nicolas Goaziou
Hello,

When I try to export my agenda view to html (C-x C-w test.html), I get
an "Invalid face" error in the minibuffer and no output file. The
Message buffer tells me "face-attribute: Invalid face".

Exporting to postscript works well though.

I have tried with and without setting org-todo-keyword-faces with no
success.

Would anyone have a clue about this problem ?

Thanks,

--
Nicolas Goaziou



___
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