On zo 14-okt-2012 09:06
Chris Henderson wrote:
>I would like the project to automatically inherit a
>few properties like: Purpose, Outcome, Todo's and also date when the
>project was added to the list.
For the last bit I use org-expiry.el with a little glue.
The idea I wanted to implement was
I've been catching up on the mailing list, and thinking about my
personal use case versus other typical patterns. I thought I would
share a thought with the group.
I would divide use cases into three main cohorts:
- /org-planning/: org files consist mostly of planning and
tracking content (lets
Hello Sanjib and others,
Sorry to continue with this terribly off-topic thread, but as the person
who wrote that snippet I felt I should clarify.
On Wed, Oct 17, 2012 at 03:36:42PM -0400, Nick Dokos wrote:
> Teemu Likonen wrote:
>
> > Sanjib Sikder [2012-10-18 00:32:00 +0530] wrote:
> >
> > >
On Sat, Oct 13, 2012 at 6:06 PM, Chris Henderson wrote:
> If I create a project (C-c c and press 'p' for Project) in the
> project.org file, I would like the project to automatically inherit a
> few properties like: Purpose, Outcome, Todo's and also date when the
> project was added to the list.
>
I second using a VCS instead. I have my Org files in a Bazaar repo,
and a cron job setup to commit hourly if changes occur.
On Wed, Oct 17, 2012 at 09:25:15PM +0200, Achim Gratz wrote:
> Sanjib Sikder writes:
> > I wanted to set a cron job for backing up all my org files as
> > suggested by Suva
Sanjib Sikder [2012-10-18 00:56:46 +0530] wrote:
> I do not find personal crontab file. how do I create it ? crontab -e says
> my personal file is not there
With "crontab -e" in Debian system.
> If I want to run it as root then how do modify the following code as
> it is nor working ..
You shou
Hi,
Thanks a lot.
-
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*
*
On Thu, Oct 18, 2012 at 1:06 AM, Nick Dokos wrote:
> Teemu Likonen wrote:
>
> > Sanjib Sikder [2012-10-18 00:32:00 +0530] wrote:
> >
> > > Even after 26th minute, there is no sig
Teemu Likonen wrote:
> Sanjib Sikder [2012-10-18 00:32:00 +0530] wrote:
>
> > Even after 26th minute, there is no sign of the code in work. Is it that
> > $HOME is not allowed and I need to give full path ?
>
> Ah, I thought that you'd run it from your personal crontab. So yes,
> write paths fr
Hi,
I do not find personal crontab file. how do I create it ? crontab -e says
my personal file is not there
If I want to run it as root then how do modify the following code as it is
nor working ..
---
#!/bin/bash
mkdir -p /home/USERNAME/org/backup && \
find $HOME -type f -name '
Sanjib Sikder writes:
> I wanted to set a cron job for backing up all my org files as
> suggested by Suvayu Ali.
Please don't. If you consider this a viable backup strategy, you might
just as well have no backup at all. You should use a VCS like Git to be
able to revert to an earlier version of
Sanjib Sikder [2012-10-18 00:32:00 +0530] wrote:
> Even after 26th minute, there is no sign of the code in work. Is it that
> $HOME is not allowed and I need to give full path ?
Ah, I thought that you'd run it from your personal crontab. So yes,
write paths from root's point of view.
Hi,
No it is not working.
I copied the code in the backup.sh file and put into /etc/cron.hourly
---
#!/bin/sh
target=$HOME/org/backupOrg
mkdir -p "$target" && \
find "$HOME" -type f -name '*.org' ! -path "$target/*" \
-exec cp -t "$target"
Sanjib Sikder [2012-10-17 23:55:12 +0530] wrote:
> #!/bin/bash
>
> mkdir -p /home/USERNAME/org/backup && \
> find $HOME -type f -name '*\.org' ! -path "/home/USERNAME/org/backup/*" \
> -exec cp -t /home/USERNAME/org/backup/ \{\} \;
How about this:
#!/bin/sh
target=$HOME/org/backup
mkdir -p
Thomas S. Dye writes:
> Then, reloading Org mode:
> ...
> Loading /Users/dk/.emacs.d/src/org-mode/lisp/ob-tangle...done
> Loading /Users/dk/.emacs.d/src/org-mode/contrib/babel/langs/ob-tcl.el
> (source)...done
> Had to fall back onto load-path, something is not quite right...
> ...
> Loading /User
Hi,
I wanted to set a cron job for backing up all my org files as suggested by
Suvayu Ali.
#!/bin/bash
mkdir -p ~/org/backup && \
find $HOME -type f -name '*\.org' ! -path "$HOME/org/backup/*" \
-exec cp -t ~/org/backup/ \{\} \;
In Ubuntu I have put the bash file in cron.daily but it seems
Hello,
"Sebastien Vauban"
writes:
> Hello Nicolas,
>
> Nicolas Goaziou wrote:
>> "Myles English"
>> writes:
>>
>>> Can anyone tell me please why (in the examples below) {} exports fine
>>> but {{}} exports as \{\{\}\} ? Am I meant to wrap these in
>>> #+begin_latex blocks?
>>
>> You're writ
Sanjib Sikder wrote:
> It is working perfectly.
>
> Thank you very much for your incessant helps.
>
:-) You are welcome.
Asrail writes:
> * lisp/ob-scala.el (org-babel-scala-wrapper-method): Use an scala
> block enclosing the submitted code
>
> The string representing an well formed block was not an Scala
> code. I put the string from the user into an block, surrounded by an
> call to replace the default output
Hi,
Could someone please review this patch?
On Oct 15, 2012 4:39 PM, "Asrail" wrote:
> * lisp/ob-scala.el (org-babel-scala-wrapper-method): Use an scala
> block enclosing the submitted code
>
> The string representing an well formed block was not an Scala
> code. I put the string from the us
Nicolas,
Many thanks for your comments, I will heed them all.
But first one more request for comments that I forgot to include in my
original message:
Computing the difference between two dates in the presence of repeating
dates is a subtle affair. Here, in computing the difference between
dead
Hello,
Robert Klein writes:
> I created a patch for the new exporter, so I can adding onload and
> onunload attributes to the body tag in HTML export.
>
>
> I'm rather new to emacs lisp, please check if this is to be included
> in org-mode.
Before reviewing the patch, I'd like to know if the on
Hallo,
I created a patch for the new exporter, so I can adding onload and
onunload attributes to the body tag in HTML export.
I'm rather new to emacs lisp, please check if this is to be included in
org-mode.
Best regards
Robert
--
Robert Klein - Max Planck-Institut für Polymerforschung
Ac
Hello,
justus-...@piater.name writes:
> I would like not to be bothered with TODOs that have a scheduled date in
> the future. However, as of that scheduled date I would like their
> deadline prewarnings to appear in the agenda, just like non-scheduled
> TODOs. I do not see how to achieve this
Hello,
asdfsadfmcxd...@safe-mail.net writes:
> create a new empty org-mode file containing this text
>
> * test
> $\text{asdf}$
>
> export to latex, build pdf from tex
>
> error
>
> ERROR: Undefined control sequence.
>
> --- TeX said ---
> \text
>
> l.38 $\text
>
Hello Nicolas,
Nicolas Goaziou wrote:
> "Sebastien Vauban" writes:
>
>> When pressing `C-e' to go to the last char of a looong sentence, such as:
>>
>> azroiu zrouz eruzepr ozeioru zoepru
>> zoeruozieuriozerusdjflsdfjsdksjfsdfs df sdjf sdf sdsd fklsdjf sdj
>> sdjlksdjf sqfjsdjf sdfklsjdjsdsdjlkmsk
Dear Dokos,
It is working perfectly.
Thank you very much for your incessant helps.
-
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*
*
On Tue, Oct 16, 2012 at 3:51 PM, Nick Dokos wrote:
> Sanjib Sikder wrote:
>
> > Hi, Dokos,
> >
> > Thanks again.
Hi,
I have scratched an itch:
I would like not to be bothered with TODOs that have a scheduled date in
the future. However, as of that scheduled date I would like their
deadline prewarnings to appear in the agenda, just like non-scheduled
TODOs. I do not see how to achieve this behavior using t
On 10/16/12 10:25 AM, Christian Moe wrote:
Hi,
When I try to export to ODT (without invoking the new exporter or
anything), I get:
OpenDocument export failed: Wrong type argument: stringp,
(org-export-odt-preprocess-latex-fragments)
Hi again,
Actually, this only happens on export-to-odt-and-
I am trying to select a region and archive it. At the moment it only
archives where the cursor is. This is what I am doing:
- select a region - ctrl- and C-e to go the end of the line.
- archive - C-c C-x C-x
Thanks.
Nicolas Goaziou [2012-10-16 22:19:40 +0200] wrote:
> Teemu Likonen writes:
>> Org's column view has "e" key for editing fields such as property
>> values. Properties are messed up if user tries to clear the
>> property's value with "e". See the following example.
>> Package: Org-mode version 7.8
30 matches
Mail list logo