Re: [Orgmode] Re: Themes Compatible with color-theme.el

2010-10-09 Thread David O'Toole
Hi everyone, I have a theme with Org customizations called color-theme-folio. it's not done yet, but works fine so far. I'd be happy to make a few more changes and contribute it under whatever license. http://github.com/dto/emacs-config/blob/master/folio.el On Sat, Oct 9, 2010 at 11:54 AM, Yavuz

Re: [Orgmode] Re: Themes Compatible with color-theme.el

2010-10-10 Thread David O'Toole
Done. There are actually two themes here, one dark and one medium in brightness. These probably only work well on relatively high-contrast LCD or similar flat panels. http://github.com/dto/emacs-config On Sun, Oct 10, 2010 at 3:54 AM, Ian Barton wrote: > On 09/10/10 19:42, David O'Too

[Orgmode] Org-babel games screencast

2010-11-26 Thread David O'Toole
Here's a presentation I made, sorry it's a bit rough but here goes: http://lispgamesdev.blogspot.com/2010/11/lisp-game-development-screencast-1.html ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

Re: [Orgmode] Fontification of blocks

2010-12-10 Thread David O'Toole
Hi Sebastien, I give a definite Vote++ to this feature! 2010/12/10 Sébastien Vauban : > Hi, > > In order to make the blocks stand out more clearly in the mix of prose, code > and table results of many Babel Org files, I've added 2 new faces: > > - org-block-begin-line > - org-block-end-line > > T

[Orgmode] [BABEL] literate Lisp games development questions

2010-07-02 Thread David O'Toole
Hello orgmoders. We on freenode#lispgames are having the month-long 2010 International Lisp Games Expo, and I'd like to apply literate programming principles, using org-babel, to Lisp game development. I have several reasons for doing this. The resources for a given game object or entity may be sc

[Orgmode] Re: [BABEL] literate Lisp games development questions

2010-07-03 Thread David O'Toole
Hi Dan I looked at your notes in the icons repo, perhaps we can come up with a brief org file that is the official community standard for the icon themes. On Fri, Jul 2, 2010 at 6:33 PM, Dan Davison wrote: > <...> > > Hi David, > > That sounds fun, and I look forward to looking at it, when I h

[Orgmode] hypermedia programming with babel

2010-07-04 Thread David O'Toole
Since discovering org babel, I've been doing a lot of reading and brainstorming, and have collected some thoughts/code/plans in several places: 1. http://github.com/dto/org-babel-lisp Some very basic compatibility. I'm not experienced enough with either babel or slime, perhaps someone can help m

Re: [Orgmode] hypermedia programming with babel

2010-07-05 Thread David O'Toole
ram, or can you just link to my current repo? Either way, it's not quite ready for being on the webpage :) but I see it as a discussion topic here. Do others have thoughts or experiences with multimedia and babel or org? On Mon, Jul 5, 2010 at 4:15 PM, Eric Schulte wrote: > Hi David,

meta model for literate programming [pdf] Re: [Orgmode] hypermedia programming with babel

2010-07-05 Thread David O'Toole
An interesting paper! http://www.cosc.canterbury.ac.nz/research/reports/HonsReps/1999/hons_9902.pdf On Mon, Jul 5, 2010 at 4:15 PM, Eric Schulte wrote: > Hi David, > > "David O'Toole" writes: > > > Since discovering org babel, I've been doing a lot of r

[Orgmode] imenu support for babel blocks

2010-07-17 Thread David O'Toole
I tried the following to get an Imenu composed of babel blocks, so that you could browse/jump to blocks. But it doesn't seem to work, I'm guessing that something about how org-mode builds the imenu-generic-expression overwrites my entry. Is there a hook (or could there be a hook added) that allows

Re: [Orgmode] Captions for source code

2010-07-22 Thread David O'Toole
I'll look into this as well, as it relates to my earlier question about building an imenu full of block names. On Thu, Jul 22, 2010 at 3:20 PM, Eric Schulte wrote: > Hi Robert, > > Currently captions are only supported for Tables and for Links, not for > code blocks.  Although the "caption" attri

Re: [Orgmode] [BABEL] help adding a language, please?

