[O] saving web resources with org

2018-10-12 Thread M. P.
How can I save a web page or a utube clip with org in some form of organized 
manner?


[O] Emacs mobile org

2018-09-09 Thread M. P.
Hello I am running emacs on a mac I have a galaxy s8 android phone. I am 
wanting to sync my phone with emacs on my computer.
I would prefer not to use a cloud service but instead use something 
like a usb or ther to sync with.


[O] Uninstall bbdb

2018-01-11 Thread M. P.
How do I uninstall bbdb?



[O] Org agenda

2018-01-06 Thread M. P.
I create a TODO and save the file but I can’t see the todo when I select todo 
view in agenda? What am I doing wrong?


[O] Org Usenet

2018-01-03 Thread M. P.
Is their an org mode usenet group?



[O] TODO in org-mode

2017-12-30 Thread M. P.
I know this is basic but I am having difficulty getting TODO states to work. In 
ORG I select new heading than TODO from the menu but I don’t understand how to 
save this  so that it works with things like agenda view?


[O] Donating money to mobile org.

2017-07-02 Thread M. P.
Hello If I want to donate specifically to mobile org what would I do?



Re: [O] [PATCH] (fixed) ox-confluence.el: Do not generate filled paragraphs

2016-03-03 Thread M. P. Ashton
Hello --

On Thu, Mar 3, 2016, at 07:42 PM, Nicolas Goaziou wrote:
> Hello,
> 
> "M. P. Ashton" <d...@gtf.org> writes:
> 
> > * contrib/lisp/ox-confluence.el: Do not generate filled paragraphs
> >
> > ox-confluence was generating filled paragraphs.  Since Confluence treats
> > each newline as a line break, this caused unexpected formatting.  Added
> > a paragraph function to generate unfilled paragraphs (taken from
> > ox-md.el).
> > ---
> >  contrib/lisp/ox-confluence.el | 7 +++
> >  1 file changed, 7 insertions(+)
> >
> > diff --git a/contrib/lisp/ox-confluence.el
> > b/contrib/lisp/ox-confluence.el
> > index 9b96d5f..4304e5d 100644
> > --- a/contrib/lisp/ox-confluence.el
> > +++ b/contrib/lisp/ox-confluence.el
> > @@ -47,6 +47,7 @@
> >  (italic . org-confluence-italic)
> >   (item . org-confluence-item)
> >  (link . org-confluence-link)
> > + (paragraph . org-confluence-paragraph)
> >  (property-drawer . org-confluence-property-drawer)
> >  (section . org-confluence-section)
> >  (src-block . org-confluence-src-block)
> > @@ -58,6 +59,12 @@
> >  (underline . org-confluence-underline)))
> >
> >  ;; All the functions we use
> > +(defun org-confluence-paragraph (paragraph contents info)
> > +  "Transcode PARAGRAPH element for Confluence.
> > +CONTENTS is the paragraph contents.  INFO is a plist used as
> > +a communication channel."
> > +  contents)
> 
> This function doesn't unfill the paragraph. It merely returns it as it
> was in the original Org document. You possibly want to call
> `replace-regexp-in-string' and replace "\n" with " " in CONTENTS.

That's true, but it isn't meant to unfill the paragraph: it is meant to
stop the ASCII exporter from filling the paragraph. That is what was
causing the problem.

I could make it unfill paragraphs, but I thought it might be useful to
preserve line breaks.

> I'm Cc'ing the author since this is a contrib/ package.

Thanks for looking this over. Let me know what would be an acceptable
change if any.

Best regards --Michael Ashton



[O] [PATCH] (fixed) ox-confluence.el: Do not generate filled paragraphs

2016-03-03 Thread M. P. Ashton
* contrib/lisp/ox-confluence.el: Do not generate filled paragraphs

ox-confluence was generating filled paragraphs.  Since Confluence treats
each newline as a line break, this caused unexpected formatting.  Added
a paragraph function to generate unfilled paragraphs (taken from
ox-md.el).
---
 contrib/lisp/ox-confluence.el | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/contrib/lisp/ox-confluence.el
b/contrib/lisp/ox-confluence.el
index 9b96d5f..4304e5d 100644
--- a/contrib/lisp/ox-confluence.el
+++ b/contrib/lisp/ox-confluence.el
@@ -47,6 +47,7 @@
 (italic . org-confluence-italic)
  (item . org-confluence-item)
 (link . org-confluence-link)
+ (paragraph . org-confluence-paragraph)
 (property-drawer . org-confluence-property-drawer)
 (section . org-confluence-section)
 (src-block . org-confluence-src-block)
@@ -58,6 +59,12 @@
 (underline . org-confluence-underline)))

 ;; All the functions we use
+(defun org-confluence-paragraph (paragraph contents info)
+  "Transcode PARAGRAPH element for Confluence.
+CONTENTS is the paragraph contents.  INFO is a plist used as
+a communication channel."
+  contents)
+
 (defun org-confluence-bold (bold contents info)
   (format "*%s*" contents))

--
(previous patch was cut off)



[O] [PATCH] ox-confluence.el: Do not generate filled paragraphs

2016-03-03 Thread M. P. Ashton
* contrib/lisp/ox-confluence.el: Do not generate filled paragraphs

ox-confluence was generating filled paragraphs.  Since Confluence treats
each newline as a line break, this caused unexpected formatting.  Added
a paragraph function to generate unfilled paragraphs (taken from
ox-md.el).
---
 contrib/lisp/ox-confluence.el | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/contrib/lisp/ox-confluence.el
b/contrib/lisp/ox-confluence.el
index 9b96d5f..4304e5d 100644
--- a/contrib/lisp/ox-confluence.el
+++ b/contrib/lisp/ox-confluence.el
@@ -47,6 +47,7 @@
 (italic . org-confluence-italic)
  (item . org-confluence-item)
 (link . org-confluence-link)
+ (paragraph . org-confluence-paragraph)
 (property-drawer . org-confluence-property-drawer)



[O] compute the difference between effort estimates and actual clocked time

2011-07-31 Thread M . P .
I'd like to add to my tasks a property  whose value should be the difference in
time between the effort estimates and the actual clocked time. The final purpose
is to use the property in column view mode as I do with CLOCKSUM and Effort.
Could you give me any hints?