Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Carsten Dominik
Cool! - Carsten On Oct 29, 2010, at 8:42 AM, Eric Schulte wrote: "Eric Schulte" writes: Although I'm not familiar with using Calc as anything more than a 1- off calculator in the bottom of the frame (i.e. M-x calc) this sounds like a good approach to using calc to execute code blocks.

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Nick Dokos
Noorul Islam K M wrote: > Carsten Dominik writes: > > > On Oct 29, 2010, at 5:22 AM, Jambunathan K wrote: > > > >> "Thomas S. Dye" writes: > >> > >>> Aloha Jambunathan K., > >>> > >>> Yes, thanks for that suggestion. It should work on your example, but > >>> it breaks external links, like thi

[Orgmode] parsing formatted text

2010-10-29 Thread Aidan Gauland
Hello, I have written an elisp program to generate an ATOM feed from an org-mode file. I want to generate appropiate HTML from fromatted text (such as *bold* and /italic/). Since it does not use org's export module (for which this isn't really appropriate anyway), I have no idea if there is any

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Noorul Islam
On Fri, Oct 29, 2010 at 12:50 PM, Nick Dokos wrote: > Noorul Islam K M wrote: > >> Carsten Dominik writes: >> >> > On Oct 29, 2010, at 5:22 AM, Jambunathan K wrote: >> > >> >> "Thomas S. Dye" writes: >> >> >> >>> Aloha Jambunathan K., >> >>> >> >>> Yes, thanks for that suggestion.  It should wo

Re: [Orgmode] [Babel] Prefix for tangled files

2010-10-29 Thread Eric Schulte
Hi Seb, You could use the `org-babel-post-tangle-hook' to rename all tangled files behind some common prefix. Any function on this hook will be called once per tangled file from within the tangled file, so it could use the `buffer-file-name' to rename the file. Best -- Eric Sébastien Vauban wr

[Orgmode] [Babel] detangle

2010-10-29 Thread Eric Schulte
Hi, I've just added functions for detangling code from pure source code files back into code blocks in the org-mode files from whence they were tangled. This is done by the new `org-babel-detangle' function. Additionally the new `org-babel-tangle-jump-to-org' function can be used to navigate from

Re: [Orgmode] parsing formatted text

2010-10-29 Thread Eric Schulte
Hi Aidan, You could pass the text through the `org-export-string' function to generate a string of HTML from a string of Org markup. e.g. (org-export-string "plain plain *bold* plain" "html") returns the following string "plain plain bold plain" -- Eric Aidan Gauland writes: > Hello, >

[Orgmode] [PATCH] org-compat: defalias string-match-p rather than defun

2010-10-29 Thread Julien Danjou
Signed-off-by: Julien Danjou --- lisp/org-compat.el |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org-compat.el b/lisp/org-compat.el index d55a83e..47a6599 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -372,11 +372,11 @@ TIME defaults to the cu

[Orgmode] Re: Release 7.02

