Re: [O] org-mobile : checksum errors

2012-03-17 Thread aaron barclay
Hi Richard,

I am setting up mobile org for the first time and having the same problem.
Did you ever come up with a solution?

cheers,
aaron.



On 6 February 2012 02:56, Richard Riley rile...@gmail.com wrote:


 I reduced my mobile org file set to a single file general.org by
 adjusting org-mobile-files.

 I did an org-mobile-push but the mobile app falls over when I try to
 sync it saying error downloading checksums. I read on the org-mobile
 web page that one should manally run md5 (which was a surprise) and did
 this and still I get the same error (md5 *.org  checksums.dat) : the
 full text is an error was encountered while downloading checksums.dat
 from the server. The file isnt required but the error was unusual, The
 error was 'unexpected eror'. So not much to go on there.

 I even tried deleting the mobile app with ll its data and reinitialising
 drop box but still no joy.

 I would be intersted to hear from anyone using this suite that might
 have come across similar issues.





Re: [O] org-mobile : checksum errors

2012-03-17 Thread aaron barclay
Hi,

I found this that discusses the issue - although the solution did not work
for me. I am getting sync from emacs to dropbox, but not from dropbox to
ios.

Has any else had a similar issue, any ideas?

regards,
aaron.

https://github.com/richard/mobileorg/wiki/known-issues

On 17 March 2012 19:58, aaron barclay aaron.diplo...@gmail.com wrote:

 Hi Richard,

 I am setting up mobile org for the first time and having the same problem.
 Did you ever come up with a solution?

 cheers,
 aaron.



 On 6 February 2012 02:56, Richard Riley rile...@gmail.com wrote:


 I reduced my mobile org file set to a single file general.org by
 adjusting org-mobile-files.

 I did an org-mobile-push but the mobile app falls over when I try to
 sync it saying error downloading checksums. I read on the org-mobile
 web page that one should manally run md5 (which was a surprise) and did
 this and still I get the same error (md5 *.org  checksums.dat) : the
 full text is an error was encountered while downloading checksums.dat
 from the server. The file isnt required but the error was unusual, The
 error was 'unexpected eror'. So not much to go on there.

 I even tried deleting the mobile app with ll its data and reinitialising
 drop box but still no joy.

 I would be intersted to hear from anyone using this suite that might
 have come across similar issues.






Re: [O] Export without code blocks

2012-01-29 Thread aaron barclay
Thanks Martyn,

that was a big help.

aaron.



On 27 January 2012 14:04, Martyn Jago martyn.j...@btinternet.com wrote:

 Martyn Jago martyn.j...@btinternet.com writes:

  Hi Aaron
 
  aaron barclay aaron.diplo...@gmail.com writes:
 
  Hi,
 
  I am having trouble finding the correct way to export a document without
  the code blocks included. Should I be using #+EXPORT_EXCLUDE_TAGS? I
 can't
  seem to get it to work, anyone have the correct syntax?
 
  cheers,
  aaron.
 
  #+EXPORT_EXCLUDE_TAGS is for defining tags (such as NO_EXPORT) to
  prevent headings or sub-headings (branches) being exported. As in:
 
  ** don't export me  :NO_EXPORT:
  stuff
 
  Possibly what you need is :exports none  or :exports results :
 
  begin_src python :exports results
print result
  end_src

 Of course this won't work in python since it will 'print' result, but
 not return it. so you also need :results output which makes, the `result'
 that which is printed to STDOUT (standard out).

  What format are you exporting too?
 
  Best, Martyn





Re: [O] export-as-hmtl fail

2012-01-26 Thread aaron barclay
Hi Martyn,

thank you, this helped to track down the problem. Seems to be a conflict
with flymake so have disabled that for now.

aaron.



On 25 January 2012 00:02, Martyn Jago martyn.j...@btinternet.com wrote:

 Hi Aaron

 aaron barclay aaron.diplo...@gmail.com writes:

  Hello,
 
  When I use a python code block in a document any export-as-html results
 in
  the error Invalid file-name. Without a code block the export goes
 without
  a hitch. Other exports work no probs such as export-as-ascii. The code
  block within the document acts as expected, it is only the export that
  fails. I was on org7.5 but updated to 7.8.03 but have the same result.
 
  Also, it is only the python code blocks that fail, others work.
 
  My babel setup is
 
  (org-babel-do-load-languages
   'org-babel-load-languages
'( (dot . t)
   (sh . t)
   (python . t)
   (emacs-lisp . t)
 ))
 
  (setq org-babel-python-command python2.6)
 
  My code block is
 
  #+begin_src python :results output
  print hi
 
  #+end_src
 
  #+results:
  : hi
 
  Does anyone have any tips on what I might do to troubleshoot this. Could
 it
  be something else in my setup or system? Any else ever experienced this?
 
  cheers,
  aaron.

 I can't replicate this error (see my versions below). Even breaking
 `org-babel-python-command' does not break your code for me in the way
 you describe.

 For diagnostic purposes, you may run the command:
  - `M-x toggle-debug-on-error'
 ...prior to exporting as html. This should give you a useful backtrace.

 Note also that if you are wishing to export the python results as
 opposed to the python code, you will also need :exports results since
 the default is `:exports code' .

 HTH

 Best, Martyn

 ---
 Org-mode version 7.8.03 (release_7.8.03.192.ga38b.dirty)
 GNU Emacs 24.0.92.1 (x86_64-apple-darwin, NS apple-appkit-1038.36)
  of 2011-12-02 on bob.porkrind.org








