emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* MobileOrg staging not working correctly
@ 2011-11-29 17:07 Cameron Seader
  2011-11-29 17:50 ` Cameron Seader
  0 siblings, 1 reply; 3+ messages in thread
From: Cameron Seader @ 2011-11-29 17:07 UTC (permalink / raw)
  To: emacs-orgmode

I am using the latest version of orgmode and its still not working.

Here are my *messages* from the buffer

Creating agendas...done
Saving all Org-mode buffers...
(No files need saving)
Saving all Org-mode buffers... done
Copying files...
(New file)
OVERVIEW
Saving file /home/xxxxxx/Dropbox/MobileOrg/mobileorg.org...
Wrote /home/xxxxxx/Dropbox/MobileOrg/mobileorg.org
Writing index file...
Writing checksums...
Files for mobile viewer staged

It says that it created the agendas...

Here is my index.org

:~/Dropbox/MobileOrg> cat index.org
#+READONLY
#+TODO: TODO DONE
#+TODO:  | DONE
#+TAGS:
#+DRAWERS: PROPERTIES CLOCK LOGBOOK
#+ALLPRIORITIES: A B C
* [[file:agendas.org][Agenda Views]]
...removing the rest for privacy...

It created a link to the agendas.org file...

Why didn't the agendas.org file get created? Do i have to create it
myself?  Do I have to export my agenda view myself? How do I get this to
work?
TIA,
-- 
Cameron

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: MobileOrg staging not working correctly
  2011-11-29 17:07 MobileOrg staging not working correctly Cameron Seader
@ 2011-11-29 17:50 ` Cameron Seader
  2011-11-29 17:57   ` Cameron Seader
  0 siblings, 1 reply; 3+ messages in thread
From: Cameron Seader @ 2011-11-29 17:50 UTC (permalink / raw)
  To: emacs-orgmode

I think this has something to do with my .emacs settings.

;;; Org-mode settings
(require 'org-install)
(require 'org-mobile)
(require 'package)
(package-initialize)
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
(global-font-lock-mode 1)
(setq org-directory "~/Documents/Notes/org")
(setq org-agenda-files (file-expand-wildcards
"~/Documents/Notes/org/*.org"))

;;; MobileOrg Settings
(setq org-mobile-files (file-expand-wildcards
"~/Documents/Notes/org/*.org"))
(setq org-mobile-directory "~/Dropbox/MobileOrg")
(setq org-mobile-inbox-for-pull "~/Documents/Notes/org/inbox.org")

Would having a wildcard for org-agenda-files mess up the creation of the
agendas.org file when I execute C-c C-x RET p

Please someone let me know.
Thanks,
Cameron

On 11/29/2011 10:07 AM, Cameron Seader wrote:
> I am using the latest version of orgmode and its still not working.
> 
> Here are my *messages* from the buffer
> 
> Creating agendas...done
> Saving all Org-mode buffers...
> (No files need saving)
> Saving all Org-mode buffers... done
> Copying files...
> (New file)
> OVERVIEW
> Saving file /home/xxxxxx/Dropbox/MobileOrg/mobileorg.org...
> Wrote /home/xxxxxx/Dropbox/MobileOrg/mobileorg.org
> Writing index file...
> Writing checksums...
> Files for mobile viewer staged
> 
> It says that it created the agendas...
> 
> Here is my index.org
> 
> :~/Dropbox/MobileOrg> cat index.org
> #+READONLY
> #+TODO: TODO DONE
> #+TODO:  | DONE
> #+TAGS:
> #+DRAWERS: PROPERTIES CLOCK LOGBOOK
> #+ALLPRIORITIES: A B C
> * [[file:agendas.org][Agenda Views]]
> ...removing the rest for privacy...
> 
> It created a link to the agendas.org file...
> 
> Why didn't the agendas.org file get created? Do i have to create it
> myself?  Do I have to export my agenda view myself? How do I get this to
> work?
> TIA,

-- 
Cameron Seader
SUSE Sales Engineer

Phone: 208-572-0095
cs@suse.com
SUSE http://www.suse.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: MobileOrg staging not working correctly
  2011-11-29 17:50 ` Cameron Seader
