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.
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
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
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
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
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
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,
>
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
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
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
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
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
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
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
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
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 --
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
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
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
Ł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ł
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
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
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
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
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
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
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
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
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
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
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.
>>
>
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
Ł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
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
"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
Ł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 `
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-
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
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
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
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
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
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
"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
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
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
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
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
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
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
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
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
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
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:
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
"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
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
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
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
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
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
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
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
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
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
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
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
(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
68 matches
Mail list logo