2010-07-22 Thread David O'Toole
Is there an instruction manual documenting how the new org-babel language extensions should work? This would really be helpful, because I had trouble figuring out how to make sessions work in the pre-7.0 api (i'm adding Common Lisp support.) Documenting for how a language extension is supposed to b

Re: [Orgmode] [BABEL] help adding a language, please?

2010-07-23 Thread David O'Toole
me know if you see any > avenues of improvement. > > -- Eric > > "David O'Toole" writes: > >> Is there an instruction manual documenting how the new org-babel >> language extensions should work? This would really be helpful, because >> I had tr

[Orgmode] Common Lisp / SLIME support for babel

2010-07-30 Thread David O'Toole
Hi, I've updated my proposed ob-lisp module for the new API. I am now using org updated from git head. http://github.com/dto/org-babel-lisp Despite having the ob-template.el and ob-clojure modules, I'm still stuck making sessions work properly. Executing successive statements with an already-open

[Orgmode] user control of source block header line exporting formats

2010-07-31 Thread David O'Toole
I've attached a diff of my apparently-working changes to allow better control of the way ob-exp.el formats the name and arguments of source code blocks. What do you think? diff --git a/lisp/ob-exp.el b/lisp/ob-exp.el index 796812c..0c34431 100644 --- a/lisp/ob-exp.el +++ b/lisp/ob-exp.el @@ -206,4

Re: [Orgmode] Common Lisp / SLIME support for babel

2010-08-03 Thread David O'Toole
gt; basic session and external evaluation are both working on my system > using SBCL. > > It is now also possible to pass variables into lisp blocks. > > It certainly needs more cleanup and testing, but this initial pass is up > at http://github.com/eschulte/org-babel-lisp > > C

[Orgmode] camel.el, for CamelCase links

2010-08-03 Thread David O'Toole
http://github.com/dto/folio/blob/master/camel.el Someone asked about this recently, i have some partially working code. Anyone want to try? ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://l

[Orgmode] [PATCH] Mode-specific fontification of babel source blocks

2010-08-03 Thread David O'Toole
I've got a preliminary patch that adds optional "native" fontification for source blocks. It uses the block's declared mode to fontify the block text. So now blocks look the way they should, and this opens the way to further enhancements. Anyone up for an icons theme standard discussion? diff --git

[Orgmode] Re: [PATCH] Mode-specific fontification of babel source blocks

2010-08-03 Thread David O'Toole
I've placed a screenshot of the fontification here: http://imagebin.ca/view/iRVK_as7.html On Tue, Aug 3, 2010 at 7:12 PM, David O'Toole wrote: > I've got a preliminary patch that adds optional "native" fontification > for source blocks. It uses the block's

[Orgmode] Re: [PATCH] Mode-specific fontification of babel source blocks

2010-08-03 Thread David O'Toole
help? On Tue, Aug 3, 2010 at 10:55 PM, Dan Davison wrote: > "David O'Toole" writes: > >> I've got a preliminary patch that adds optional "native" fontification >> for source blocks. It uses the block's declared mode to fontify the >> bl

[Orgmode] request for comments on org icon theme standards

2010-08-04 Thread David O'Toole
There's been some interest in embedding graphical icons and other indicators into org-mode buffers to increase readability and reduce clutter. One nice icon set based on the Tango color scheme has been released, and it would be useful to define icon themes for org so that the eventual org-icons con

Re: [Orgmode] Org now fontifies code blocks

2010-09-06 Thread David O'Toole
hi everyone, sorry for my silence, I had very little internet access on my seaside vacation. thanks so much everyone for making my dream of fontified source blocks a reality :) On Fri, Sep 3, 2010 at 3:10 PM, Thomas S. Dye wrote: > Aloha Dan, > > This is really nice.  Thanks for shepherding it a

Re: [Orgmode] Re: Org now fontifies code blocks

2010-09-06 Thread David O'Toole
maybe there could be an on-by-default variable called org-warn-when-editing-src-block-in-org-buffer, or make the text readonly, etc. making this on-by-default would seem to create another discussion about things being on-by-default :) however, if fontification is on by default, then this should a

Re: [Orgmode] Re: Org now fontifies code blocks

