Re: [O] [PATCH] Allow early-warning anniversaries in agends [was: Re: org-bbdb-birthday reminder]

2015-10-07 Thread Nicolas Goaziou
Hello,

Nick Dokos  writes:

> IIUC, this issue has not been sorted out yet. Should I wait for that to 
> happen, 
> or change the patch to use (apply #'nconc ...) and possibly revisit it in the 
> future?

I think the latter is fine. There are plenty of places to revisit in the
future anyway. Thank you.


Regards,

-- 
Nicolas Goaziou



Re: [O] [BUG] R src blocks untabify literal constant TABs

2015-10-07 Thread Nicolas Goaziou
Hello,

"Charles C. Berry"  writes:

> Attached is a patch.

Thank you.

> I think it is an improvement, but `org-src-preserve-indentation'
> behaves differently according to context, which makes it hard to
> document succinctly.

There's something suspicious here.

This variable is supposed to only replace tab characters used in
indentation, not anywhere else. However, it seems that your
documentation patch suggests otherwise. It may be a bug then.

Do you have any such example?


Regards,

-- 
Nicolas Goaziou



Re: [O] [BUG] R src blocks untabify literal constant TABs

2015-10-07 Thread Charles C. Berry

On Wed, 7 Oct 2015, Nicolas Goaziou wrote:


Hello,

"Charles C. Berry"  writes:


Attached is a patch.


Thank you.


I think it is an improvement, but `org-src-preserve-indentation'
behaves differently according to context, which makes it hard to
document succinctly.


There's something suspicious here.

This variable is supposed to only replace tab characters used in
indentation, not anywhere else. However, it seems that your
documentation patch suggests otherwise. It may be a bug then.



More than one bug, I am afraid.


Do you have any such example?


Sure, make sure that the whitespace in the `> <' below is a TAB
character (C-q C-i). Running the src block replaces the TAB when
`org-src-preserve-indentation' is nil.

Also, use `org-edit-src-code' with point in the block and immediately exist,
i.e. =C-c ' C-c '=, and the embedded tab disappears.

#+BEGIN_SRC emacs-lisp
  "this is a TAB--> <--"
  #+END_SRC

`untabify' is called by some functions that honor (in some way)
`org-src-preserve-indentation' which explains some of this. FWIW, here
is a summary of functions that use the variable:


|---+---+---|
| function  | protect-leading space | effect on 
tabs|
|---+---+---|
| org-babel-exp-process-buffer  | yes or no | ignore (+/- 
to indent)|
| org-export-unravel-code   | yes or no | ignore
|
| org-element-src-block-interpreter | contents only or not  | ignore
|
| org-element-example-block-interpreter | contents only or not  | ignore
|
| org-fixup-indentation | contents only or not  | ignore (+/- 
to indent)|
| org-babel-parse-src-block-match   | yes or no | keep or 
remove|
| org-babel-haskell-export-to-lhs   | yes or no | keep or 
remove|
| org-babel-spec-to-string  | yes or no | keep or 
remove lead+trail |
| org-src--edit-element | yes or no | keep or 
remove|
| org-edit-src-code | yes or no | keep or 
remove|
|---+---+---|

the '(+/- to indent)' means that leading tabs may be added or removed
with org-metaright and friends. `keep or remove lead+trail' == "keep
or remove leading or trailing TABs only". 'contents only or not' means
there is no effect on `#+BEGIN...' etc.

HTH,

Chuck




Re: [O] [RFC] Draft mode

2015-10-07 Thread Nicolas Goaziou
Hello,

Rasmus  writes:

> Can this just be a variable set by BIND or publish?

It could. If we keep throwing errors on unknown macros, I think we can
even have an OPTIONS item.

> The interest of such functionality seems to be limited to people who
> maintain broken-but-soon-to-be-fixed documents... It does not seem to
> warrant prime real estate in the exporter IMO. Further, I don't think
> 'draft' is the correct word for this, but that's of course minor.

I couldn't find anything better. Suggestions welcome.

Thank you for the feedback.


Regards,

-- 
Nicolas Goaziou



Re: [O] [RFC] Draft mode

2015-10-07 Thread Nicolas Goaziou
Hello,

Aaron Ecay  writes:

> This is a very good point.  OTOH, if backwards compatibility is going to
> be broken, wouldn’t it be better to move to a keyword argument system?

I'd like to avoid defun* as much as possible, because it may be harder
to read. This is also the reason why it wasn't included in core Elisp.

> On a different note, does this scheme make it possible for a backend
> to see whether draft mode is enabled?

It is possible with

  (memq 'draft (plist-get info :export-options))

However, Rasmus suggested to give up the export option and use a global
variable, instead.

> Latex provides a document-level draft option, which enables certain
> optimizations that speed up compile times (for example, graphics are
> not read in, but are replaced with a placeholder). It would be nice if
> ox-latex could emit this in the latex code when draft mode is enabled
> from the org side.

It was also suggested that "draft" wasn't the most accurate description
for this option. So, ultimately, it might not be related to LaTeX option
"draft".

Thank you for the feedback.


Regards,

-- 
Nicolas Goaziou



Re: [O] Per command org-agenda-prefix-format

2015-10-07 Thread Suvayu Ali
On Wed, Oct 07, 2015 at 02:52:24PM -0400, Nick Dokos wrote:
> Suvayu Ali  writes:
> 
> > Hi,
> >
> > I wanted to prefix the results of a tags-todo agenda command with
> > scheduling information.  But I can't seem to figure out the correct way
> > to do this.  This is what I tried:
> >
> > (setq org-agenda-custom-commands
> >   '(("J" "Type1/Type2"
> >  ((tags-todo "CATEGORY=\"foo\"+type1"
> >  ((org-agenda-overriding-header "Type1")))
> >   (tags-todo "CATEGORY=\"foo\"+type2"
> >  ((org-agenda-overriding-header "Type2"
> >  ((org-agenda-files (list "~/tmp/org/tasks.org"))
> >   (org-agenda-prefix-format "  % s")
> 
> org-agenda-prefix-format is an alist, not a string.

Forgot to mention in my earlier post, I tried that too!  Something like
this:

  (org-agenda-prefix-format '(tags "  % s"))

Same result.

-- 
Suvayu

Open source is the future. It sets us free.



Re: [O] [PATCH] Reverse capture finalize and refile, hack buffer killing.

2015-10-07 Thread Nicolas Goaziou
Jan Seeger  writes:

> That might be because I copy-pasted the patch into an email. Sorry for the 
> delay!
>
> I attached the patch.

Thank you. However, you forgot the commit message. Could you send it
again using git format-patch?


Regards,



Re: [O] Multiple capture templates in file

2015-10-07 Thread tenspd137 .
So - I figured it out.  I wanted to create a list that ultimatley had the form:

'(template template sub-menu-label sub-menu-template)

In the scratch buffer, I found I was creating

((("p" "product") ("pt" "Product - Todo" entry (file+headline ...
"Tasks") "* TODO %?")) ("t" "Todo" entry (file+headline (concat
org-directory "/default.org") "Tasks") "* TODO %?") ("j" "Journal"
entry (file+datetree (concat org-directory "/journal.org")) "* %?
Entered on %U
"))

and the same with

(add-to-list 'org-capture-templates '(("p" "product") ("pt" "Product -
Todo" entry (file+headline
(concat org-directory "/product.org") "Tasks") "* TODO %?"))

what I really wanted to do was add each element seperatley:

(add-to-list 'org-capture-templates '("p" "Product") 1)
(add-to-list 'org-capture-templates '("pt" "Product Todo" entry
(file+headline (concat org-directory "/product.org") "Tasks")
 "* TODO %?") 1 )
with the ones to append to the end of the list instead of beginning.

and then I thought there must be a better way - and there was - I came up with:

(setq org-capture-templates (append org-capture-templates '(("p"
"product") ("pt" "Product - Todo" entry (file+headline

(concat org-directory "/product.org") "Tasks") "* TODO %?")) ))


and stuck it in a test.el file.  I loaded it at the end of my org-mode
configuration in .emacs and I go the submenus I wanted.  I think I
figured it out and have the recipie for what I want to do.

This is probably basic stuff for everyone here, but I hope putting it
in email may make it searchable for someone later.  Thanks for all the
help, suggestions and ideas!

-C


On Tue, Oct 6, 2015 at 6:45 PM, tenspd137 .  wrote:
> One thought  I need to try either pushing one item at a time or
> concatenation the list of options.   I'll try it when I get a chance.
> Playtime is over for now. Thanks for all help and suggestions so far.
>
> C
>
> On Oct 6, 2015 5:43 PM, "tenspd137 ."  wrote:
>>
>> I can do the following in .emacs
>>
>> (setq org-capture-templates
>>   '(("t" "Todo" entry (file+headline (concat org-directory
>> "/default.org") "Tasks")
>>  "* TODO %?")
>> ("j" "Journal" entry (file+datetree (concat org-directory
>> "/journal.org"))
>>  "* %?\nEntered on %U\n")
>> ;;product or work specific stuff - I would like to move these
>> to files and have
>> ;;them loaded - maybe in the future
>> ("p" "product")
>> ("pt" "Product Todo" entry (file+headline (concat org-directory
>> "/product.org") "Tasks") "* TODO %?")))
>>
>> and it works as expected
>>
>> but if I do this in .emacs:
>> (setq org-capture-templates
>>   '(("t" "Todo" entry (file+headline (concat org-directory
>> "/default.org") "Tasks")
>>  "* TODO %?")
>> ("j" "Journal" entry (file+datetree (concat org-directory
>> "/journal.org"))
>>  "* %?\nEntered on %U\n")))
>> ;;product or work specific stuff - I would like to move these
>> to files and have
>> ;;them loaded - maybe in the future
>>
>> (load-file (concat org-directory
>> "/capture-templates/product-templates.el"))
>>
>> with product-templates containing:
>>
>> (push '(("p" "product") ("pt" "Product - Todo" entry (file+headline
>> (concat org-directory "/product.org") "Tasks") "* TODO %?"))
>> org-capture-templates)
>>
>> and then I use C-c n to go to capture mode, it just hangs with the
>> mouse cursor in a spinning wheel.  Am I not translating the part to go
>> into submenus correctly, or can you not add sub-menus as I am doing.
>>
>> Thanks!
>>
>> -C
>>
>> On Tue, Oct 6, 2015 at 2:38 PM, Marco Wahl 
>> wrote:
>> > Hi!
>> >
>> > "tenspd137 ."  writes:
>> >
>> >> I am trying to figure out how to store multiple capture templates in a
>> >> file, have several files of related templates, and then load all the
>> >> files stored in a directory.  For example, lets say I have two
>> >> projects at work WorkProject1 and WorkProject2.  Then I have two files
>> >> in a directory org-templates called WorkProj1Templates.el and
>> >> WorkTemplates2.el.  How can I append the templates in these files to
>> >> or capture templates?  In my main .emacs, I have:
>> >>
>> >> (setq org-capture-templates
>> >>   '(("t" "Todo" entry (file+headline (concat org-directory
>> >> "/default.org") "Tasks")
>> >>  "* TODO %?")
>> >> ("j" "Journal" entry (file+datetree (concat org-directory
>> >> "/journal.org"))
>> >>  "* %?\nEntered on %U\n")))
>> >>
>> >> I would like to then load the template files in org-templates.  That
>> >> way, when a project ends, I can just yank the templates.  I have
>> >> experimentally tried using add-to-list with org-capture-templates
>> >> without success.  Either that can't be done or my syntax was wrong?
>> >
>> > How could anyone tell if you don't show your attempt?
>> >
>> >> Does anyone have any ideas?
>> >
>> > What about this?
>> >
>> 

[O] Inserting to agenda

2015-10-07 Thread Martin Kaffanke
Hi there,

I do:

C-c a a RET
k a
Insert my entry later with C-c C-c or C-c C-w [refiling options]

but then the agenda is not updated.

I can update it by pressing 'r'.  But this reloads everything.  After
the capture the agenda could know the one entry I just created and just
insert that entry to the agenda.  That would be the suggested behaviour
of users I think.  Can we do that?

Thanks,
Martin




[O] org google calender different files

2015-10-07 Thread Martin Kaffanke
Hi there,

I store all my appointments in different files I work as psychologist
and have one file per familiy I work with.  So there are all
appointments where I make the documentation later too.

Normally I collect the appointments in an "Inbox" in my gtd.org file
where later I refile them to the clients.

Now I would like to use my phones calender (having android 5.0.2) to
collect the appointments for later use in my org files.  Is that
possible to have a two way sync for that with the different file
structure.  As far as I see the org-gcal is for one file for one google
calender, but I have one google calender and the appointments splittet
in several fiels.

Has anyone done that till now or do i have to go new way?

Thanks,
Martin




[O] Latex strikethrough or cancel?

2015-10-07 Thread Lawrence Bottorff
I've got a fraction done this way in an org file:

\[
 \frac{1}{(2^3)(5)}
 \]

and I'd like to strike though or cancel the (5) part. The Latex method I've
found says do it this way:

...
\usepackage[makeroom]{cancel}
...

\[
 \frac{1}{(2^3)\cancel{(5)}}
 \]

But it's ignored and comes back verbatim. Of course +(5)+ doesn't work
either, again, coming back verbatim with the pluses. How can I do this?

LB


Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-07 Thread Guido Van Hoecke
On 7 October 2015 at 13:56, Eric S Fraga  wrote:

> On Wednesday,  7 Oct 2015 at 13:46, Guido Van Hoecke wrote:
> > Eric,
> >
> > Am I correct to assume that you're speaking about MobileOrg on an Android
> > phone?
>
> yes, sorry, I should have been more clear.

​​
​​


> Android version of
> ​ ​
> MobileOrg.


​No prob, thanks for the answer,

Guido​


Re: [O] org google calender different files

2015-10-07 Thread Eric S Fraga
On Wednesday,  7 Oct 2015 at 10:56, Martin Kaffanke wrote:
> Hi there,
>
> I store all my appointments in different files I work as psychologist
> and have one file per familiy I work with.  So there are all
> appointments where I make the documentation later too.
>
> Normally I collect the appointments in an "Inbox" in my gtd.org file
> where later I refile them to the clients.
>
> Now I would like to use my phones calender (having android 5.0.2) to
> collect the appointments for later use in my org files.  

I am not entirely sure what you mean by this last sentence.

Full two synchronisation with multiple google calendars and multiple org
files is not possible currently (AFAIK).  However, if you explore your
use case in more detail, do you need full two-way synchronisation?  It
is quite straightforward to create multiple .ics files, e.g. one per org
file, which can then be loaded by Google's calendar so that you can have
multiple calendars shown in Google.  What you cannot do is edit those
events (or add new events) in those calendars via Google.

If org is your main route for working with the information, as opposed
to just displaying that information in a calendar view, then maybe a
one-way synchronisation may be sufficient and then exporting each org
file to ICS separately would be sufficient for your needs.

Just a different perspective.
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.2-161-gd2ac25



Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-07 Thread Guido Van Hoecke
Eric,

Am I correct to assume that you're speaking about MobileOrg on an Android
phone?

I can't see how my iPhone's MobileOrg would allow me to sync with Google,
or am I completely missing out on such an important functionality?

Guido

On 5 October 2015 at 17:09, Eric S Fraga  wrote:

> On Monday,  5 Oct 2015 at 09:46, Xebar Saram wrote:
> > Hi all
> >
> > i was wondering if anyone was syncing orgmode calendar with google cal,
> and
> > if so how? i tried this
>
> I sync org with Google's calendar using MobileOrg on my phone as the
> intermediary.  Generally works quite well.  I would be using MobileOrg
> regardless so calendar synchronisation is a very nice bonus.
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 24.5.1, Org release_8.3.1-203-g4ca3d3
>
>


Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-07 Thread Eric S Fraga
On Wednesday,  7 Oct 2015 at 13:46, Guido Van Hoecke wrote:
> Eric,
>
> Am I correct to assume that you're speaking about MobileOrg on an Android
> phone?

yes, sorry, I should have been more clear.  Android version of
MobileOrg.  I know nothing about the iOS version.
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.2-161-gd2ac25



Re: [O] Exporter aborts upon encountering even one unresolvable link

2015-10-07 Thread Rainer M Krug
"D. C. Toedt"  writes:

> To the org-mode maintainers (all praise and thanks to them, incidentally):
>  Is there any chance that this can be made into a per-file configuration
> #+OPTION?  No doubt the publishing approach suggested by Rainer (thanks
> also to him for suggesting it) would work, but it would take some effort to
> get it set up; I've looked into publishing on previous occasions and
> concluded it was easier just to do a simple HTML export.

Partly true.

If you add

#+begin_src emacs-lisp 
(setq org-publish-project-alist
  '(
("local"
 :base-directory "./"
 :base-extension "org"
 :publishing-directory "./pubHTML/"
 :recursive t
 :publishing-function org-html-publish-to-html
 :headline-levels 6
 :auto-preamble t)
))
#+end_src

to your emacs.el file you will have the publishing into a subdirectory
called "./pubHTML/" in the current directory.

Cheers,

Rainer

> Other things
> being equal, #+OPTION options would be easier for non-expert users such as
> me to work with, than fiddling with the .emacs file.
>
> D. C. Toedt III
> *(My last name is pronounced "Tate")*
> Attorney & arbitrator -- tech contracts & IP
> Common Draft  contracts project
> O: +1 (713) 364-6545
> C: +1 (713) 516-8968
> ​​
>
> d...@toedt.com
> www.OnContracts.com/About
>
> Unless expressly stated otherwise,
> this message is not intended to serve
> as assent to an agreement or other document,
> even if attached to this message.
>
>
> On Fri, Sep 25, 2015 at 12:04 AM, Rainer M Krug  wrote:
>
> [portions omitted]​​
>
>
>
>> ​​
>> Look at publishing instead of exporting to html which works with
>> ​​
>> missing links.
>> ​​
>>
>> ​​
>> I have the following in my emacs.org which makes it possible to publish
>> all org files to html in the folder ./pubHTML/ which is equivalent to
>> exporting.
>>
>> #+begin_src emacs-lisp
>> (setq org-publish-project-alist
>>   '(
>> ("local"
>>  :base-directory "./"
>>  :base-extension "org"
>>  :publishing-directory "./pubHTML/"
>>  :recursive t
>>  :publishing-function org-html-publish-to-html
>>  :headline-levels 6
>>  :auto-preamble t)
>> ))
>> #+end_src
>>
>>
>>

-- 
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, 
UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa

Tel :   +33 - (0)9 53 10 27 44
Cell:   +33 - (0)6 85 62 59 98
Fax :   +33 - (0)9 58 10 27 44

Fax (D):+49 - (0)3 21 21 25 22 44

email:  rai...@krugs.de

Skype:  RMkrug

PGP: 0x0F52F982


signature.asc
Description: PGP signature


Re: [O] Exporter aborts upon encountering even one unresolvable link

2015-10-07 Thread D. C. Toedt
To the org-mode maintainers (all praise and thanks to them, incidentally):
 Is there any chance that this can be made into a per-file configuration
#+OPTION?  No doubt the publishing approach suggested by Rainer (thanks
also to him for suggesting it) would work, but it would take some effort to
get it set up; I've looked into publishing on previous occasions and
concluded it was easier just to do a simple HTML export.  Other things
being equal, #+OPTION options would be easier for non-expert users such as
me to work with, than fiddling with the .emacs file.

D. C. Toedt III
*(My last name is pronounced "Tate")*
Attorney & arbitrator -- tech contracts & IP
Common Draft  contracts project
O: +1 (713) 364-6545
C: +1 (713) 516-8968
​​

d...@toedt.com
www.OnContracts.com/About

Unless expressly stated otherwise,
this message is not intended to serve
as assent to an agreement or other document,
even if attached to this message.


On Fri, Sep 25, 2015 at 12:04 AM, Rainer M Krug  wrote:

[portions omitted]​​



> ​​
> Look at publishing instead of exporting to html which works with
> ​​
> missing links.
> ​​
>
> ​​
> I have the following in my emacs.org which makes it possible to publish
> all org files to html in the folder ./pubHTML/ which is equivalent to
> exporting.
>
> #+begin_src emacs-lisp
> (setq org-publish-project-alist
>   '(
> ("local"
>  :base-directory "./"
>  :base-extension "org"
>  :publishing-directory "./pubHTML/"
>  :recursive t
>  :publishing-function org-html-publish-to-html
>  :headline-levels 6
>  :auto-preamble t)
> ))
> #+end_src
>
>
>


[O] Suggestion about org-babel: executing source block asynchronously

2015-10-07 Thread kuangdash
Sometime I will run source block (such as python) which take a long time before 
I  get the final result.
Then I thought about whether or not the source block can be executed 
asynchronously, and the answer is ‘YES’.
But it seems to be difficult for me to hack the code, so I just talk about the 
process of it:

1)  When execute source block, cover it up with the “executing” overlay.
2)  When get the final result, get the “executing” overlay position.
3)  Add the result below the “executing” overlay position, and then remove 
the overly.

It can be done!  How about it? 

Regards



[O] Per command org-agenda-prefix-format

2015-10-07 Thread Suvayu Ali
Hi,

I wanted to prefix the results of a tags-todo agenda command with
scheduling information.  But I can't seem to figure out the correct way
to do this.  This is what I tried:

(setq org-agenda-custom-commands
  '(("J" "Type1/Type2"
 ((tags-todo "CATEGORY=\"foo\"+type1"
 ((org-agenda-overriding-header "Type1")))
  (tags-todo "CATEGORY=\"foo\"+type2"
 ((org-agenda-overriding-header "Type2"
 ((org-agenda-files (list "~/tmp/org/tasks.org"))
  (org-agenda-prefix-format "  % s")
  (org-agenda-compact-blocks t)

With the attached Org file, the agenda buffer looks like this:

Type1
  foo:TODO Item 1   :type1::
  foo:TODO Item 3   :type1::
Type2
  foo:TODO Item 8   :type2::

Anyone any thoughts?  Actually I have wanted a view like "Timeline" for
many years for my agenda searches.  Is that possible?  That would be
even better.

Cheers,

-- 
Suvayu

Open source is the future. It sets us free.



Re: [O] Per command org-agenda-prefix-format

2015-10-07 Thread Suvayu Ali
On Wed, Oct 07, 2015 at 05:24:50PM +0200, Suvayu Ali wrote:
> 
> With the attached Org file, the agenda buffer looks like this:

Forgot to attach the file :-p.

-- 
Suvayu

Open source is the future. It sets us free.
#+OPTIONS: toc:nil
#+STARTUP: content


* Foo
  :PROPERTIES:
  :CATEGORY: foo
  :END:
** Type 1 [0/2]   :type1:
*** TODO Item 1
DEADLINE: <2016-01-31 Sun>
*** TODO Item 3
DEADLINE: <2015-10-31 Sat>

** Type 2 [2/3]   :type2:
*** DONE Item 4
CLOSED: [2015-09-22 Tue 15:36] SCHEDULED: <2015-09-14 Mon>
*** DONE Item 6
CLOSED: [2015-10-02 Fri 13:36] SCHEDULED: <2015-09-07 Mon>
*** TODO Item 8
SCHEDULED: <2015-09-02 Wed>


Re: [O] Per command org-agenda-prefix-format

2015-10-07 Thread Nick Dokos
Suvayu Ali  writes:

> Hi,
>
> I wanted to prefix the results of a tags-todo agenda command with
> scheduling information.  But I can't seem to figure out the correct way
> to do this.  This is what I tried:
>
> (setq org-agenda-custom-commands
>   '(("J" "Type1/Type2"
>  ((tags-todo "CATEGORY=\"foo\"+type1"
>((org-agenda-overriding-header "Type1")))
>   (tags-todo "CATEGORY=\"foo\"+type2"
>((org-agenda-overriding-header "Type2"
>  ((org-agenda-files (list "~/tmp/org/tasks.org"))
>   (org-agenda-prefix-format "  % s")

org-agenda-prefix-format is an alist, not a string.

Nick




Re: [O] org google calender different files

2015-10-07 Thread Eric S Fraga
On Wednesday,  7 Oct 2015 at 20:25, Martin Kaffanke wrote:
> Eric S Fraga writes:
>
>> If org is your main route for working with the information, as opposed
>> to just displaying that information in a calendar view, then maybe a
>> one-way synchronisation may be sufficient and then exporting each org
>> file to ICS separately would be sufficient for your needs.
>
> ok, that brings me to a new idea how it could work.  if the ics files
> hold the data from the families, and can be shown in the google calendar
> its fine.
>
> so now I would have to have one org file in two way sync somehow.  its
> where I store new appointments directly on my phone, after a sync to
> org, i can refile them to other files - the sync then is for deleting it
> so i don't have it redundant as two appointments on my phone.
>
> do you think that works?

Yes, this could work.

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.2-161-gd2ac25



Re: [O] org google calender different files

2015-10-07 Thread Martin Kaffanke

Eric S Fraga writes:

> If org is your main route for working with the information, as opposed
> to just displaying that information in a calendar view, then maybe a
> one-way synchronisation may be sufficient and then exporting each org
> file to ICS separately would be sufficient for your needs.

ok, that brings me to a new idea how it could work.  if the ics files
hold the data from the families, and can be shown in the google calendar
its fine.

so now I would have to have one org file in two way sync somehow.  its
where I store new appointments directly on my phone, after a sync to
org, i can refile them to other files - the sync then is for deleting it
so i don't have it redundant as two appointments on my phone.

do you think that works?

thanks,
Martin