Re: [O] Possible to use src block to generate org headlines for export?

2014-07-22 Thread Matt Lundin
the example above. ;) Best, Matt

Re: [O] Possible to use src block to generate org headlines for export?

2014-07-22 Thread Matt Lundin
Correction below... Matt Lundin m...@imapmail.org writes: #+BEGIN_SRC emacs-lisp :exports none :results none (save-excursion (goto-char (point-min)) (while (re-search-forward #\\+RESULTS: generate-blog-summary nil t) (when ... (beginning-of-line) (delete-region

Re: [O] Possible to use src block to generate org headlines for export?

2014-07-23 Thread Matt Lundin
Hi Brett, Brett Viren b...@bnl.gov writes: Matt Lundin m...@imapmail.org writes: Let's hope the real blog (when I get around to publishing it) is more interesting than the example above. ;) Maybe it would be more convenient to add the meta-ness you want as part of a new exporter process

Re: [O] Possible to use src block to generate org headlines for export?

2014-07-23 Thread Matt Lundin
Charles Berry ccbe...@ucsd.edu writes: Matt Lundin mdl at imapmail.org writes: Or wrap the results in a drawer when you type C-c C-c, but render them as raw on export (which removes the drawer and replaces with raw results). Like so: #+header: :results (if (boundp 'backend) raw drawer

[O] [PATCH] Fix id generation in ox-rss.el

2014-07-23 Thread Matt Lundin
those files. Thanks, Matt From b482d2ebd53a60a91355433f49350b450869451e Mon Sep 17 00:00:00 2001 From: Matt Lundin m...@imapmail.org Date: Wed, 23 Jul 2014 14:18:06 -0500 Subject: [PATCH] Fix ID generation in org-rss-publish-to-rss * contrib/lisp/ox-rss.el: (org-rss-publish-to-rss) Fix a bug

Re: [O] Possible to use src block to generate org headlines for export?

2014-07-23 Thread Matt Lundin
Brett Viren b...@bnl.gov writes: Matt Lundin m...@imapmail.org writes: Brett Viren b...@bnl.gov writes: Maybe it would be more convenient to add the meta-ness you want as part of a new exporter process? To change the meta wrappers for code block results, we would have to modify org

[O] Exporting html: any way to customize format h1 class=title?

2014-07-25 Thread Matt Lundin
modifications on the html after exporting it However, the two hooks of the new export backend hooks (org-export-before-processing-hook, org-export-before-parsing-hook) are called on copies of the org source. Are there any clever means that I've missed to modify the title tags? Thanks, Matt Footnotes: [fn:1

Re: [O] Exporting html: any way to customize format h1 class=title?

2014-07-26 Thread Matt Lundin
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Matt Lundin m...@imapmail.org writes: AFAICT, there is no filter that would enable one to bypass the h1 tag her or to give it different text than the title tag. [...] In the old export backends there were hooks that allowed some