[O] Export without code blocks

2012-01-26 Thread aaron barclay
Hi,

I am having trouble finding the correct way to export a document without
the code blocks included. Should I be using #+EXPORT_EXCLUDE_TAGS? I can't
seem to get it to work, anyone have the correct syntax?

cheers,
aaron.


[O] export-as-hmtl fail

2012-01-23 Thread aaron barclay
Hello,

When I use a python code block in a document any export-as-html results in
the error Invalid file-name. Without a code block the export goes without
a hitch. Other exports work no probs such as export-as-ascii. The code
block within the document acts as expected, it is only the export that
fails. I was on org7.5 but updated to 7.8.03 but have the same result.

Also, it is only the python code blocks that fail, others work.

My babel setup is

(org-babel-do-load-languages
 'org-babel-load-languages
  '( (dot . t)
 (sh . t)
 (python . t)
 (emacs-lisp . t)
   ))

(setq org-babel-python-command python2.6)

My code block is

#+begin_src python :results output
print hi

#+end_src

#+results:
: hi

Does anyone have any tips on what I might do to troubleshoot this. Could it
be something else in my setup or system? Any else ever experienced this?

cheers,
aaron.


Re: [O] underscores exported as sub/sub in html

2011-04-27 Thread aaron barclay
C-c C-c was the magic I was missing. Thanks all for the help.

aaron.



On 27 April 2011 14:32, Jambunathan K kjambunat...@gmail.com wrote:

 aaron barclay aaron.diplo...@gmail.com writes:

  interesting. I have this in but thought I must be misunderstanding the
  manual. If I have the line in as below, but it is not working as
  expected, any ideas what I should be looking to troubleshoot?
  #+OPTIONS: ^:nil

 Revisit the file so that the settings take effect. Alternatively you can
 do a C-c C-c on the OPTIONS line.

 C-h v org-export-with-sub-superscripts

 Jambunathan K.



 --



[O] underscores exported as sub/sub in html

2011-04-26 Thread aaron barclay
Hi,

I have a table like such

| 236a_bp_000602 | Missing   | No prep layer information found in the
checkin comments for
'236a_bp_000602_output_review_stereo'.  |
| 308_gt_001119  | Missing   | No prep layer information found in the
checkin comments for
'308_gt_001119_output_review_stereo'.   |
| 308_gt_001123  | Missing   | No prep layer information found in the
checkin comments for
'308_gt_001123_output_review_stereo'.   |
| 308_gt_001126  | Missing   | No prep layer information found in the
checkin comments for
'308_gt_001126_output_review_stereo'.   |

When I org-export-as-html the underscores in the first column are becoming
sub tags in html

trtd class=left236asubbp/subsub000602/sub/tdtd
class=leftMissing/tdtd class=leftNo prep layer information found in
the checkin comments for
'236asubbp/subsub000602/subsuboutput/subsubreview/subsubstereo'/sub./td/tr

Can't seem to find a way around this. Any suggestions appreciated..

aaron.


Re: [O] underscores exported as sub/sub in html

2011-04-26 Thread aaron barclay
Hello,

interesting. I have this in but thought I must be misunderstanding the
manual. If I have the line in as below, but it is not working as expected,
any ideas what I should be looking to troubleshoot?

#+LANGUAGE:  en
#+OPTIONS: ^:nil
#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:
http://orgmode.org/org-info.js
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport

aaron.



On 27 April 2011 13:12, Nick Dokos nicholas.do...@hp.com wrote:

 aaron barclay aaron.diplo...@gmail.com wrote:

  ...
  When I org-export-as-html the underscores in the first column are
 becoming sub tags in html
  ...
  Can't seem to find a way around this. Any suggestions appreciated..
 

 #+OPTIONS: ^:nil

 See sec. 12.2, Export options, of the Org manual.

 Nick