On 02/18/2012 08:23 AM, Eric Schulte wrote:
Daniel Drake writes:
Hi All,
I'm using R in org-mode/babel to analyze data from a psychological
study. The subjects in this study are identified by nine digit integers
(e.g., 987654321) that I treat as strings (or factors) in my R data
frames.
Tab
> Hi,
>
> Given a todo list in an org file, is there already a function, that
> converts this list to an elisp list, that contains at least heading,
> deadline and properties?
Create the following interactive function. This functions exports Org
file to a *pretty* lisp file.
--8<---c
t...@tsdye.com (Thomas S. Dye) writes:
> I just ran across this article on reproducible research that some of you
> might find interesting.
>
> http://journal.r-project.org/archive/2011-2/RJournal_2011-2_Lundholm.pdf
On reproducible research, are you guys aware of the relatively recent
project Kn
On Sun, Feb 19 2012, Peter Münster wrote:
> Hi,
>
> Given a todo list in an org file, is there already a function, that
> converts this list to an elisp list, that contains at least heading,
> deadline and properties?
>
> Example input:
> * TODO todo-test
> DEADLINE: <2012-04-19 Thu 13:33>
>
Nick Dokos wrote:
> Not To Miss wrote:
>
> > I looked that section carefully and the whole manual briefly. I
> > haven't found anything yet. That's why I am asking on the mailing list
> > to see if anyone has some workaround.
> >
> > On Sat, Feb 18, 2012 at 9:03 AM, Sean O'Halpin
> > wrote:
t...@tsdye.com (Thomas S. Dye) writes:
> Hi Eric,
>
> I pushed a draft of the revised LaTeX language section to Worg
> (http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html).
>
> Please take a look and edit as necessary. Too often I understand
> these things partially!
>
Everyth
Philip Rooke writes:
> Eric Schulte writes:
>
>> Does the following work with the addition of ":results scalar"?
>
> Yes, there is no error although the format of the result is different to
> the one database line query or the equivalent shell command. This is
> what happens for me:
>
> #+begin
On Thu, Nov 24 2011, Nick Dokos wrote:
> Are they free variable warnings? If so, you now know how to fix them:
> go wild :-)
All right, done so... ;)
--
Peter
* lisp/org.el, lisp/org-pcomplete.el: Add some `defvars' to avoid
warnings about `assignment to free variable'.
TINYCHANGE
---
lisp/org-pcomplete.el |5 +
lisp/org.el |2 ++
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/lisp/org-pcomplete.el b/lisp/org-pc
Eric Schulte writes:
> It will be up to the authors of individual tests to remove tangled and
> exported files. Ideally we can patch each test to clean up after
> itself. Perhaps we should provide a test macro which accepts a list of
> file names and optionally removes them if the test exists su
On Sat, 18 Feb 2012 13:28:17 -0500
Matthew Jones wrote:
> Hi Renato, I'm the maintainer of MobileOrg for Android.
Hi,
> Regarding #1 this seems like an org-mode thing and I'm not too sure...
> usually I just look at these and file them manually, but this could
> get untenable if you have a lot
Hi Renato, I'm the maintainer of MobileOrg for Android.
Regarding #1 this seems like an org-mode thing and I'm not too sure...
usually I just look at these and file them manually, but this could get
untenable if you have a lot of content
on #2 I think we have it solved here:
https://github.com/m
Samuel Wales writes:
> As a followup to my last comment, this explains how Stapel
> fooled almost everybody and kept raw data hidden:
>
>
> http://chronicle.com/blogs/percolator/the-fraud-who-fooled-almost-everyone/27917
>
> And NYT "Fraud Case Seen as a Red Flag for Psychology
> Research" whi
I've done a fair amount of reading (and-rereading) the manual, and
searching around, but my search skills are failing me and org-mode is
flexible enough that I figure that someone has either done this, or
there's something that makes it unnecessary that I don't know of.
I'd like to be able to writ
Achim Gratz writes:
> Olaf Meeuwissen writes:
>> Successful tests can clean up after themselves but failed tests should
>> not so you can debug. The decision to remove these files should be left
>> to whoever runs the test suite. That implies that even successful tests
>> don't really have to
Hi,
Given a todo list in an org file, is there already a function, that
converts this list to an elisp list, that contains at least heading,
deadline and properties?
Example input:
--8<---cut here---start->8---
* TODO todo-test
DEADLINE: <2012-04-19 Thu 13:33
Daniel Dehennin writes:
> Eric Schulte writes:
>
>
> [...]
>
>> Yes,
>>
>> Org-mode does the above to protect the rest of the file from the
>> possible Org-mode syntax in the code block. However if you then use
>> this text (e.g., through tangling or reference from another code block)
>> the co
At Sat, 18 Feb 2012 18:19:49 +0100,
Bastien wrote:
>
> Hi David and Paul,
>
> David Maus writes:
>
> > Instead of adding the :whitespace-cleanup property to the template
> > definition (what requires you to specify e.g. whitespace-cleanup in
> > every single template) why not define a new hook tha
Not To Miss wrote:
> I looked that section carefully and the whole manual briefly. I
> haven't found anything yet. That's why I am asking on the mailing list
> to see if anyone has some workaround.
>
> On Sat, Feb 18, 2012 at 9:03 AM, Sean O'Halpin wrote:
> > On Fri, Feb 17, 2012 at 4:54 PM, No
Sorry, I didn't make it more clear. I want to create a link to a
specific line automatically, just as the command "C-c l"
(org-store-link) to automatically create a link to the text of current
line. Sometimes line number is more important for me to record.
On Sat, Feb 18, 2012 at 12:11 PM, Eric Sc
Michael Brand writes:
> * doc/org.texi: Decapitalize file name in references to Calc manual.
>
> On a case sensitive file system the references from the HTML Org
> manual (e. g. the link href="Calc.html#Embedded-Mode" or
> href="../Calc/Embedded-Mode.html#Embedded-Mode") to the HTML Calc
> manual
Hi David and Paul,
David Maus writes:
> Instead of adding the :whitespace-cleanup property to the template
> definition (what requires you to specify e.g. whitespace-cleanup in
> every single template) why not define a new hook that is run before
> the finalization starts? I.e. with capture buff
Hi all,
Is there a way to tangle just the body of code blocks, without any header
argurments? For example when I tangle this file
# begin example #
* test
#+name: testplot
#+begin_src R :results output graphics :file tmp.png :tangle tmp.R
plot(1:10)
#+end_src
# end example #
Not To Miss writes:
> I looked that section carefully and the whole manual briefly. I
> haven't found anything yet. That's why I am asking on the mailing list
> to see if anyone has some workaround.
>
[[file:filename.txt::6]] jumps to line 6 of filename.txt for me. I
don't know if this is docum
I looked that section carefully and the whole manual briefly. I
haven't found anything yet. That's why I am asking on the mailing list
to see if anyone has some workaround.
On Sat, Feb 18, 2012 at 9:03 AM, Sean O'Halpin wrote:
> On Fri, Feb 17, 2012 at 4:54 PM, Not To Miss wrote:
>> Hi all,
>>
>
Daniel Clemente writes:
>> Have you tried using a sqlite code block? See ob-sqlite.el
>
> I didn't notice there were both ob-sql and ob-sqlite. It would be
> useful to mention sqlite inside ob-sql.
Done.
>
> Perhaps they should be united?
>
I believe there were reasons for keeping th
Eric Schulte writes:
[...]
> Yes,
>
> Org-mode does the above to protect the rest of the file from the
> possible Org-mode syntax in the code block. However if you then use
> this text (e.g., through tangling or reference from another code block)
> the comma will be automatically removed, so i
Daniel Drake writes:
> Hi All,
>
> I'm using R in org-mode/babel to analyze data from a psychological
> study. The subjects in this study are identified by nine digit integers
> (e.g., 987654321) that I treat as strings (or factors) in my R data
> frames.
>
> Tables output by an R code block tha
Applied, Thanks
"Sebastien Vauban" writes:
> From 3569c16e1d4270e6004441d8cdcc92801b3a01cd Mon Sep 17 00:00:00 2001
> From: Sebastien Vauban
> Date: Thu, 16 Feb 2012 15:50:17 +0100
> Subject: [PATCH] Fix old Babel syntax
>
> ---
> contrib/babel/library-of-babel.org |2 +-
> 1 files changed
* doc/org.texi: Decapitalize file name in references to Calc manual.
On a case sensitive file system the references from the HTML Org
manual (e. g. the link href="Calc.html#Embedded-Mode" or
href="../Calc/Embedded-Mode.html#Embedded-Mode") to the HTML Calc
manual (e. g. the file calc.html or calc/
Hi Bastien,
Hi Paul,
At Sat, 29 Oct 2011 14:08:52 +0200,
Bastien wrote:
>
> Hi Paul,
>
> Paul writes:
>
> > In fact adding whitespace-cleanup to org-capture-before-finalize-hook
> > was what I tried first, but it didn't do what I wanted. This hook is
> > called _after_ the buffer is widened - ma
Hi Giovanni,
When I export the following code block
,
| #+begin_src emacs-lisp :exports both
| :foo
| #+end_src
`
it generates the following HTML.
,
| :foo
|
|
|
|
| :foo
|
`
My guess is that during export you get a message along the lines of
"htmlize is required for exp
Daniel Dehennin writes:
> Hello,
>
> I tryed to babelize an iptables-save file and file to restore it.
>
> Babel put a comma in front of my '*', in the following, the '*mangle'
> became ',*mangle':
>
> #+begin_src text
> # Generated by iptables-save v1.4.4 on Wed Feb 15 10:16:05 2012
> ,*mangle
>
Hi Zhiqiu,
First, I would look at the actual text of the exported html code
example. It likely contains css code specifying how to fontify many
elements of the code block (e.g., on my system your example exports to
the following html [1]). You can then add css to your org-mode file
specifying wh
Viktor Rosenfeld writes:
> Hi Eric,
>
> thanks for your input. I just pulled the latest code from git and while
> my original example works, the following does not:
>
> :PROPERTIES:
> :var: foo=1
> :var+: bar=2
> :var+: baz=3
> :END:
>
> #+BEGIN_SRC sh
> echo foo: $foo
> echo bar: $bar
> echo ba
Unfortunately I don't have access to a windows machine for testing of
tangle behavior. Before we delve deeper, could you confirm two things.
1. It sounds as though you are not using the latest version of Org-mode
from git. Please upgrade to the latest -- which should also get you
the lates
Thanks for posting this workaround.
I've just pushed up a change which rebinds this key in org-src-mode. I
don't know why the binding was ever removed in the first place.
Best,
Leo Alekseyev writes:
> In case anyone is curious, C-x C-s functionality in org-edit-special
> can be easily restore
Johnny writes:
> Hi,
>
> I am trying out the excellent freemind exporter/importer and am running
> into issues with long node names and newlines.
>
> 1) Exporting org to freemind (node name length limitation?)
> In org-mode, none of the headlines can contain newlines, so occasionaly
> they get a
On Fri, Feb 17, 2012 at 4:54 PM, Not To Miss wrote:
> Hi all,
>
> I am reading a long text file and want to write down my notes with
> org-mode. I extremely would like to put the line numbers down along
> with my notes. Although there is a way to store a link for text search
> for the current line
In http://orgmode.org/worg/org-tutorials/non-beamer-presentations.html#sec-3
the 'here' (emacs code available here under Code and usage for
org-export-as-s5) points to
http://gitweb.adaptive.cs.unm.edu/org-S5.git/blob_plain/HEAD:/org-export-as-s5.el
(where theres nothing about emacs/org mode)
Shou
On 16 February 2012 17:05, Thomas S. Dye wrote:
> Rainer M Krug writes:
>
>> Hi
>>
>> I have defined a variable as follow
>>
>> #+property: var DC="/home/rkrug/tmp/CLUSTER"
>>
>> and I am using this path quite often in source blocks (works nicely as
>> expected) but also in org directly, e.g.
>>
Hi Thomas,
At Fri, 17 Feb 2012 14:28:39 +0100,
Thomas Morgan wrote:
>
> Changing a repeating TODO's state to DONE remotely from the
> agenda fails to change the date when the calendar is open in
> another window.
>
> The reason is that `org-recenter-calendar' selects the agenda
> window after doin
Nick Dokos writes:
> Richard Riley wrote:
>
>>
>> Whats the best way to limit the window that agendas use to show open
>> todo items? e.g when I do C-c a a I dont want to see TODOs set for a
>> years time - generally I might only want things in the current week or
>> so. is there something buil
Remember to cover the basics, that is, what you expected to happen and
what in fact did happen. You don't know how to make a good report? See
http://orgmode.org/manual/Feedback.html#Feedback
Your bug report will be posted to the Org-mode mailing list.
44 matches
Mail list logo