[O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-28 Thread Matt Lundin
. ((org-link-file-path-type . relative) (org-display-custom-times . t Thanks, Matt From 05410ec611fdf8483053e2905df9a52ea9c53551 Mon Sep 17 00:00:00 2001 From: Matt Lundin m...@imapmail.org Date: Mon, 28 Jul 2014 23:56:42 -0500 Subject: [PATCH] Remove unnecessary invocations of org

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Bastien b...@gnu.org writes: Hi Matt, Matt Lundin m...@imapmail.org writes: This patch fixes a bug in which org-publish makes the following call... (let ((org-inhibit-startup t) (org-mode))) Applied, thanks! Oops... I see now that org-publish-find-date and org-publish-find-title call org

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Matt Lundin m...@imapmail.org writes: Bastien b...@gnu.org writes: Hi Matt, Matt Lundin m...@imapmail.org writes: This patch fixes a bug in which org-publish makes the following call... (let ((org-inhibit-startup t) (org-mode))) Applied, thanks! Oops... I see now that org-publish-find

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Matt Lundin m...@imapmail.org writes: Bastien b...@gnu.org writes: Hi Matt, Matt Lundin m...@imapmail.org writes: This patch fixes a bug in which org-publish makes the following call... (let ((org-inhibit-startup t) (org-mode))) Applied, thanks! This could be solved by wrapping org

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Bastien b...@gnu.org writes: Hi Matt, Matt Lundin m...@imapmail.org writes: So to be safe, we could do the following in org-publish-find-date and org-publish-find-title... (org-export-with-buffer-copy (org-export-get-environment)) What do you think? Yes, this sounds right, please go

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Bastien b...@gnu.org writes: Hi Matt, Matt Lundin m...@imapmail.org writes: The documentation for org-agenda-inhibit-startup says that the default is t. However, the default is nil. , | Inhibit startup when preparing agenda buffers. | When this variable is `t' (the default

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-29 Thread Matt Lundin
Matt Lundin m...@imapmail.org writes: Bastien b...@gnu.org writes: Matt Lundin m...@imapmail.org writes: So to be safe, we could do the following in org-publish-find-date and org-publish-find-title... (org-export-with-buffer-copy (org-export-get-environment)) What do you think? Yes

[O] broken links in org-html publishing

2014-07-29 Thread Matt Lundin
Sep 17 00:00:00 2001 From: Matt Lundin m...@imapmail.org Date: Tue, 29 Jul 2014 23:31:50 -0500 Subject: [PATCH] Fix broken links in html publishing * lisp/ox-html.el: Fix incorrect property name in :options-alist of html backend definition. --- lisp/ox-html.el | 2 +- 1 file changed, 1 insertion

Re: [O] [PATCH] Remove unecesssary invocations of org-mode in ox-publish

2014-07-30 Thread Matt Lundin
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Matt Lundin m...@imapmail.org writes: Clearly, this is still very inadequate, but it is an improvement. I would love to use the built in site-map functions, but they are simply to slow for any larger projects. Could we do something

[O] [BUG] org-toggle-time-stamp-overlays does not work in #+DATE line

2014-07-30 Thread Matt Lundin
any easy editing of the timestamp in the #+DATE line. Best, Matt

[O] [BUG] org-html export does not put section numbers in div id

2014-07-30 Thread Matt Lundin
=sec-Headline/h2 div class=outline-text-2 id=text-1 /divdiv id=outline-container-sec- class=outline-3 h3 id=sec-Subheading/h3 /div /div div id=outline-container-sec- class=outline-2 h2 id=sec-Another headline/h2 /div /div --8---cut here---end---8--- Thanks, Matt

[O] Manipulating Dates Automatically in a Headline

2014-08-11 Thread Matt Price
either in the last sibling headline, or the parent headline. It seems to me this ought to be possible, but I'm not at all sure how to do it. i would really appreciate any guidance. thanks! Matt

[O] [PATCH] Fix and optimize publishing cache check

2014-08-12 Thread Matt Lundin
the files it includes and stores it in the cache. b. If a file has not changed, it checks the cache for included files and sees if any of those files have been updated (thus preventing the need to check every file in the project for includes) Best, Matt From

Re: [O] [PATCH] Fix and optimize publishing cache check

2014-08-12 Thread Matt Lundin
on the project with the cache enabled now takes seconds rather than minutes. Best, Matt From ea7203b4d988967f0a70bd45ad7502a961a28aee Mon Sep 17 00:00:00 2001 From: Matt Lundin m...@imapmail.org Date: Tue, 12 Aug 2014 23:25:23 -0500 Subject: [PATCH] Fix and optimize publish cache check * lisp/ox-publish.el

Re: [O] Manipulating Dates Automatically in a Headline

2014-08-13 Thread Matt Price
with babel so I'm not sure how to do this, but if it's possible I would love some hints. Thanks as always, Matt On Mon, Aug 11, 2014 at 2:20 PM, Matt Price mopto...@gmail.com wrote: Hi Everyone, I've asked this before, but that was a year or two ago and am hoping someone has an idea now

[O] [BUG] BBDB anniversary links don't open in agenda

2014-09-11 Thread Matt Lundin
opens links found only in the agenda buffer? Any advice on the best way to proceed would be greatly appreciated. Best, Matt

[O] help tracking down bad setting?

2014-09-18 Thread Matt Price
, Matt

Re: [O] help tracking down bad setting?

2014-09-18 Thread Matt Price
On Thu, Sep 18, 2014 at 3:46 PM, Matt Price mopto...@gmail.com wrote: Hi everyone, When I load org-mode I get the following error: local-set-key: Key sequence C-c SPC C-r starts with non-prefix key C-c SPC I am pretty sure I set something to this value somewhere at some time, but I have

Re: [O] help tracking down bad setting?

2014-09-18 Thread Matt Price
I meant to add: found the culprit by checking the value of org-mode-hook. And also, thanks Thorsten!

Re: [O] [PATCH] Add a different prefix for past deadlines in the agenda view

2013-03-24 Thread Matt Lundin
the old default much cleaner and easier to scan visually. I know this can be customized, but might I suggest that we revert the default to 11-characters and left aligned text? Best, Matt P.S. Thanks, as always, Bastien for all the amazing work you've been doing as maintainer!

[O] Error message: (void-variable org-element-affiliated-keywords)

2013-03-25 Thread Matt Lundin
. I notice that there is a defvar in org.el (line 23392): (defvar org-element-affiliated-keywords) ; From org-element.el Yet it seems this variable is not defined when I open org buffers. Any advice would be much appreciated. Best, Matt

[O] Capture/store link bug

2013-03-25 Thread Matt Lundin
to commit ecb9e5811, the capture buffer looked like this: --8---cut here---start-8--- * Title [2013-03-25 Mon 17:03] [[gnus:nnml:sent#8738vjb0hw@fastmail.fm][Matt Lundin: Capture/store link bug]] When I invoke --8---cut here---end

Re: [O] Capture/store link bug

2013-03-25 Thread Matt Lundin
Bastien b...@altern.org writes: Matt Lundin m...@imapmail.org writes: 1) When an org-capture template is invoked with (a) an active region and (b) an annotation (i.e., a link), the link is not inserted in the capture buffer. This one must be fixed, thanks. Hmm. I see the change you made

Re: [O] Capture/store link bug

2013-03-25 Thread Matt Lundin
Matt Lundin m...@imapmail.org writes: Bastien b...@altern.org writes: Matt Lundin m...@imapmail.org writes: 1) When an org-capture template is invoked with (a) an active region and (b) an annotation (i.e., a link), the link is not inserted in the capture buffer. This one must be fixed

Re: [O] Capture/store link bug

2013-03-28 Thread Matt Lundin
Bastien b...@altern.org writes: Hi Matt, I pushed a fix for this yesterday. Storing links from every line in the active region is now achieved when the user hits three C-u before the command. Let me know if it works for you! And thanks for reporting bugs in this important area

[O] quickly toggling properties

2013-04-09 Thread Matt Price
properties without thinking too hard. Any suggestions? Thanks! matt

[O] ctrl-enter and alt-enter behaviour in current org

2013-04-09 Thread Matt Price
that both keys are creating new ist items. Is this the intended behaviour? Can I customize it somehow/somewhere? I'd like to go back to the old bindings, they seemed more flexible. Thanks a lot! Matt

[O] reveal.js?

2013-04-09 Thread Matt Price
... and one more thing: Now that deck.js export seems to work PERFECTLY(!), I find myself wishing for a reveal.js presentation exporter. Has anyone started one already? Thanks!! Matt

Re: [O] New maintainer

2013-04-22 Thread Matt Price
energy. No other tool I use has had such a great pair of lead developers or such an open and helpful community. thank you both! Matt

[O] Counter-intuitive behavior of org-insert-heading

2013-05-20 Thread Matt Lundin
* [2013-05-20 Mon 11:02] And with a folded headline, the same thing happens. When the cursor is placed after the invisible section and I hit M-Ret: * A heading... ...unfolds and becomes... * A heading * [2013-05-20 Mon 11:02] Best, Matt

Re: [O] M-RET and C-RET turn current line of text into a heading?

2013-05-20 Thread Matt Lundin
: http://permalink.gmane.org/gmane.emacs.orgmode/72399 Sorry to have missed this thread. Matt

Re: [O] Let's discuss citation and Org syntax

2013-05-22 Thread Matt Price
is already involved in this thread, do you have any comments Erik? Thank you for this! Matt Yours, Christian Moe

Re: [O] Let's discuss citation and Org syntax

2013-05-22 Thread Matt Lundin
provides, among others, \autocite, \fullcite, \citetitle, \footfullcite, \headlesscite, \headlessfullcite, \shortcite. Best, Matt

Re: [O] Trigger org-capture window using linux shortcut key

2013-05-22 Thread Matt Lundin
action name=Execute executeemacsclient -c -e (org-capture)/execute /action /keybind Gnome and KDE will likely have a GUI for adding custom keyboard shortcuts. Best, Matt

Re: [O] Seeking advice on structuring my org-mode file

2013-05-22 Thread Matt Lundin
a new file from a headline. It leaves a link to the new file in the original location. Best, Matt --8---cut here---start-8--- (defun my-org-file-from-headline (file) (interactive (list (completing-read File: (mapcar 'file-name

Re: [O] org-blog 0.9 release

2013-05-23 Thread Matt Price
not likely be much help with the actual implementation but would be happy to pull from git and do some testing if that's of any use. Thanks! Matt Thanks! Puneeth

[O] [BUG] org-agenda-open-link does not open bbdb links

2013-05-24 Thread Matt Lundin
in the agenda line. The following change fixes the problem, but before I submit it as a properly formatted patch, I want to make sure that it does not interfere with some other functionality. Best, Matt --8---cut here---start-8--- diff --git a/lisp/org-agenda.el

Re: [O] Only first time stamp per event on agenda (containing multiple time stamps)

2013-05-27 Thread Matt Lundin
- - - - - - - - - - - - - - - - - - - - - | 16:00.. | 18:00.. | 20:00.. ` Best, Matt

Re: [O] [PATCH] org.el: Don't flyspell check within source code blocks

2013-05-30 Thread Matt Lundin
With org-in-src-block-p, a half of a hundredth of a second spread over 27 characters causes no noticeable slowdowns. But using org-element-at-point causes the cursor to lag a bit. So +1 is for (not (org-in-src-block-p)). Best, Matt

[O] using a simple numerical variable in an org text ocument

2013-07-25 Thread Matt Price
people, the number displayed will be 2. Better would be if I could also do simple arithmetic manipulations (x * 6 dinners for a week...). I there a really simple way to do this? if it's not really easy, it won't really seem worth it, but if it is really easy, I will use it a lot... Thanks guys! Matt

[O] [BUG] Infinite loop in org-agenda-show-new-time

2013-08-05 Thread Matt Lundin
-8--- my-counter's value is 32193 Documentation: Not documented as a variable. --8---cut here---end---8--- Without C-g the number will keep increasing indefinitely. Thanks, Matt

Re: [O] [BUG] Infinite loop in org-agenda-show-new-time

2013-08-05 Thread Matt Lundin
Nick Dokos ndo...@gmail.com writes: Matt Lundin m...@imapmail.org writes: My one feeble attempt to reproduce this failed. Looking at the code Here are the steps to reproduce the problem: 1. Create file test.org with the following content: --8---cut here---start

Re: [O] [BUG] Infinite loop in org-agenda-show-new-time

2013-08-06 Thread Matt Lundin
version 8.0.7 (release_8.0.7-367-gd1d918 @ /home/matt/org-mode/lisp/) (emacs-version) GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.8.2) of 2013-07-30 on -var-lib-archbuild-staging-x86_64-jgc (shell-command uname -a) Linux archdesk 3.10.3-1-ARCH #1 SMP PREEMPT Fri Jul 26 11:26:59

Re: [O] [BUG] org-agenda-open-link does not open bbdb links

2013-08-08 Thread Matt Lundin
Bastien b...@gnu.org writes: Hi Matt, Matt Lundin m...@imapmail.org writes: The function org-agenda-open-link does not open bbdb links. The reason is that bbdb agenda lines contain links that are not found in the entry. I'm not sure I understand. Can you provide a minimal example

Re: [O] [BUG] Infinite loop in org-agenda-show-new-time

2013-08-14 Thread Matt Lundin
Nick Dokos ndo...@gmail.com writes: Matt Lundin m...@imapmail.org writes: ... In other words, within the agenda buffer, move-to-column and move-end-of-line will move to the point to the end of the entire invisible region. That is why removing the local binding of buffer-invisibility-spec

Re: [O] [BUG] Infinite loop in org-agenda-show-new-time

2013-08-14 Thread Matt Lundin
% reproducible here when there are invisible lines immediate following the item I am trying to reschedule. Matt

Re: [O] Org-protocol does not work with org-capture

2013-08-14 Thread Matt Lundin
-on-error RET and report the complete backtrace you receive when you invoke org-protocol (presumably from an outside program). Matt

[O] don't show author and date on odt export?

2013-08-26 Thread Matt Price
though, as I like to just git pull from the master branch... Thanks! Matt

Re: [O] don't show author and date on odt export?

2013-08-26 Thread Matt Price
On Mon, Aug 26, 2013 at 2:49 PM, Matt Price mopto...@gmail.com wrote: I'm trying to figure out how best to tell org not to display my name and the date at the top of the page when it exports document. Currently, it seems I can do htis by setting #+OPTIONS: author:nil date:nil However

Re: [O] [PATH] [NEW EXPORTER] two slide backends for contrib

2013-08-26 Thread Matt Price
, but if you've thought about these issues I would love to learn wat you've figured out. Thanks! Matt On Wed, Feb 20, 2013 at 10:34 AM, Bastien b...@altern.org wrote: Hi Rick, Rick Frankel r...@rickster.com writes: Attached are: - ox-deck.el - ox-s5.el Which, respectively

Re: [O] [PATH] [NEW EXPORTER] two slide backends for contrib

2013-08-27 Thread Matt Price
On Tue, Aug 27, 2013 at 10:12 AM, Rick Frankel r...@rickster.com wrote: On 2013-08-27 00:41, Matt Price wrote: I just came across this, having missed it in February. Rick, I was wondering if you had thought about enabling some of deck.js's snazzier features -- transitions for text elements

[O] angle brackets around timestamps in html export

2013-08-30 Thread Matt Price
I can't find the answer in the docs, I'm sure it's there somewhere but I'm missing it somehow! Matt

Re: [O] angle brackets around timestamps in html export

2013-09-03 Thread Matt Price
On Tue, Sep 3, 2013 at 9:01 AM, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Matt Price mopto...@gmail.com writes: I'm trying to get rid of angle brackets in HTML export. I've set org-export-date-timestamp-format to %a, %b %d. This variable only applies to a timestamp specified

Re: [O] angle brackets around timestamps in html export

2013-09-03 Thread Matt Price
On Tue, Sep 3, 2013 at 9:50 AM, Nicolas Goaziou n.goaz...@gmail.com wrote: Matt Price mopto...@gmail.com writes: You can also use a filter on every timestamp exported and make sure any angle bracket is removed. I was able to add this bit of javascript to my wordpress site to remove

[O] syntax for blocks that the exporter should not render?

2013-09-03 Thread Matt Price
Hi, certain lines are not rendered by the org exporter, but are instead interpreted as instructions, e.g.: #+AUTHOR: Matt Price I'm using org2blog/wp, which is only partially converted to the new exporter. It works pretty well, but not perfectly. It has the neat feature that, when I insert

[O] set minor mode based on first line of a buffer?

2013-09-03 Thread Matt Price
this way should be started with org2blog-mode (a minor mode) switched on? I guess I need to write a hook that parses reads that first line somehow? thanks again, matt

Re: [O] angle brackets around timestamps in html export

2013-09-03 Thread Matt Price
On Tue, Sep 3, 2013 at 10:34 AM, Nicolas Goaziou n.goaz...@gmail.com wrote: Matt Price mopto...@gmail.com writes: The following should work: (defun matt-org-export-filter-timestamp-function (timestamp backend info) removes relevant brackets from a timestamp (when (org-export

Re: [O] syntax for blocks that the exporter should not render?

2013-09-05 Thread Matt Price
On Thu, Sep 5, 2013 at 6:09 AM, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Carsten Dominik carsten.domi...@gmail.com writes: On 3.9.2013, at 17:32, Matt Price mopto...@gmail.com wrote: Hi, certain lines are not rendered by the org exporter, but are instead interpreted

Re: [O] syntax for blocks that the exporter should not render?

2013-09-05 Thread Matt Price
...@gmail.com wrote: #+/home/matt/Matt_headshots/Matt Price/IMG_9367_.jpg http://2013.hackinghistory.ca/wp-content/uploads/2013/08/wpid-IMG_9367_2.jpg I don't think this is the right behavior, such lines should not be rendered. Suvayu is right, with a space after the # they are treated as commendt

[O] org structuresin a drawer? (or some other presentation soution)

2013-09-12 Thread Matt Price
or subheading) as not-for-export? Thanks as always! Matt

Re: [O] org structuresin a drawer? (or some other presentation soution)

2013-09-12 Thread Matt Price
On Thu, Sep 12, 2013 at 1:26 PM, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Matt Price mopto...@gmail.com writes: One way to do this is to make a drawer. Unfortunately, from what I can tell, within a drawer it is not posible to use org structures like lists. Drawers can contain

Re: [O] org structuresin a drawer? (or some other presentation soution)

2013-09-12 Thread Matt Price
On Thu, Sep 12, 2013 at 1:16 PM, Thorsten Jolitz tjol...@gmail.com wrote: Matt Price mopto...@gmail.com writes: or- mark certain elements (like a list or subheading) as not-for-export? Maybe using the :noexport: tag on a heading? yes, that works! thank you! sorry I missed it in the manual

[O] removing Figure x from a caption

2013-09-12 Thread Matt Price
sorry, another question whose answer I'm having trouble finding in the manual: is it possible to remove the text Figure X: from a caption defined with #+CAPTION: ? I'm just doing lecture slides, and the images are merely illustrative, labelling them Figure 1 is a bit grandiose. Thanks again!

Re: [O] org structuresin a drawer? (or some other presentation soution)

2013-09-12 Thread Matt Price
Thanks Nicolas! Works great. Matt On Thu, Sep 12, 2013 at 4:35 PM, Nicolas Goaziou n.goaz...@gmail.com wrote: Carsten Dominik carsten.domi...@gmail.com writes: Hi Nicolas, this looks good to me, please apply it. Done (in master). Regards, -- Nicolas Goaziou

Re: [O] removing Figure x from a caption

2013-09-13 Thread Matt Price
On Thu, Sep 12, 2013 at 4:15 PM, Eric S Fraga e.fr...@ucl.ac.uk wrote: Matt Price mopto...@gmail.com writes: sorry, another question whose answer I'm having trouble finding in the manual: is it possible to remove the text Figure X: from a caption defined with #+CAPTION: ? I'm just doing

Re: [O] removing Figure x from a caption

2013-09-13 Thread Matt Price
On Thu, Sep 12, 2013 at 2:18 PM, Rasmus ras...@gmx.us wrote: Matt Price mopto...@gmail.com writes: sorry, another question whose answer I'm having trouble finding in the manual: is it possible to remove the text Figure X: from a caption defined with #+CAPTION: ? I'm just doing lecture

Re: [O] removing Figure x from a caption

2013-09-15 Thread Matt Price
On Sat, Sep 14, 2013 at 10:28 AM, Eric S Fraga e.fr...@ucl.ac.uk wrote: Matt Price mopto...@gmail.com writes: Unfortunatey, I'm exporting to HTML (deck.js) not Beamer. I guess I still on't understand how to use beamer -- I tried it just now and it seemed to produce a very plain pdf

Re: [O] bug#14605: Problem with export an .org file to .pdf does not open pdf file

2013-09-16 Thread Matt Price
seem to open from the export menu, even though the log in *Messages* reports that the relevant command (xdg-open-my-org-file.html) has been run. Can I help diagnose this? toggle-debug-on-error doesn't give me any extra info. Thanks! Matt

Re: [O] bug#14605: Problem with export an .org file to .pdf does not open pdf file

2013-09-17 Thread Matt Price
On Tue, Sep 17, 2013 at 12:42 AM, Matt Price mopto...@gmail.com wrote: On Tue, Sep 3, 2013 at 5:12 AM, Achim Gratz strom...@nexgo.de wrote: Or you could leave it in and see who complains. The instances where xdg-open doesn't work or is not correctly configured will probably be in multi-user

Re: [O] bug#14605: Problem with export an .org file to .pdf does not open pdf file

2013-09-17 Thread Matt Price
(xdg-open-my-org-file.html) has been run. -- (xdg-open my-org-file.html) has been run.

[O] some movement on zotero!

2013-09-17 Thread Matt Price
people think -- as I say, rushing to get some work done right now! Matt

Re: [O] bug#14605: Problem with export an .org file to .pdf does not open pdf file

2013-09-17 Thread Matt Price
environments. What DEs do you use, Matt, Glyn? I am on XFCE. For me xdg-open calls the internal function (defined in the script), open_xfce. Inside that function, exo-open is called. This is XFCE specific. When I replace exo-open with say, evince, and open a pdf file; start-process-shell-command

Re: [O] bug#14605: Problem with export an .org file to .pdf does not open pdf file

2013-09-17 Thread Matt Price
carsten.domi...@gmail.com writes: On 17.9.2013, at 08:01, Matt Price mopto...@gmail.com wrote: On Tue, Sep 17, 2013 at 12:42 AM, Matt Price mopto...@gmail.com wrote: On Tue, Sep 3, 2013 at 5:12 AM, Achim Gratz strom...@nexgo.de wrote: Or you could leave it in and see who complains. The instances

[O] applying html classes to the figure div on HTML export

2013-09-19 Thread Matt Price
of the slide, which is not what I want. I think I could also write some javascript to add the class dynamically when there's more than one div.figure in a div.slide, but I odn't understand deck well enough to be sure how to do that. Any suggestions? Thanks! Matt

Re: [O] applying html classes to the figure div on HTML export

2013-09-19 Thread Matt Price
On Thu, Sep 19, 2013 at 3:05 PM, Christian Moe m...@christianmoe.com wrote: Matt Price writes: Hi, Is there a way to apply an HTML class to the the div class=figure element which is generated around an image link on HTML export? I don't think there is...? What you /can/ do is wrap

[O] ODT export failed: wrong number of agruments

2013-09-19 Thread Matt Price
: - LaTeX to MathML converter not available. Formatting LaTeX using verbatim Embedding /home/matt/NewOne/Images/oxfam_gobal_citizenship.jpg as Images/0001.jpg... OpenDocument export failed: Wrong number of arguments: nil, 2 - The relevant section of the org file is this: -- * Global

Re: [O] ODT export failed: wrong number of agruments

2013-09-19 Thread Matt Price
On Thu, Sep 19, 2013 at 8:36 PM, Matt Price mopto...@gmail.com wrote: lots of questions lately! Sorry. I am trying to export an org-file to odt after having created a deck.js presentation from the same file. Exports to html work fine, and exports of other files to odt also seem to work

Re: [O] Org Tutorials need more structure

2013-09-29 Thread Matt Price
understands them. Very busy the net 2 weeks but afte that I'd like to try to give back a little bit to the org community, so I could take a crack at some of these areas (not 3 4 though!). Matt Those four areas seem pretty distinct and independent to me (except there's special cross-over between

Re: [O] multiple indirect buffers, and limiting to a drawer

2013-10-02 Thread Matt Price
On Tue, Oct 1, 2013 at 3:28 PM, Bob Newell bobnew...@bobnewell.net wrote: Aloha Matt, For some while I've been also working on my writer-mode for org-mode, and run into similar problems. (However, I don't think I ever intend writer-mode for general release; it will probably just remain

Re: [O] multiple indirect buffers, and limiting to a drawer

2013-10-02 Thread Matt Price
On Tue, Oct 1, 2013 at 5:37 PM, Myles English mylesengl...@gmail.com wrote: Hi Matt, mopto...@gmail.com writes: (3) in the right-hand panel, I'd like to just show the properties drawer of the currently active heading. Can someone suggest the best way to create that third buffer (or more

Re: [O] multiple indirect buffers, and limiting to a drawer

2013-10-02 Thread Matt Price
On Tue, Oct 1, 2013 at 1:19 PM, Thorsten Jolitz tjol...@gmail.com wrote: Matt Price mopto...@gmail.com writes: Hi, (1) in a narrow window on the left, an outline of the whole org-file, which I take to represent a major writing project (2) in the main window, a heading element

[O] Setting org-insert-heading-hook while in a minor mode

2013-10-30 Thread Matt Price
not obvious to me that there's a way to set a file-local variable while in a minor-mode -- does anyone know if there is, and I'm just missing it? Also, I would like if possible for the properties drawer to be pre-populated with certain properties Is that also possible? Thanks, Matt

[O] check if properties drawer exists before creating or manipulating?

2013-10-31 Thread Matt Price
don't want to create a bunch of independent properties drawers. Thanks! Matt

[O] check if properties drawer exists before creating or manipulating?

2013-10-31 Thread Matt Price
Is there a simple way to check if the properties drawer exists before creating one? I'm trying to add a hook to org-insert-heading-hook that will create a property drawer if one doesn't exist (see my earlier email, in which I ask,

[O] fold all drawers in a buffer?

2013-11-01 Thread Matt Price
Is there a command to fold all drawers in a buffer (all property drawers would be enough, actually)? Or a suggestion for how to do this? Thanks! Matt

Re: [O] org-writers-room sort of works! just in time for NaNoWriMo

2013-11-01 Thread Matt Price
On Fri, Nov 1, 2013 at 2:08 AM, Alan L Tyree alanty...@gmail.com wrote: Matt Price writes: I have just pushed a more-or-less-working version of my Org Writer's Room mode to github: SNIP PS, the readme on github is a little out of date, but the code itself is mostly documented so I hope

Re: [O] org-writers-room sort of works! just in time for NaNoWriMo

2013-11-01 Thread Matt Price
On Fri, Nov 1, 2013 at 5:07 AM, Ian Barton li...@wilkesley.net wrote: On 01/11/13 06:08, Alan L Tyree wrote: Matt Price writes: I have just pushed a more-or-less-working version of my Org Writer's Room mode to github: SNIP PS, the readme on github is a little out of date, but the code

[O] set global visibility set to CONTENTS in a defun?

2013-11-02 Thread Matt Price
in the argument (number, string, whatever) has the effet of setting visibility to OVERVIEW, e.g.. I'm sure there's a trick I'm missing, could someone please tell me what it is? Thanks, Matt

Re: [O] org-writers-room sort of works! just in time for NaNoWriMo

2013-11-02 Thread Matt Price
ways to manipulate the metadata -- there must be an org-next-property or a way to simulate it with org-element, but I haven't figured it out yet... Anyway, it's a start. Still very eager to hear from people trying it out, or who would like to help out (I'm so slow!!!). Thanks, Matt

Re: [O] org-writers-room sort of works! just in time for NaNoWriMo

2013-11-05 Thread Matt Price
On Mon, Nov 4, 2013 at 12:33 PM, Thorsten Jolitz tjol...@gmail.com wrote: Matt Price mopto...@gmail.com writes: Hi Matt, Hi Thorsten, Wow, navi-mode really is incredibly cool. thanks. why not write this on the mailing list - a bit of publicity can't hurt ;) oh shoot, sorry! my mistake

[O] narrowing to subtree in navi-mode

2013-11-07 Thread Matt Price
. I would like to keep the full tree visible in the navi-mode buffer while narrowing the original org buffer. I wonder if this is possible? In particular, I wonder if I am confronting an underlying limitation in occur-mode, on which navi-mode is based. Thanks for your help! Matt

Re: [O] narrowing to subtree in navi-mode

2013-11-07 Thread Matt Price
On Thu, Nov 7, 2013 at 4:37 PM, Thorsten Jolitz tjol...@gmail.com wrote: Matt Price mopto...@gmail.com writes: Hi Matt, I am trying to rewrite my org-writers-mode to use a navi-mode buffer as a guide for the org-mode buffer In navi-mode, it is possible to narrow the original (twin)) buffer

<    2   3   4   5   6   7   8   9   10   11   >