Rehan Iftikhar wrote:
> Hi Org list!
>
> For those of you familiar with org-collector (ie. propview dynamic
> block) is there already a way to include a calculated row?
>
> For example, in the demonstration of how to use org-collector @
> http://orgmode.org/worg/org-contrib/org-collector.html,
> Rehan Iftikhar wrote:
>
> > * More Complex Example: displaying the mean of the "Amount" column
> > for each week.
> >
I see that I misread this: the formula calculates the mean of all the entries,
not the mean for each week. Having thought about it for about 10 seconds,
I cannot think of a
2011/3/2 Benny Simonsen :
> Hi
>
> I would like to use macros in files that I include in another file.
> The problem is that the macros don't expand in included files. Is
> there something I have missed or?
>
> Example with two files, main.org and sub.org
>
> = main.org START
> #+TITLE: Ma
Hi Darlan,
Darlan Cavalcante Moreira writes:
> I knew there was some variable to control this for all elisp links. I would
> prefer not to set this to nil, since I like the confirmation for other
> elisp links and since links for attached files are common for me I thought
> it could be a "built-
Hi Sébastien,
Sébastien Vauban writes:
> It was a matter of allowing people to loose less time next time
> they'll see that message.
Yes, but people would loose less time if they read the docstring
of the variable `org-enforce-todo-dependencies' before setting it
in any fashion :)
--
Bastie
Bastien writes:
> Hi,
>
> Carsten Dominik writes:
>
>> I like the patch, but since it is not critical it remains
>> on ice until :eval is supported by XEmacs.
>>
>> Michael, it would be nice if you could put :eval into
>> XEmacs so that we can use this improved code for the
>> mode line. Pleas
Hi Nick,
Nick Dokos writes:
> Konrad Hinsen wrote:
>
>> Is there a way to get this inserted only into the day view, but not
>> into the week view? In fact, I would like to have that choice for
>> agenda items in general. It makes sense (to me at least) to have more
>> information in the day vie
Hi Bernt,
Bernt Hansen writes:
> If narrowing the buffer allows the state change when the parent (outside
> the narrowed region) has the ORDERED property - I think that's a bug
> that needs to be fixed.
Should be fixed now, thanks.
--
Bastien
Hi Michael,
Michael Sperber writes:
>> Michael, did you had time to progress on this?
>
> Not yet. But it is on my list.
Good - thanks for the update!
--
Bastien
Hi Marcelo,
Marcelo de Moraes Serpa writes:
> "This operation copies all files currently listed in org-mobile-files
> to the directory org-mobile-directory. By default this list contains
> all agenda files (as listed in org-agenda-files), but additional files
> can be included by customizing org
Hi Marcelo,
Marcelo de Moraes Serpa writes:
> *bump* -- anyone ?
I know people on this list are *very* reactive, but a delay of two days
doesn't mean an email will never be answered - please wait for one week
before bumping threads... thanks!
--
Bastien
Bastien writes:
> Hi Thorsten,
>
> Thorsten writes:
>
>> Ok, trial and error suggests that missing values in numeric columns can
>> be represented as 0 in formulas, in string columns as "". Is there
>> something like NaN in calc/org-table?
>
> I don't know what is NaN. Can you give an example
On Sat, Mar 5, 2011 at 11:55 AM, Thorsten
wrote:
> Bastien writes:
>
>> Hi Thorsten,
>>
>> Thorsten writes:
>>
>>> Ok, trial and error suggests that missing values in numeric columns can
>>> be represented as 0 in formulas, in string columns as "". Is there
>>> something like NaN in calc/org-tab
I put the diary-sunset and diary-sunrise functions in a file called
sunrisesunset.el in my elisp directory, it is part of my load path and put
'(require 'sunrisesunset)
in my .emacs
It only loads if I type
M-x load-library RET sunrisesunset RET
I am not sure why it isn't automatically loading l
Patch 642 (http://patchwork.newartisans.com/patch/642/) is now "Accepted".
Maintainer comment: none
This relates to the following submission:
http://mid.gmane.org/%3C87wrkh4oua.fsf%40member.fsf.org%3E
Here is the original message containing the patch:
> Content-Type: text/plain; charset="utf-8
Hi Tassilo,
I've applied your patch. Thanks for this neat addition!
--
Bastien
On 5 Mar 2011, at 12:44, Matthew Sauer wrote:
I put the diary-sunset and diary-sunrise functions in a file called
sunrisesunset.el in my elisp directory, it is part of my load path
and put
'(require 'sunrisesunset)
in my .emacs
Did you put a
(provide 'sunrisesunset)
at the end
Hi Benny,
Benny Simonsen wrote:
> 2011/3/2 Benny Simonsen :
>> I would like to use macros in files that I include in another file.
>> The problem is that the macros don't expand in included files. Is
>> there something I have missed or?
>>
>> Example with two files, main.org and sub.org
>>
>> = ma
On 5 Mar 2011, at 11:19, Bastien wrote:
Is there a way to get this inserted only into the day view, but not
into the week view? In fact, I would like to have that choice for
agenda items in general. It makes sense (to me at least) to have
more
information in the day view than in the week view
Konrad,
Being an elisp noob I had forgotten about the provide code in the .el file.
That fixed that problem, THANK YOU so much. Now if I can figure out why I
have to
M-x load-library RET google-weather RET
M-x load-library RET org-google-weather RET
to get google weather to work with my agenda (
On 5 Mar 2011, Matthew Sauer wrote:
> I should just need to use the code in my dot emacs
> '(require 'google-weather)
> '(require 'org-google-weather)
> for it to work but that doesn't seem to do the trick, maybe i need to
> look in the code in those .el files.
You should omit the leading '. With
Matthew Sauer wrote:
> '(require 'google-weather)
> '(require 'org-google-weather)
That should be
(require 'google-weather)
(require 'org-google-weather)
without a quote.
Nick
Awesome! Thanks!
-Bernt
Bastien writes:
> Hi Bernt,
>
> Bernt Hansen writes:
>
>> If narrowing the buffer allows the state change when the parent (outside
>> the narrowed region) has the ORDERED property - I think that's a bug
>> that needs to be fixed.
>
> Should be fixed now, thanks.
Hi Konrad,
Konrad Hinsen writes:
>> A clever combination of org-agenda-span and org-agenda-skip-function
>> (checking against this span) in a custom agenda command should do.
>
> That sounds like a good plan. A property could be used to limit visibility
> to day or week views, and the skip-funct
Yes, it's very well explained, thank you.
I'll try to encode my names by removing any "-" and by adding a dummy
letter at the beginning.
Is there another way of doing simple database in org-mode? By putting a
component's name in a cell, I would like if the other columns could fill
them-sel
Dear list,
Is anyone currently using org-mode in conjunction with pyblosxom or
blosxom for their blogs? I think there might be a few out there doing
so because I found
[[http://comments.gmane.org/gmane.emacs.orgmode/18069][this]] thread
referring to it. If so, do you have any notes to share? I'
Thanks that worked, as I said Noob, somethings get the quote and some
don't. Now if I can just get org-contacts to load correctly, void variable
value, life will be great. I think I am starting to get the hang of this
language.
Matthew
On Sat, Mar 5, 2011 at 9:23 AM, Nick Dokos wrote:
> Matthe
Thanks Bastien, and sorry for the early bump!
Marcelo.
On Sat, Mar 5, 2011 at 4:54 AM, Bastien wrote:
> Hi Marcelo,
>
> Marcelo de Moraes Serpa writes:
>
>> *bump* -- anyone ?
>
> I know people on this list are *very* reactive, but a delay of two days
> doesn't mean an email will never be answe
2011/3/5 Sébastien Vauban :
> Hi Benny,
>
> Benny Simonsen wrote:
>> 2011/3/2 Benny Simonsen :
>>> I would like to use macros in files that I include in another file.
>>> The problem is that the macros don't expand in included files. Is
>>> there something I have missed or?
>>>
>>> Example with two
Aloha all,
I proposed a similar patch a few weeks ago, but it seems to have
slipped through the cracks or was ignored. I'm proposing it again
because Org-mode's handling of captions during LaTeX export is
inconsistent and limiting.
The optional argument to the LaTeX caption command is us
Hi Thomas,
just to let you know I didn't ignore your patch -- I will give
feedback on this soon.
If others can give feedback as well, all the better.
Thanks a lot!
--
Bastien
Although most users of orgmode and emacs seem to be members of the
programming world, a few professional writers also use these tools (and
I cannot imagine why everyone else uses Word...). As a writer and
non-programmer, I have a task that is probably very simple for a
programmer but seems a bit c
Although most users of orgmode and emacs seem to be members of the
programming world, a few professional writers also use these tools (and
I cannot imagine why everyone else uses Word...). As a writer and
non-programmer, I have a task that is probably very simple for a
programmer but seems a bit c
Matthew Sauer wrote:
> Thanks that worked, as I said Noob, somethings get the quote and some don't.
> Now if I can just get
> org-contacts to load correctly, void variable value, life will be great. I
> think I am starting to
> get the hang of this language.
> Matthew
>
The main thing to re
Hello,
Both examples from the org-info tutorial on publishing projects to web
(13.3.1 Example: simple publishing configuration
13.3.2 Example: complex publishing configuration)
fail with the following trace from the message window:
Publishing file /Users/iani/Documents/projects/110305website/ind
Bastien writes:
Hi Bastien,
> I've applied your patch.
Great!
> Thanks for this neat addition!
You're welcome. BTW, I just noticed that I made a wording error in the
docstring of `org-refile-get-location':
Prompt the user for a refile location, using PROMPT.
PROMPT should not be prefixe
Hi Bastien,
On 5 Mar 2011, at 18:07, Bastien wrote:
Sorry, not sure I was clear enough: my point was that you can
*already*
select tasks you want to appear on the dayly agenda view and not on
the
weekly agenda view.
It's just a matter of writing an org-agenda-skip-function that react
diffe
Hi,
I am trying to move more seriouse text tasks from AUCTeX to Org. Mostly
because it allows me to link to pdf articles, and have * COMMENT in the
same file.
However, I have noticed at least one non-acceptable issue. When using
using English, LaTeX (via Babel or just default) full-stops (≈doubl
The sunrise and sunset strings have been available in the diary
functions for EMACS for a long time; and, the new code above you've
made for inserting them into the weather strings in OrgMode agendas is
great too. Thanks and I look forward to using it.
Now, is there any simple way, maybe with the
Hello and sorry, please ignore my question.
The mistake ws the missing slash (/) at the end of the folder specifications
for the project's file.
The publish-project to html works now all right.
Iannis Zannos
On Sat, Mar 5, 2011 at 9:59 PM, Iannis Zannos wrote:
>
> Hello,
>
> Both examples from
Hi Iannis,
Iannis Zannos writes:
> Hello and sorry, please ignore my question.
> The mistake ws the missing slash (/) at the end of the folder
> specifications for the project's file.
>
> The publish-project to html works now all right.
Thanks for letting us know :)
--
Bastien
Hi Tassilo,
Tassilo Horn writes:
>> Thanks for this neat addition!
>
> You're welcome. BTW, I just noticed that I made a wording error in the
> docstring of `org-refile-get-location':
>
> Prompt the user for a refile location, using PROMPT.
> PROMPT should not be prefixed with a colon and a
Hi Eric,
Eric S Fraga writes:
> I have searched for a variable that may affect the following behaviour
> but have not found one.
You can now use `org-export-table-remove-empty-lines'.
Note that :remove-nil-lines was already available when sending
tables trough #+ORGTBL.
HTH,
--
Bastien
Hi Tom,
Tom writes:
> In such cases when the formula is modified Org should either
> print warning to the echo area, so the user notices when the
> formulas are changing because of the move, or it should ask the
> user what to do ("do you want to modify the formulas?").
I've added `org-table-fi
So I finally setup gnus after reading some thousand of pages of manuals,
now the only thing which is missing is an address book...
I tried out org-contacts and it looks great, also because from my
understanding BBDB has never been included in the Emacs default
distribution and it's quite old..
So
Aloha Rasmus,
On Mar 5, 2011, at 10:50 AM, Rasmus wrote:
Hi,
I am trying to move more seriouse text tasks from AUCTeX to Org.
Mostly
because it allows me to link to pdf articles, and have * COMMENT in
the
same file.
This would make you an "early adopter." I haven't been able to solve
emacs23.2
org7.4
MacOSX SnowLeopard
I put
#+EMAIL: soujiro0...@gmail.com
in an org file, hoping that org-export-as-html will produce mailto:...";> in the resultant html file.
But it does not.
I have not idea why. Do I need some other options or whatever?
soichi
Konrad Hinsen wrote:
> What keeps me from writing that function right now is that I don't
> know the internals of org-mode well enough to know how to check for a
> propery or tag. I expect to spend an hour reading source code, and
> that's for another day :-)
>
Before diving into the code, che
Hi Ishi,
ishi soichi writes:
> emacs23.2
> org7.4
> MacOSX SnowLeopard
>
> I put
>
> #+EMAIL: soujiro0...@gmail.com
>
> in an org file, hoping that org-export-as-html will produce "mailto:...";> in the resultant html file.
> But it does not.
Please test again latest git repository, this shou
Hi Nathan,
Nathan Neff writes:
> Is there an option NOT to clock out of a Todo item that's
> created using org-capture?
I assume you mean "when :immediate-finish is non-nil in a capture
template", right?
Yes, this bugged me as well.
The default behavior is now (latest git) that :immediate-f
Hi Richard,
Richard Riley writes:
> Could I suggest that org-mobile-pre-push-hook is processed at the start
> of the org-mobile-push function before the checks? That way it can be
> used to properly setup mobile e.g using auth-source for the mobile
> password.
This trivial patch will perhaps do
Hi Richard,
Richard Riley writes:
> Could I suggest that org-mobile-pre-push-hook is processed at the start
> of the org-mobile-push function before the checks? That way it can be
> used to properly setup mobile e.g using auth-source for the mobile
> password.
This trivial patch will perhaps do
Hi Tom,
Tom writes:
> How about adding an option to set an expiration time for the refile
> cache after which it is cleared automatically and rebuilt again?
How about using something like this in your .emacs.el:
#+begin_src emacs-lisp
(setq org-refile-rebuild-cache
(run-with-idle-timer 6
Hi Filippo,
"Filippo A. Salustri" writes:
> I'm running the Feb 23 nightly snapshot of org on the current
> Aquamacs on MacOS (also current). The question is this: it seems
> that even with org-refile-use-outline-path set to full-file-path I
> can't refile things to other files. If I try, I ge
Thanks for the info.
I have checked "org-exp.el", and that particular variable,
"org-export-email-info" was nil, which I have changed to "t".
It worked fine.
Thanks.
soichi
2011/3/6 Bastien :
> Hi Ishi,
>
> ishi soichi writes:
>
>> emacs23.2
>> org7.4
>> MacOSX SnowLeopard
>>
>> I put
>>
>> #
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.
-
Hi Andrea,
> So is there also a way to get all the contacts from my OSX address
> book?
> I can export to vCard and then it should not be hard to convert all the
> mails, but maybe someone already scripted that?
Sorry, can't help you with that, but I'm sure vCard is a good start as
it is plain te
On Fri, Mar 04 2011, Bastien wrote:
> Hi Eric,
>
> Eric Abrahamsen writes:
>
>> Whilst trying to figure out how to shut off the postamble in HTML
>> export, I realized that there are far more export-related options
>> available than those listed in section 12.2 (Export options) of the
>> manual.
Hi,
I capture tasks in a date-tree task-diary file. I'm at the point where I
would like to extract a particular set of tasks (in this case, all tasks of
a particular tag) into a separate file. It's really easy to set the agenda
view to isolate the tasks, but what's a reasonable way to select tho
U-SWEETSAUERPORT\\Matthew Sauer wrote:
,
| Debugger entered--Lisp error: (void-variable org-property-set-functions-alist)
| add-to-list(org-property-set-functions-alist ("BIRTHDAY" .
org-completing-read-date))
| eval-buffer(# nil "/elisp/org-contacts/org-contacts.el" nil
t) ; Reading a
m
B r
--
AIDS 2.0: The Kafka Pandemic
http://thekafkapandemic.blogspot.com/2010/12/welcome-to-kafka-pandemic-two-forces_9182.html
I support the Whittemore-Peterson Institute (WPI)
===
I want to see the original (pre-hold) Lo et al. 2010 NIH/FDA/Harvard MLV paper.
Thanks. I've tried to refile but it wouldn't let me refile outside of the
original file. Your answer confirmed it and, digging deeper, I found that I
needed to modify org-refile-targets.
On Sat, Mar 5, 2011 at 20:49, Samuel Wales wrote:
> m
> B r
>
> --
> AIDS 2.0: The Kafka Pandemic
>
> http:
Michael Käufl writes:
> No it's not. As you can see here [1], Julien Danjou has already started
> to inlucde more features. For now org-contacts supportes mail addresses
> and irc nicknames. And I'm sure a lot more will follow.
>
Good to know :)
So I think I will avoid trying BBDB after all,
63 matches
Mail list logo