2010-10-29 Thread Sébastien Vauban
Hi Carsten, Thanks a lot to you (and all others who made this happen) for this beautiful new version!! Carsten Dominik wrote: > Lists handling > === > > Due to changes made to lists, it is no longer possible to have a sublist, > some text and then another sublist while still in the sa

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Nick Dokos
Noorul Islam wrote: > > For the same thing I get this > > > \section{Foo} > \label{sec-1} > > Here is a link to section Bar: \hyperref[sec-2]{Bar} > \section{Bar} > \label{sec-2} > > > And here is an external link: \href{http://www.google.com}{google} > > You are right and I'm wrong: M-x

[Orgmode] [PATCH] org-agenda: add support for category icons

2010-10-29 Thread Julien Danjou
Signed-off-by: Julien Danjou --- doc/org.texi |4 +++ lisp/org-agenda.el | 65 +++ 2 files changed, 63 insertions(+), 6 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index aa4f30b..41121d3 100644 --- a/doc/org.texi +++ b/doc/org

[Orgmode] Re: parsing formatted text

2010-10-29 Thread Aidan Gauland
Eric Schulte gmail.com> writes: > You could pass the text through the `org-export-string' function to > generate a string of HTML from a string of Org markup. > > e.g. > > (org-export-string "plain plain *bold* plain" "html") > > returns the following string > > "plain plain bold plain" T

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
Make footnotes work correctly in message-mode == The footnotes code now searches for the message delimiter "--" in order to place footnotes before the signature. Thanks to Tassilo Horn for this patch. Just a detail: the delimiter is "-- " (space

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
Hi Sebastian, On Oct 29, 2010, at 10:30 AM, Sébastien Vauban wrote: Hi Carsten, Thanks a lot to you (and all others who made this happen) for this beautiful new version!! Carsten Dominik wrote: Lists handling === Due to changes made to lists, it is no longer possible to have

Re: [Orgmode] Worg: link broken

2010-10-29 Thread Noorul Islam
2010/10/28 Sébastien Vauban : > Hello, > > In page http://orgmode.org/guide/Working-With-Source-Code.html, > see "further reading": link "chapter 14" broken (recursive, BTW?). > Fix recursive link * doc/orgguide.texi: Remove broken recursive link Thanks and Regards Noorul diff --git a/doc/orggui

Re: [Orgmode] [PATCH] Fix typo

2010-10-29 Thread Bastien
Applied, thanks. PS: merging using pw didn't work so I did the change manually, meaning it will appear as *mine* - hope you don't mind! Julien Danjou writes: > Signed-off-by: Julien Danjou > --- > ORGWEBPAGE/Changes.org |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Jambunathan K
Nick I hunted down the bug with heuristics. Speaking of bisections, > In this instance, I actually bisected it down to the bad commit that > Jambunathan K. identified (and Carsten reverted). I guess I was lucky > in the sense that I pulled a couple of days ago, so HEAD was 851 > commits ahead o

[Orgmode] Re: [WISH] Org Importers

2010-10-29 Thread Eric S Fraga
Matt Lundin writes: > FWIW, I have a home-brewed perl script that converts latex documents to > org-mode files. Loosely based on latex2doc[1], it uses a latex style > file (generated by the perl script) to markup the pdf output (e.g. > asterisks for section headings, etc.). The org-formatted pdf i

Re: [Orgmode] [PATCH] Fix typo

2010-10-29 Thread Julien Danjou
On Fri, Oct 29 2010, Bastien wrote: > PS: merging using pw didn't work so I did the change manually, > meaning it will appear as *mine* - hope you don't mind! You're forgiven. :) -- Julien Danjou // ᐰhttp://julien.danjou.info ___ Emacs-orgmode ma

Re: [Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Eric S Fraga
Łukasz Stelmach writes: > [...] > S5 and other HTML slide show frameworks have (at least) one great > advantage over Beamer, one can embed (there are at least two ways) SVG > image, which is quite hard with LaTeX/Beamer duo (is there any > command-line tool to convert SVG to EPS/PDF?) > -- > Mił

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric S Fraga
Eric, This is really nice! I had a problem initially in that calc-push-list was undefined. I had to initiate calc first so maybe a : (require 'calc) is required to ensure the functions you use are available? Then, out of the three examples you give, only one (3^3) worked. The others give me

[Orgmode] Re: Possible Calc support for Org-Babel?

2010-10-29 Thread Sébastien Vauban
Hi Eric, "Eric Schulte" wrote: > I've thrown together a very naive first pass at a function for evaluating > calc code blocks. This inverts the normal calc (as I understand it) use of ' > prefixes and assumes that every line is an algebraic expression unless that > line is prefixed with a ' in whi

[Orgmode] Re: Release 7.02

2010-10-29 Thread Sébastien Vauban
Hi Carsten, Carsten Dominik wrote: > On Oct 29, 2010, at 10:30 AM, Sébastien Vauban wrote: >> Carsten Dominik wrote: >>> Due to changes made to lists, it is no longer possible to have a sublist, >>> some text and then another sublist while still in the same top- level list >>> item, like in the fo

Re: [Orgmode] proposal for enhanced org-get-priority function

2010-10-29 Thread I.S.
Sorry, I realized the previous patch did not contain updates to the org-priority-regexp. An updated patch is attached. Sorry, -I.S. On 10/27/2010 8:01 AM, I.S. wrote: On 10/24/2010 3:18 PM, David Maus wrote: At Wed, 20 Oct 2010 13:14:39 -0400, I.S. wrote: Dear Experts, I'd like to propose

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 1:36 PM, Sébastien Vauban wrote: Hi Carsten, Carsten Dominik wrote: On Oct 29, 2010, at 10:30 AM, Sébastien Vauban wrote: Carsten Dominik wrote: Due to changes made to lists, it is no longer possible to have a sublist, some text and then another sublist while still in t

Re: [Orgmode] proposal for enhanced org-get-priority function

2010-10-29 Thread I.S.
Sorry, previous patch had some junk in it. Attached is the final version (really). Sorry again for the confusion, -I.S. On 10/29/2010 7:45 AM, I.S. wrote: Sorry, I realized the previous patch did not contain updates to the org-priority-regexp. An updated patch is attached. Sorry, -I.S. On

[Orgmode] 20101029_orgtexi_names.patch

2010-10-29 Thread Andreas Röhler
org-return diff --git a/doc/org.texi b/doc/org.texi index aa4f30b..9293804 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -1732,8 +1732,7 @@ necessary. @orgcmd...@key{tab},org-shifttab} Re-align, move to previous field. @c -...@kindex @key{RET} -...@item @key{RET} +...@orgcmd{@key{RET},org-ret

[Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Łukasz Stelmach
Eric S Fraga writes: > Łukasz Stelmach writes: > >> [...] > >> S5 and other HTML slide show frameworks have (at least) one great >> advantage over Beamer, one can embed (there are at least two ways) SVG >> image, which is quite hard with LaTeX/Beamer duo (is there any >> command-line tool to con

[Orgmode] Re: Release 7.02

2010-10-29 Thread Łukasz Stelmach
Carsten Dominik writes: > Lists of anniversaries are now handeled better > === > > When several anniversaries are defined in the bbdb anniversaries > field (separated by semicolon), this is now handled nicely by the > agenda. > > Thanks to Lukasz Setman

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Jambunathan K
Carsten > Hi Jambunathan, > > On Oct 28, 2010, at 2:40 PM, Jambunathan K wrote: > >> >> I have every reason to believe that upcoming version of Org would be >> tagged as 7.02. Earlier I had argued that version strings be >> version-to-list compatible. I would like to reiterate it. >> >> My real c

[Orgmode] Re: Release 7.02

2010-10-29 Thread Łukasz Stelmach
Carsten Dominik writes: >>> Make footnotes work correctly in message-mode >>> == >>> The footnotes code now searches for the message delimiter "--" in >>> order to >>> place footnotes before the signature. Thanks to Tassilo Horn for >>> this patch. >> >

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Eric S Fraga
Carsten Dominik writes: >> >> >>> Make footnotes work correctly in message-mode >>> == >>> The footnotes code now searches for the message delimiter "--" in >>> order to >>> place footnotes before the signature. Thanks to Tassilo Horn for >>> this patch

Re: [Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Eric S Fraga
Łukasz Stelmach writes: > Eric S Fraga writes: > >> ImageMagick [1] will convert from/to SVG to/from many formats including >> EPS. I've not tried any conversions with SVG, mind you, so this is >> based on the documentation. >> > > I'll check it, but I'm afraid it does render SVG as bitmap firs

[Orgmode] Re: Release 7.02

2010-10-29 Thread Jambunathan K
Carsten Dominik writes: > Dear all, > > I have release version 7.02 or Org-mode. Thanks to all who > have contributed! > > Enjoy > > - Carsten > > > Changes in version 7.02 > 1. Would be nice if Babel specific changes are in a separate headline. 2. Please mention support for Speed Keys on Babel

Re: [Orgmode] [Babel] detangle

2010-10-29 Thread Eric S Fraga
"Eric Schulte" writes: > Hi, > > I've just added functions for detangling code from pure source code > files back into code blocks in the org-mode files from whence they were > tangled. Wow. It just gets better all the time!! :-) > This is done by the new `org-babel-detangle' function. > Addit

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Bastien
Łukasz Stelmach writes: >> Thanks to Lukasz Setmann for a patch to this effect. > ^^ > Who's that guy? ;-) Fixed :) You even obtained a proper "Ł" in your first name. -- Bastien ___ Emacs-orgmode mailing list Please use `

[Accepted] [Orgmode] 20101029_orgtexi_names.patch

2010-10-29 Thread Bastien Guerry
Patch 355 (http://patchwork.newartisans.com/patch/355/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C4CCABB44.1030703%40easy-emacs.de%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-

Re: [Orgmode] Re: Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Sébastien Vauban writes: [...] > > executing Calc code block... > if: Symbol's function definition is void: calc-push-list > > Required =calc= by calling =C-x * *=: > hmm, I just pushed the actual ob-calc.el file up to the repository. Do you still get these errors if you loaf up calc support th

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Eric S Fraga writes: > Eric, > > This is really nice! > > I had a problem initially in that calc-push-list was undefined. I had > to initiate calc first so maybe a > > : (require 'calc) > Ah yes, that is in the ob-calc.el file, but not in the code snippet I shared. I'll commit this entire fil

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Bastien
Hi Jambunathan, Jambunathan K writes: > Now that release-7.02 is out, I am a bit disappointed that a ELPA-tar > named org-7.02.tar would be unusable. Let's fix this by having a conversation with the ELPA maintainers. Can you start a discussion off-list with me, Carsten, ELPA maintainers and Ch

[Orgmode] Re: TaskJuggler 3, revisited

2010-10-29 Thread Christian Egli
John Hendy writes: > - is there any progress on an exporter for tj3? Yes there is. See http://github.com/egli/org-mode/blob/master/lisp/org-taskjuggler.el > - does anyone have a vague sketch of what needs to happen? The export to tj3 should basically work now. Just customize `org-export-taskju

Re: [Orgmode] [Babel] detangle

2010-10-29 Thread Eric Schulte
Hi Eric, The bug you mentioned should have been fixed by yesterday's commit ,[c6565eaa43d398f6771edd59c2bfe7ca54e4a93e] | commit c6565eaa43d398f6771edd59c2bfe7ca54e4a93e | Author: Eric Schulte | Date: Fri Oct 29 01:37:28 2010 -0600 | | fixed typos in tangle comment link format strings

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Eric Schulte
Hi, Sorry about this oversight, I must have missed it when trolling through the git logs. I've now added an entry on the Babel speed commands. Thanks -- Eric Jambunathan K writes: > Carsten Dominik writes: > >> Dear all, >> >> I have release version 7.02 or Org-mode. Thanks to all who >> ha

Re: [Orgmode] [Babel] detangle

2010-10-29 Thread Eric S Fraga
"Eric Schulte" writes: > Hi Eric, > > The bug you mentioned should have been fixed by yesterday's commit > > ,[c6565eaa43d398f6771edd59c2bfe7ca54e4a93e] > | commit c6565eaa43d398f6771edd59c2bfe7ca54e4a93e > | Author: Eric Schulte > | Date: Fri Oct 29 01:37:28 2010 -0600 > | > | fixed t

[Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 4:02 PM, Jambunathan K wrote: Carsten Dominik writes: Dear all, I have release version 7.02 or Org-mode. Thanks to all who have contributed! Enjoy - Carsten Changes in version 7.02 1. Would be nice if Babel specific changes are in a separate headline. 2. Please m

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 3:06 PM, Jambunathan K wrote: Carsten Hi Jambunathan, On Oct 28, 2010, at 2:40 PM, Jambunathan K wrote: I have every reason to believe that upcoming version of Org would be tagged as 7.02. Earlier I had argued that version strings be version-to-list compatible. I woul

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Just FYI, I've just pushed up another fix for ob-calc.el which I found was required to avoid errors on evaluation of calc code blocks. Best -- Eric ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Nicolas Goaziou
Hello, > Sébastien Vauban writes: > Does that mean that we must admit this will stay like that forever, > or will one try to look and see if it's possible to make that > extension? Nobody said it was impossible. For now, it is unavailable because not satisfying enough. The main difficulty i

Re: [Orgmode] Re: [WISH] Org Importers

2010-10-29 Thread Matt Lundin
Jeff Horn writes: >> FWIW, I have a home-brewed perl script that converts latex documents to >> org-mode files. Loosely based on latex2doc[1], it uses a latex style >> file (generated by the perl script) to markup the pdf output (e.g. >> asterisks for section headings, etc.). The org-formatted pd

Re: [Orgmode] Release 7.02

2010-10-29 Thread Jeff Horn
On Fri, Oct 29, 2010 at 2:49 AM, Carsten Dominik wrote: > Implement MathJax support > == > > Org-mode now uses MathJax to display math on web pages.  We serve > MathJax from the orgmode.org server, at least for the time being > (thanks Bastien!).  If you are going to use th

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Jambunathan K
Carsten You haven't misunderstood my arguments at all. > > - do not use something like 7.02a, because the letter will defeat > version number testing > - from our most recent exchange I felt that you agree that > 7.02 will behave correctly when compared with the > version- functions. So

Re: [Orgmode] Release 7.02

2010-10-29 Thread Erik Iverson
Jeff Horn wrote: On Fri, Oct 29, 2010 at 2:49 AM, Carsten Dominik wrote: Implement MathJax support == Org-mode now uses MathJax to display math on web pages. We serve MathJax from the orgmode.org server, at least for the time being (thanks Bastien!). If you are goin

Re: [Orgmode] Release 7.02

2010-10-29 Thread Jeff Horn
Thanks. That did the trick. I think it may be a bit faster too, running on my server... but that could be my imagination. On Fri, Oct 29, 2010 at 2:03 PM, Erik Iverson wrote: > > > Jeff Horn wrote: >> >> On Fri, Oct 29, 2010 at 2:49 AM, Carsten Dominik >> wrote: >>> >>> Implement MathJax support

Re: [Orgmode] Release 7.02

2010-10-29 Thread Erik Iverson
Jeff Horn wrote: Thanks. That did the trick. I think it may be a bit faster too, running on my server... but that could be my imagination. It is very likely faster. Also, note the following about using Firefox: http://www.mathjax.org/resources/faqs/#image-fonts On Fri, Oct 29, 2010 at 2:

[Orgmode] MobileOrg 1.5 for iPhone released with encryption support

2010-10-29 Thread Richard Moreland
Hi, I'd like to announce that MobileOrg 1.5 for iPhone was just approved and should be available in the AppStore (it may take a few hours to show up everywhere). This version supports encryption of files stored on a remote server. It requires Org-mode 7.02+. Please see http://mobileorg.ncogni.t

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric S Fraga
"Eric Schulte" writes: > Eric S Fraga writes: > >> Eric, >> >> This is really nice! >> >> I had a problem initially in that calc-push-list was undefined. I had >> to initiate calc first so maybe a >> >> : (require 'calc) >> > > Ah yes, that is in the ob-calc.el file, but not in the code snippet

[Orgmode] Re: parsing formatted text

2010-10-29 Thread Aidan Gauland
Eric Schulte gmail.com> writes: > You could pass the text through the `org-export-string' function to > generate a string of HTML from a string of Org markup. > > e.g. > > (org-export-string "plain plain *bold* plain" "html") > > returns the following string > > "plain plain bold plain" A

[Orgmode] Problem exporting

2010-10-29 Thread markscala
I updated to 7.02 today and now am unable to publish a project to html. This is the error reported in *Messages* Publishing file /home/mark/teach/10fall/metaphysics/notes/index.org using `org-publish-org-to-html' Exporting... tramp-convert-file-attributes: Wrong type argument: numberp, 128838367

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Eric S Fraga writes: > "Eric Schulte" writes: > >> Eric S Fraga writes: >> >>> Eric, >>> >>> This is really nice! >>> >>> I had a problem initially in that calc-push-list was undefined. I had >>> to initiate calc first so maybe a >>> >>> : (require 'calc) >>> >> >> Ah yes, that is in the ob-ca

[Orgmode] [BUG] org-exp.el: Broken Internal Links

2010-10-29 Thread Jambunathan K
See Heading2 for description of the bug. This bug has been there since time immemorial. # Input Org file * Heading1 * Heading2 Link to [[Heading1]] is OK. Link to [[Heading3]] is broken. To fix this, org-link-search in org-export-target-internal-links should avoid matching on the sel

Re: [Orgmode] MobileOrg 1.5 for iPhone released with encryption support

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 9:00 PM, Richard Moreland wrote: Hi, I'd like to announce that MobileOrg 1.5 for iPhone was just approved and should be available in the AppStore (it may take a few hours to show up everywhere). Great. Thanks a lot, Richard!!! - Carsten This version supports enc

[Orgmode] Problem with publishing to html

2010-10-29 Thread markscala
I updated to 7.02 today and now am unable to publish a project to html. This is the error reported in *Messages* Publishing file /home/mark/teach/10fall/metaphysics/notes/index.org using `org-publish-org-to-html' Exporting... tramp-convert-file-attributes: Wrong type argument: numberp, 128838367

[Orgmode] requested feature

2010-10-29 Thread Marvin Doyley
Does anybody have a function that turns a org header into file with a link to the file where it originated from ? For example, lets say I have the following heading * Apples * Cherry * Tomatoes Lets say I have a mini project on Apples, it would be nice to issue a single command that turns Applies

[Orgmode] Re: Unbillable clock time

2010-10-29 Thread Adam Elliott
Ross Patterson rpatterson.net> writes: > I would like to be able to designate some of my clock time as unbillable > such that when using a clockreport the unbillable time is not included. > I would also like to compare billable and unbillable time if possible. Back in March I submitted a patch t

Re: [Orgmode] Problem with publishing to html

2010-10-29 Thread Noorul Islam
On Sat, Oct 30, 2010 at 4:23 AM, wrote: > I updated to 7.02 today and now am unable to publish a project to > html.  This is the error reported in *Messages* > > Publishing file /home/mark/teach/10fall/metaphysics/notes/index.org using > `org-publish-org-to-html' > Exporting... > tramp-convert-f

Re: [Orgmode] [BUG] org-exp.el: Broken Internal Links

2010-10-29 Thread Noorul Islam
On Sat, Oct 30, 2010 at 2:56 AM, Jambunathan K wrote: > > See Heading2 for description of the bug. This bug has been there since > time immemorial. > > # Input Org file > > * Heading1 > > * Heading2 > >  Link to [[Heading1]] is OK. Link to [[Heading3]] is broken. To fix this, >  org-link-search in

[Orgmode] Git pull has merge conflict

2010-10-29 Thread Noorul Islam
I am not sure why this conflict is arising even after resetting to head and then doing a pull $ noo...@sajida:~/emacs/org-mode$ git reset --hard HEAD is now at ba6b6f3 Merge branch 'master' of git://repo.or.cz/org-mode $ noo...@sajida:~/emacs/org-mode$ git pull Auto-merging ORGWEBPAGE/index.org C

[Orgmode] [BUG] org-exp.el: Broken Internal Links on Fuzzy Match

2010-10-29 Thread Jambunathan K
(Refiling with added info, Thanks Noorul) See Heading2 for description of the bug. This bug has been there since time immemorial. (setq org-link-search-must-match-exact-headline nil) # Input Org file * Heading1 * Heading2 Link to [[Heading1]] is OK. Link to [[Heading3]] is broken. To f