2010-09-06 Thread David O'Toole
I agree Bastien :) On Mon, Sep 6, 2010 at 2:30 PM, Bastien wrote: > If setting org-src-fontify-natively to `t' by default triggers a debate > on whether we need to set org-warn-when-editing-src-block-in-org-buffer > on or off by default, I'd rather set org-src-fontify-natively off by > default...

Re: [O] org-mode fontification error when exporting to LaTeX

2011-07-12 Thread David O'Toole
Hi, try doing (setq debug-on-error t) and then re-export; this should give you a backtrace. but sometimes fontification stuff can have errors without backtraces. try checking the *Messages* buffer. misbehaving font-lock rules and improperly defined faces can also be issues. On Tue, Jul 12, 2011

[O] wolfram's computable document format

2011-07-21 Thread David O'Toole
http://www.wolfram.com/cdf/ Looks nice, and could be very interesting to orgmoders.

[O] documentary filmmaking and reproducible research?

2011-03-14 Thread David O'Toole
Greetings, org community. A while back I made two short (less than 10 minute) amateur documentary films. I used org-mode to outline everything, structure my notes and the many public domain texts/images I used, and coordinate the recording process for the voiceovers. I've also separately experiment

Re: [O] ob-lilypond

2011-06-28 Thread David O'Toole
this is fantastic :) org mode is becoming like the Jupiter of the emacsian solar system. On Tue, Jun 28, 2011 at 8:11 AM, Christian Moe wrote: > Hi, > > I'm thrilled that Lilypond has been added to Babel, grateful for the extra > thought given to Mac users -- and completely bowled over by your d

[Orgmode] pretty icons in org buffers

2009-06-21 Thread David O'Toole
I've been re-entering my life data into Orgmode after about a year of just using a palm pilot. So I would like to contribute something to the org community again. A while back I wrote some elisp code for displaying bitmap icons as overlays in org buffers (screenshots at http://dto.github.com/notebo

[Orgmode] org-plotting with date as the independent variable

2009-06-23 Thread David O'Toole
I'm having trouble with org-plotting data that is captured on certain dates over time, like my bodyweight. My table looks like this, but the plotting seems to be very wrong: #+PLOT: ind:1 timefmt:"%Y-%m-%d" with:points | Date | Weight | |+| | 2008-09-26 |266 | | 2008-

Re: [Orgmode] [ANN] org-icons.el

2009-06-23 Thread David O'Toole
Hi everyone, I really like Nicolas' icons, and I am developing an Emacs color-theme that coordinates with them (screenshots soon!) I've also agreed to help out with the code, since I wrote some similar stuff a while back. Carsten: right now this code requires a patch to org.el, but I'm not sure h

Re: [Orgmode] [ANN] org-icons.el

2009-06-23 Thread David O'Toole
I'm sorry, the patch is in Nicolas' github repo: http://github.com/ngirard/org-icons/blob/b8be3d85b87c4fe6ce31cdc931fd1b77bb170a5c/lisp/org-icons.patch On Tue, Jun 23, 2009 at 7:11 PM, Bastien wrote: > "David O'Toole" writes: > > > Carsten: right now this

Re: [Orgmode] [ANN] org-icons.el

2009-06-24 Thread David O'Toole
> On Wed, Jun 24, 2009 at 7:56 AM, Carsten Dominik < carsten.domi...@gmail.com> wrote: > > To be honest, I was not excited when I first saw David's icons. > Yours look a lot better - but I don't expect to use them myself. Well I'm no visual artist :) I like nicolas' icons better too. I've even cha

[Orgmode] org and htmlfontify

2009-09-19 Thread David O'Toole
Hello orgmoders. I thought I would share my custom publishing function for using htmlfontify together with org-publish to automatically convert Lisp source code files into HTML with my own custom-inserted anchors. The lisp snippet is below. This was used to make the HTML links in my developer docu

[Orgmode] fontification and icon issues

2009-09-22 Thread David O'Toole
A couple of issues: 1. org-fontify-whole-heading-line and org-startup-indented seem to conflict with one another. See screenshot: http://dto.github.com/images/folio.png The headline background color extends to the next line. The problem goes away when you set org-startup-indented to nil and M-x

[Orgmode] orgstruct-mode keybindings don't work

2007-12-14 Thread David O'Toole
I'm using orgstruct-mode in my elisp files (i.e. turn-on-orgstruct is in the emacs-lisp-mode-hook.) Local value of outline regexp is: ";;;\\(;* [^ ]\\|###autoload\\)\\|(" None of the orgstruct commands/keybindings work; C-h k shows that M-right has the org-hijacker command bound to it, but execut

[Orgmode] Org Radio

2007-12-17 Thread David O'Toole
I'm writing an add-on for Org (again!) This one is called radio.el. It lets you annotate files (or even individual lines within files) with arbitrary org subtrees. This program is very preliminary, but it does work, and I'd be interested to hear people's thoughts. I have an audio-related applicat

[Orgmode] my GTD setup

2007-12-21 Thread David O'Toole
will actually stick with it and get used to the process. Enjoy! ;;; org-gtd.el --- dto's org-mode configuration for GTD ;; Copyright (C) 2007 David O'Toole ;; Author: David O'Toole(require 'org) <[EMAIL PROTECTED]> ;; Keywords: tools ;; This file is free software; you ca

Re: [Orgmode] Org Radio

2007-12-24 Thread David O'Toole
ils on the GPLv3 thing you are referring to? --dave From: Bastien <[EMAIL PROTECTED]> Subject: Re: [Orgmode] Org Radio Date: Sat, 22 Dec 2007 19:49:34 +0100 > Hi David, > > "David O'Toole" <[EMAIL PROTECTED]> writes: > > > I'm writing an add

Re: [Orgmode] Re: my GTD setup

2007-12-24 Thread David O'Toole
Hi Ivan, > Hi David, thanks for sharing your setup. Could you, please, fix mew so > that it does not wrap your lisp? I find it unreadable. Certainly! I just got started with Mew so I am still configuring. > Do you know there is a book called "Getting Things Done" ? I suggest you > buy it ;) >

[Orgmode] [OT] org-musicians :-)

2007-12-24 Thread David O'Toole
> Weird stuff this, but perhaps linux/emacs/gtd does attract a certain > sort of person (geek musicians ?) ? I'm also a musician (mainly jazz > pianist these days). Heh, I am also one of those linux/emacs/gtd music geeks :-) Here is a song from our band: http://dto.twu.net/thedivinepersonality

Re: [Orgmode] Announcing Worg (Web-Org)

2008-01-13 Thread David O'Toole
Hi Bastien, Now that the holidays are over, I am back to hacking. I'd like to write some org-modematerial (perhaps on GTD, perhaps other stuff) and maybe it would make sense to contribute my org-radio annotator thing to the repository (if anyone is interested). On 1/7/08, Bastien <[EMAIL PROT

[Orgmode] Re: Announcing Worg (Web-Org)

2008-01-16 Thread David O'Toole
file.) On Jan 16, 2008 4:48 AM, Phil Jackson <[EMAIL PROTECTED]> wrote: > David, > > Bastien <[EMAIL PROTECTED]> writes: > > > "David O'Toole" <[EMAIL PROTECTED]> writes: > >> Now that the holidays are over, I am back t

[Orgmode] org-publish.el v1.81 is out

2008-01-16 Thread David O'Toole
I have a new version of org-publish.el, with an experimental new feature called "project templates." It helps you factor out common parts of org-publish projects, which is useful when you have project directories that have subproject directories that also need to be published. There's no manual e

[Orgmode] Re: Announcing Worg (Web-Org)

2008-01-16 Thread David O'Toole
ndard location for the file (it's an hourly svn update), and I'm happy to take feature requests / bug reports on this list. On Jan 16, 2008 9:36 AM, David O'Toole <[EMAIL PROTECTED]> wrote: > http://dto.mamalala.org/eon/radio.el > > I haven't worked on it in a little

[Orgmode] thousands of Invalid face attribute messages

2008-03-26 Thread David O'Toole
When I open an org-mode file I start to get these errors in the message-buffer. Debug-on-error does not seem to work because it's apparently happening during redisplay. Invalid face attribute :bold t [1133 times] I removed all instances of :bold t from my color theme file, so I don't think it's m

[Orgmode] blorg users?

2008-06-25 Thread David O'Toole
I've abandoned my old program "org-blog.el" and have started to set up Bastien's "Blorg" software. But there seems to be a lot of templates to customize, and I also have to come up with styles. Are there any other blorg users out there who would share their configs and templates with me, and maybe

[Orgmode] org-publish

2008-08-19 Thread David O'Toole
I have some ideas for changes to org-publish. I am helping someone set up a content-heavy site using Emacs and Org-Mode, and we ran into several problems that I would like to fix. We have workarounds in place but these immediately suggested interesting fixes. For example it doesn't seem possible to

[Orgmode] HTML export problems

2008-08-23 Thread David O'Toole
The first paragraph before any heading is exported, but without surrounding P paragraph tags; the remaining paragraphs (whether before other headings, or after those headings) all have P tags and this is messing up the styling. I'm using org-version 6.06b. #+OPTIONS skip:nil is on.

Re: [Orgmode] Re: HTML export problems

2008-08-23 Thread David O'Toole
Specification conformance is beside the point, it is still a bug. We are unable to properly style this first paragraph because it has no P tag, and therefore the styles that apply to the P tag in our css don't work. On Sat, 2008-08-23 at 13:17 -0700, Jesse Alama wrote: > David O'

[Orgmode] orgmode and physical fitness training

2008-10-14 Thread David O'Toole
Recently I hired a personal trainer to manage my strength training program. There is a lot of data to keep track of: 1. timestamped records of what I eat --- these are reviewed by my trainer and I want to go back and annotate things that i should cut out. It will also be useful to look these up

[Orgmode] RE: orgmode and physical fitness training

2008-10-17 Thread David O'Toole
I've started a basic "training.org" file and added some data. So far I can get a nice columns view of my weight and body-fat percentage. There is much more to be done (in particular tracking poundages) but perhaps others will have responses or suggestions. I'll continue posting tidbits as I move mo

[Emacs-orgmode] Adapting org-mode to my needs

2006-04-18 Thread David O'Toole
Hi folks. I was a heavy planner.el user for about 2 years, then switched to howm-mode for about a year, then switched back to Planner, and have finally decided to seek a middle ground. In my view, Org-mode combines about 98% of everything I liked from both Planner-mode and Howm-mode. I'm alread

[Emacs-orgmode] font-locking TODO in agenda view

2006-04-18 Thread David O'Toole
Hi again Org folks! 1. I'm wondering about the font-locking in the Agenda view when TODO items are scheduled for a particular day (or even when TODO items are included via ...include-all-todo variable.) I can't get them to font-lock, which means I have no color-coding of which tasks

[Emacs-orgmode] Adapting org-mode to my needs

2006-04-18 Thread David O'Toole
My apologies if this is a double-posting; for some reason I'm having trouble sending emails to this list. (Ops, perhaps you can help out?) . and now for the message itself. I was a heavy planner.el user for about 2 years, then switched to howm-mode for about a year, then switched back to P

Re: [Emacs-orgmode] font-locking TODO in agenda view

2006-04-18 Thread David O'Toole
Carsten Dominik <[EMAIL PROTECTED]> writes: > TODO items are not fontified currently in the agenda buffer, that is > correct. Maybe they should? Mayb I should make the TODO red This would be perfect! > The entire entry does get green if you switch an item from TODO to > DONE, using the "t

Re: [Emacs-orgmode] Adapting org-mode to my needs

2006-04-19 Thread David O'Toole
Carsten Dominik <[EMAIL PROTECTED]> writes: > If this is 2%, then you must make heavy use of org-mode. :-) Heheheh :-) actually I am only using org-mode on a test basis, with an eye toward using it as my primary organizer soon. I meant that org-mode seems to do 98% of what I am currently getti

Re: [Emacs-orgmode] Re: font-locking TODO in agenda view

2006-04-19 Thread David O'Toole
Bizarrely enough, it fails with wget, but works when pasted in Mozilla... wget http://www.astro.uva.nl/~dominik/public_html/Tools/org/org-testfaces.zip --18:19:57-- http://www.astro.uva.nl/~dominik/public_html/Tools/org/org-testfaces.zip => `org-testfaces.zip' Resolving www.astro.uv