@ 2011-11-29 17:57   ` Cameron Seader
  0 siblings, 0 replies; 3+ messages in thread
From: Cameron Seader @ 2011-11-29 17:57 UTC (permalink / raw)
  To: emacs-orgmode

Well for a test I changed the org-agenda-files setting for emacs to the
following.

(setq org-agenda-files "~/Documents/Notes/org/xxxx.org")

So its set to a single file, but... it still does not work.

*messages*
OVERVIEW
Creating agendas...done
Saving all Org-mode buffers...
(No files need saving)
Saving all Org-mode buffers... done
Copying files...
OVERVIEW
(No changes need to be saved)
Writing index file...
OVERVIEW [12 times]
Writing checksums...
Files for mobile viewer staged

says it created the agendas, but it didn't

I am stumped...

On 11/29/2011 10:50 AM, Cameron Seader wrote:
> I think this has something to do with my .emacs settings.
> 
> ;;; Org-mode settings
> (require 'org-install)
> (require 'org-mobile)
> (require 'package)
> (package-initialize)
> (add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
> (global-set-key "\C-cl" 'org-store-link)
> (global-set-key "\C-ca" 'org-agenda)
> (global-set-key "\C-cb" 'org-iswitchb)
> (global-font-lock-mode 1)
> (setq org-directory "~/Documents/Notes/org")
> (setq org-agenda-files (file-expand-wildcards
> "~/Documents/Notes/org/*.org"))
> 
> ;;; MobileOrg Settings
> (setq org-mobile-files (file-expand-wildcards
> "~/Documents/Notes/org/*.org"))
> (setq org-mobile-directory "~/Dropbox/MobileOrg")
> (setq org-mobile-inbox-for-pull "~/Documents/Notes/org/inbox.org")
> 
> Would having a wildcard for org-agenda-files mess up the creation of the
> agendas.org file when I execute C-c C-x RET p
> 
> Please someone let me know.
> Thanks,
> Cameron
> 
> On 11/29/2011 10:07 AM, Cameron Seader wrote:
>> I am using the latest version of orgmode and its still not working.
>>
>> Here are my *messages* from the buffer
>>
>> Creating agendas...done
>> Saving all Org-mode buffers...
>> (No files need saving)
>> Saving all Org-mode buffers... done
>> Copying files...
>> (New file)
>> OVERVIEW
>> Saving file /home/xxxxxx/Dropbox/MobileOrg/mobileorg.org...
>> Wrote /home/xxxxxx/Dropbox/MobileOrg/mobileorg.org
>> Writing index file...
>> Writing checksums...
>> Files for mobile viewer staged
>>
>> It says that it created the agendas...
>>
>> Here is my index.org
>>
>> :~/Dropbox/MobileOrg> cat index.org
>> #+READONLY
>> #+TODO: TODO DONE
>> #+TODO:  | DONE
>> #+TAGS:
>> #+DRAWERS: PROPERTIES CLOCK LOGBOOK
>> #+ALLPRIORITIES: A B C
>> * [[file:agendas.org][Agenda Views]]
>> ...removing the rest for privacy...
>>
>> It created a link to the agendas.org file...
>>
>> Why didn't the agendas.org file get created? Do i have to create it
>> myself?  Do I have to export my agenda view myself? How do I get this to
>> work?
>> TIA,
> 

-- 
Cameron Seader
SUSE Sales Engineer

Phone: 208-572-0095
cs@suse.com
SUSE http://www.suse.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-11-29 17:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-29 17:07 MobileOrg staging not working correctly Cameron Seader
2011-11-29 17:50 ` Cameron Seader
2011-11-29 17:57   ` Cameron Seader

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).