Re: [Emacs-orgmode] font-locking TODO in agenda view

2006-04-19 Thread David O'Toole
> This works now in the new test version 4.24b > > http://www.astro.uva.nl/~dominik/public_html/org/org-testfaces.zip > Works great! Thanks so much. I should note, that it only font-locks TODO/DONE entries that are SCHEDULED: . Maybe this is intentional, I don't know. I take it that SCHEDULED i

Re: [Emacs-orgmode] Adapting org-mode to my needs

2006-04-20 Thread David O'Toole
;; Hi Carsten. In this email you'll find my thoughts on improving the ;; html export features of org-mode. ;; Contents: ;; + data structure for publishing configuration info ;; + suggestions on how to get this data into org-export ;; functions ;; + other sugges

Re: [Emacs-orgmode] Adapting org-mode to my needs

2006-04-21 Thread David O'Toole
Looks good to me! Thank you for doing this. Once I have the updated version of org-mode, I will write and test my publishing functions (including something that manufactures an index of all the pages in a project, and possibly produces other reports.) I have some more thoughts on org-mode but I

[Emacs-orgmode] Re: org-mode usage patterns

2006-04-26 Thread David O'Toole
Hi Piotr, As a relatively new org user, I have been wanting to see a discussion of usage patterns and file structures. So, I'm glad you asked, and perhaps this will help get people talking. Here's a little about my org usage patterns. This isn't complete because I've only been using org less t

[Emacs-orgmode] [Announce] org-publish.el: configurable website publishing support for org-mode

2006-04-27 Thread David O'Toole
Hi there org-moders, I've extended the HTML publishing support of Emacs Org-mode to allow configurable publishing of related sets of files as a complete website. My extensions thus far are collected in org-publish.el, and are used to upload and manage my entire site. org-publish.el can current

[Emacs-orgmode] global todo list: separators?

2006-04-27 Thread David O'Toole
Is it possible to have horizontal rules separating the different categories in the Global TODO list? That would make it much easier for me to read when I am hunting for tasks to schedule. I'd like it to look like this: DiscreteMath: TODO Review through Ch. 2 of LADM --

[Emacs-orgmode] HTML rendering of Gnus links

2006-04-27 Thread David O'Toole
This is probably a nitpick :-) but mine render like this: Wouldn't it make more sense for them to render as E-Mail from Joe Smith RE: subject ? -- Dave O'Toole [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.g

[Emacs-orgmode] org-timeclock.el

2006-04-28 Thread David O'Toole
I was bored this morning, and decided to add basic support for timeclock.el to org-mode. My preliminary hack is available from: http://dto.freeshell.org/e/org-timeclock.el Supports only basic functions: M-x org-timeclock-in M-x org-timeclock-out Also automatically clocks

[Emacs-orgmode] org-mode issues i'm having

2006-04-28 Thread David O'Toole
1. Links that target specific text in a file, do not work properly: - [[file:~/emacs/org-4.27/org.el::defcustom%20org%20after%20todo%20state%20change%20hook%20nil][file:~/emacs/org-4.27/org.el::defcustom org after todo state change hook nil]] - [[file:~/emacs/org-4.27/org.el::defvar%20or

[Emacs-orgmode] error message when archiving last subtree in file

2006-04-29 Thread David O'Toole
Copied: Subtree with 735 characters Pasted at level 1, with shift by -1 levels Wrote /home/dto/org/OrgMode.org_archive Cut: Subtree with 735 characters kill-line: End of buffer -- Dave O'Toole [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Emacs-o

[Emacs-orgmode] publishing e-scripts with org-publish.el

2006-04-29 Thread David O'Toole
I've added preliminary support for publishing e-scripts with org-publish.el. What are e-scripts? >From my webpage: "plain-text documents that contain commentary, executable emacs lisp hyperlinks, and specially marked segments of executable shell script code, meant to be triggered one at a ti

[Emacs-orgmode] HTML formatting of * QUOTE headings

2006-04-29 Thread David O'Toole
The actual quoted text renders nicely :-) but for some reason the word QUOTE is still showing up as a heading. Shouldn't it be considered a directive to the formatter and just disappear? I'm not sure why I would want a heading that says QUOTE in the outputted html. Can it be enabled for us to tu

[Emacs-orgmode] Handling of inline images

2006-04-30 Thread David O'Toole
Currently if you do this: [[file:path_to_image][Description]] the description seems to be thrown away and there seems to be no way to link to an image inline in one place, not inline in another place. I'd like to propose that when inline-images is on for a document, the following link: fil

[Emacs-orgmode] illustrated brief tutorial for org-mode

2006-05-04 Thread David O'Toole
Hi all. I've made an illustrated tutorial for org-mode. This tutorial only covers the most basic features and only a few situations, but it is profusely illustrated with screenshots and could help new users get an idea of how org-mode looks and feels. It's meant as a sort of brief guided tour. h

Re: [Emacs-orgmode] fancier and less fancy export

2006-05-08 Thread David O'Toole
;ve got very interesting xoxo > export capability and the nice new code written by David O'Toole. > This is great stuff but to a new user, these multiple and somewhat > overlapping choices are bound to be confusing. Will all this good > code eventually get merged into a u

[Emacs-orgmode] Updated org-publish.el

2006-05-09 Thread David O'Toole
I've released org-publish, version 1.45 today. You can download it from my little org-mode page: http://dto.freeshell.org/notebook/OrgMode.html This is mostly a bugfix release. Thanks all to everyone who reported bugs, you know who you are :-) --- Li

Re: [Emacs-orgmode] Org-mode 4.29

2006-05-12 Thread David O'Toole
I'm getting an error when I try to schedule a TODO item from the global TODO list using C-c C-s. I've pasted the backtrace below. Debugger entered--Lisp error: (wrong-type-argument stringp nil) re-search-forward(nil nil t) (and (eq elt (quote closed)) (re-search-forward org-closed-time-regex

[Emacs-orgmode] [Announce] Org-publish 1.56

2006-05-12 Thread David O'Toole
Org-publish version 1.56 has been released. You may obtain it from: http://dto.freeshell.org/e/org-publish.el History of user-visible changes: 1.52: Properly set default for :index-filename 1.48: Composite projects allowed. :include keyword allowed. 1.43: Index no longer inclu

[Emacs-orgmode] [Announce] org-blog 1.14

2006-05-15 Thread David O'Toole
I'm pleased to announce the availability of version 1.14 of org-blog. This is the first "official" release. Org-blog is an add-on to org-publish.el that allows simple blog publishing with Org-mode markup. You'll need org-publish.el to use it. You can obtain both from: http://dto.freeshell.org/no

Re: [Emacs-orgmode] configurable link export

2006-05-20 Thread David O'Toole
Carsten Dominik <[EMAIL PROTECTED]> writes: > Anyway, I have been thinking about your argumentation and come to the > conclusion that this is an issue I would like to push almost entirely > onto Davids table. David, are you listening? :-) Yes :-) > way, would be that the structure and content

[Emacs-orgmode] Org-publish v1.67

2006-05-30 Thread David O'Toole
Hi folks, I've released org-publish v1.67 on my website. http://dto.freeshell.org/e/org-publish.el NOTE: This version contains an incompatible configuration change. You might have to update your org-publish-project-alist. See the docstring for org-publish-project-alist, for details on the chan

Re: [Emacs-orgmode] org-publish bug

2006-06-05 Thread David O'Toole
Just to be clear, I don't have the solution to this, but had also noticed it.. Xavier Maillard <[EMAIL PROTECTED]> writes: > Hello, > > As promised to David, just a quick message to inform you that there is a bug > with org-publish. > > In my ColorTheme.org file, I have this: > > Add this to

[David O'Toole] Fwd: Re: [Emacs-orgmode] org-publish future ?

2006-06-05 Thread David O'Toole
I'm forwarding my response to the list, as I mistakenly sent it only to Xavier... --- Begin Message --- Hi Xavier, Muse is for people who wish to write all their documents with a single markup syntax, and produce multiple target output formats from this input. One result of this is that the ma

[Emacs-orgmode] timestamps and work logging

2006-06-06 Thread David O'Toole
Hi Carsten. I have another modest proposal for you :-) I notice that org-mode has a concept of timestamp ranges, and a function to calculate the length of time in a given timestamp range. It seems to me that with a small amount of additional work, org-mode could: 1. Provide a function org-clock

Re: [David O'Toole] Fwd: Re: [Emacs-orgmode] org-publish future ?

2006-06-06 Thread David O'Toole
I tend to agree... I wasn't that hot about this possibility myself, but thought it would be prudent to ask. Carsten Dominik <[EMAIL PROTECTED]> writes: > On Jun 5, 2006, at 23:19, David O'Toole wrote: >> >> On a related note, Carsten are you reading? Somethi

[Emacs-orgmode] org-publish.el v1.70

2006-06-07 Thread David O'Toole
originally requested by Austin Frank (hi austin!) Be advised, this feature is in its early stages, and could be totally wrong :-) -- David O'Toole -- Independent Consultant [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http:

Re: [Emacs-orgmode] Re: [David O'Toole] Fwd: Re: org-publish future ?

2006-06-07 Thread David O'Toole
le-of-contents t > :style " type=\"text/css\">")) > > When I do M-x org-publish bright the *.org files in ~/bright are published, > but the included files are not. I also tried with filenames relative to > ~/public/org; same result. How should I be setting :inc

[Emacs-orgmode] org-publish v1.71

2006-06-08 Thread David O'Toole
ot;)) >> >> When I do M-x org-publish bright the *.org files in ~/bright are >> published, >> but the included files are not. I also tried with filenames relative >> to >> ~/public/org; same result. How should I be setting :include? >> >> This is with

Re: [Emacs-orgmode] org-publish v1.71

2006-06-10 Thread David O'Toole
-directory setting and set things on a per-file basis. Carsten, what do you think? "Chris wallace" <[EMAIL PROTECTED]> writes: > On 08/06/06, David O'Toole <[EMAIL PROTECTED]> wrote: >> >> >> Bugfix release. Should now allow absolute filenames in the

Re: [Emacs-orgmode] org-publish error

2006-06-22 Thread David O'Toole
call-interactively ...) > (error "No command associated with key %c" r1))) > org-export() > call-interactively(org-export) > > -- > Leon > > > > ___ > Emacs-orgmode mailing list > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode -- David O'Toole [EMAIL PROTECTED] http://dto.freeshell.org/notebook/ ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: [Emacs-orgmode] Problem with org-publish-get-plists

2006-09-06 Thread David O'Toole
f seeing what everybody has seen > and thinking what nobody has thought. > > > ___ > Emacs-orgmode mailing list > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > -- David O'Toole [EMAIL PROTECTED] http://dto.freeshell.org/notebook/ ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Updated org-publish.el

2006-09-06 Thread David O'Toole
Hello folks, the new version is available at my site. http://dto.freeshell.org/e/org-publish.el This is a bugfix release: - Emacs 21 compatibility fix for timestamps. - Bugfix for problem with projects getting assigned to files wrong. -- David O'Toole [EMAIL PROTECTED]

[Orgmode] org-publish.el version 1.77: now with preparation-function feature

2006-09-07 Thread David O'Toole
n (lambda () >(call-process "make" nil nil nil > "--makefile" > "/home/dto/packages/Makefile"))) This causes the *.gz to be updated when neccessary (according to the makefile) and then any

[Orgmode] org-publish.el v1.78

2006-09-10 Thread David O'Toole
.html exported versions, so now i just write in my project definition: :publishing-function (org-publish-org-to-html org-publish-attachment) -- David O'Toole [EMAIL PROTECTED] http://dto.freeshell.org/notebook/ ___ Emacs-orgmode mailing

Re: [Orgmode] Org-mode usage and concept mapping.

2006-09-10 Thread David O'Toole
something. --- Concept1 Concept2:link1: Concept 4 :link2: Concept3:link1: Concept5:link3: Concept4 :link3: ---

Re: [Orgmode] "Invalid function" error with org-publish-project-alist

2006-09-14 Thread David O'Toole
oad cdlatex for frags > (autoload 'cdlatex-mode "cdlatex" "CDLaTeX Mode" t) > (autoload 'turn-on-cdlatex "cdlatex" "CDLaTeX Mode" nil) > (add-hook 'org-mode-hook 'turn-on-org-cdlatex) > > ;; > ;; end org-config.el > ;;

[Orgmode] Basic RSS support for org-blog

2006-10-25 Thread David O'Toole
Org-blog is still pretty basic, but it now produces valid RSS 2.0 feeds. See http://dto.freeshell.org/e/org-blog.el for the code, and http://dto.freeshell.org/blog/blog.xml for the results! -- David O'Toole [EMAIL PROTECTED] http://dto.freeshell.org/not

Re: [Orgmode] Org-mode version 4.68

2007-03-17 Thread David O'Toole
think >> forced re-publication should create these directories itself. > > I have forwarded this mail to David O'Toole, to find out if he still > feels responsible for changes in org-publish. Lets wait if he responds. -- David O'Toole [EMAIL PROTECTED] http://dto.frees

[Orgmode] org-publish.el 1.80

2007-03-21 Thread David O'Toole
those suggestions and keep you posted on what changes I will make. -- David O'Toole [EMAIL PROTECTED] http://dto.freeshell.org/notebook/ ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] Org-mode with color-theme.el

2007-04-05 Thread David O'Toole
Hello org folks! I've posted a screen shot of my color theme called "CL-FRAME" and it includes org-mode faces. shot: http://dto.freeshell.org/images/org-faces-shot.png lisp: http://dto.freeshell.org/e/color-theme-cl-frame.png On 4/5/07, Bastien <[EMAIL PROTECTED]> wrote: Bastien <[EMAIL PROTEC

Re: [Orgmode] Org-mode with color-theme.el

2007-04-05 Thread David O'Toole
I'm sorry, that 2nd link should be http://dto.freeshell.org/e/color-theme-cl-frame.el On 4/5/07, David O'Toole <[EMAIL PROTECTED]> wrote: Hello org folks! I've posted a screen shot of my color theme called "CL-FRAME" and it includes org-mode faces. shot: http

Re: [Orgmode] Re: Idea: Agenda Search publish?

2007-04-05 Thread David O'Toole
I think this means being able to publish static HTML from the various views given by the agenda. So for example you could set up a timer to publish your agenda each day (assuming you run emacs for months like I do) and then if you are away from home, check your website to see the HTML agenda. Migh

  1   2   >