emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* C-c a t shows empty list
@ 2011-01-20 21:38 Микола Стрєбков
  2011-01-20 21:43 ` Erik Iverson
  0 siblings, 1 reply; 6+ messages in thread
From: Микола Стрєбков @ 2011-01-20 21:38 UTC (permalink / raw)
  To: emacs-orgmode

Hi orgsters,
 
I started to use org-mode together with MobileOrg and everything was fine. But two days ago I realized that I'm unable to build neither agenda nor todo lists from my org files. Problem occurred on both Emacs and my iPhone even on the simplest files like:

* test
** TODO test2
** TODO test3
* test4

I found similar issue in google cache (osdir.com gives 403) but it was resolved by just Emacs restarting. I'm not so happy.

Please help.

-- 
Mykola Stryebkov
Public key: http://mykola.org/pubkey.txt
fpr: 0226 54EE C1FF 8636 36EF  2AC9 BCE9 CFC7 9CF4 6747

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

* Re: C-c a t shows empty list
  2011-01-20 21:38 C-c a t shows empty list Микола Стрєбков
@ 2011-01-20 21:43 ` Erik Iverson
  2011-01-20 22:07   ` Микола Стрєбков
  0 siblings, 1 reply; 6+ messages in thread
From: Erik Iverson @ 2011-01-20 21:43 UTC (permalink / raw)
  To: Микола Стрєбков
  Cc: emacs-orgmode

Which version of Emacs / org-mode?

Микола Стрєбков wrote:
> Hi orgsters,
>  
> I started to use org-mode together with MobileOrg and everything was fine. But two days ago I realized that I'm unable to build neither agenda nor todo lists from my org files. Problem occurred on both Emacs and my iPhone even on the simplest files like:
> 
> * test
> ** TODO test2
> ** TODO test3
> * test4
> 
> I found similar issue in google cache (osdir.com gives 403) but it was resolved by just Emacs restarting. I'm not so happy.
> 
> Please help.
> 

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

* Re: C-c a t shows empty list
  2011-01-20 21:43 ` Erik Iverson
@ 2011-01-20 22:07   ` Микола Стрєбков
  2011-01-20 22:08     ` Erik Iverson
  2011-01-20 22:56     ` Matt Lundin
  0 siblings, 2 replies; 6+ messages in thread
From: Микола Стрєбков @ 2011-01-20 22:07 UTC (permalink / raw)
  To: Erik Iverson; +Cc: emacs-orgmode

Hi

On 20 січ. 2011, at 23:43, Erik Iverson wrote:

> Which version of Emacs / org-mode?

Hmm...
Emacs 23.2 OS X,
"M-x org-info" shows docs for 6.33 but I have installed version 7.4...

The latest org-mode installed in:
(setq load-path (cons "~/.emacs.d/org" load-path))

Here is org part of my .emacs:

;;;
;;; Org mode
;;;
(require 'org-install)
(transient-mark-mode 1)
(setq org-log-done 'time)
(setq org-directory "~/Org")
(setq org-footnote-auto-adjust t)
(setq org-mobile-files (quote ("~/Org/main.org")))
(setq org-mobile-directory "~/Dropbox/MobileOrg")
(setq org-mobile-inbox-for-pull "~/Org/inbox.org")
(setq org-todo-keywords
      '(
	(type "TODO" "|" "DONE")
	(sequence "PROJ" "|" "FINISHED")
	(sequence "PROG" "|" "CANCELLED" "DONE")
	)
      )
(setq org-default-notes-file (concat org-directory "/notes.org"))
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))


> 
> Микола Стрєбков wrote:
>> Hi orgsters,
>> I started to use org-mode together with MobileOrg and everything was fine. But two days ago I realized that I'm unable to build neither agenda nor todo lists from my org files. Problem occurred on both Emacs and my iPhone even on the simplest files like:
>> * test
>> ** TODO test2
>> ** TODO test3
>> * test4
>> I found similar issue in google cache (osdir.com gives 403) but it was resolved by just Emacs restarting. I'm not so happy.
>> Please help.

-- 
Mykola Stryebkov
Public key: http://mykola.org/pubkey.txt
fpr: 0226 54EE C1FF 8636 36EF  2AC9 BCE9 CFC7 9CF4 6747

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

* Re: C-c a t shows empty list
  2011-01-20 22:07   ` Микола Стрєбков
@ 2011-01-20 22:08     ` Erik Iverson
  2011-01-20 22:56     ` Matt Lundin
  1 sibling, 0 replies; 6+ messages in thread
From: Erik Iverson @ 2011-01-20 22:08 UTC (permalink / raw)
  To: Микола Стрєбков
  Cc: emacs-orgmode



Микола Стрєбков wrote:
> Hi
> 
> On 20 січ. 2011, at 23:43, Erik Iverson wrote:
> 
>> Which version of Emacs / org-mode?
> 
> Hmm...
> Emacs 23.2 OS X,
> "M-x org-info" shows docs for 6.33 but I have installed version 7.4...

Does M-x org-version report the correct version?

> 
> The latest org-mode installed in:
> (setq load-path (cons "~/.emacs.d/org" load-path))
> 
> Here is org part of my .emacs:
> 
> ;;;
> ;;; Org mode
> ;;;
> (require 'org-install)
> (transient-mark-mode 1)
> (setq org-log-done 'time)
> (setq org-directory "~/Org")
> (setq org-footnote-auto-adjust t)
> (setq org-mobile-files (quote ("~/Org/main.org")))
> (setq org-mobile-directory "~/Dropbox/MobileOrg")
> (setq org-mobile-inbox-for-pull "~/Org/inbox.org")
> (setq org-todo-keywords
>       '(
> 	(type "TODO" "|" "DONE")
> 	(sequence "PROJ" "|" "FINISHED")
> 	(sequence "PROG" "|" "CANCELLED" "DONE")
> 	)
>       )
> (setq org-default-notes-file (concat org-directory "/notes.org"))
> (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
> 
> 
>> Микола Стрєбков wrote:
>>> Hi orgsters,
>>> I started to use org-mode together with MobileOrg and everything was fine. But two days ago I realized that I'm unable to build neither agenda nor todo lists from my org files. Problem occurred on both Emacs and my iPhone even on the simplest files like:
>>> * test
>>> ** TODO test2
>>> ** TODO test3
>>> * test4
>>> I found similar issue in google cache (osdir.com gives 403) but it was resolved by just Emacs restarting. I'm not so happy.
>>> Please help.
> 

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

* Re: C-c a t shows empty list
  2011-01-20 22:07   ` Микола Стрєбков
  2011-01-20 22:08     ` Erik Iverson
@ 2011-01-20 22:56     ` Matt Lundin
  2011-01-20 23:33       ` Микола Стрєбков
  1 sibling, 1 reply; 6+ messages in thread
From: Matt Lundin @ 2011-01-20 22:56 UTC (permalink / raw)
  To: Микола Стрєбков
  Cc: emacs-orgmode

Микола Стрєбков <nick@mykola.org> writes:

>> Микола Стрєбков wrote:
>>> I started to use org-mode together with MobileOrg and everything
>>> was fine. But two days ago I realized that I'm unable to build
>>> neither agenda nor todo lists from my org files. Problem occurred
>>> on both Emacs and my iPhone even on the simplest files like:
>>> * test
>>> ** TODO test2
>>> ** TODO test3
>>> * test4

> Here is org part of my .emacs:
>
> ;;;
> ;;; Org mode
> ;;;
> (require 'org-install)
> (transient-mark-mode 1)
> (setq org-log-done 'time)
> (setq org-directory "~/Org")
> (setq org-footnote-auto-adjust t)
> (setq org-mobile-files (quote ("~/Org/main.org")))
> (setq org-mobile-directory "~/Dropbox/MobileOrg")
> (setq org-mobile-inbox-for-pull "~/Org/inbox.org")
> (setq org-todo-keywords
>       '(
> 	(type "TODO" "|" "DONE")
> 	(sequence "PROJ" "|" "FINISHED")
> 	(sequence "PROG" "|" "CANCELLED" "DONE")
> 	)
>       )
> (setq org-default-notes-file (concat org-directory "/notes.org"))
> (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
>

What is the value or org-agenda-files?

Best,
Matt

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

* Re: Re: C-c a t shows empty list
  2011-01-20 22:56     ` Matt Lundin
@ 2011-01-20 23:33       ` Микола Стрєбков
  0 siblings, 0 replies; 6+ messages in thread
From: Микола Стрєбков @ 2011-01-20 23:33 UTC (permalink / raw)
  To: Matt Lundin; +Cc: emacs-orgmode

Hi, Matt

On 21 січ. 2011, at 00:56, Matt Lundin wrote:
> 
>> Here is org part of my .emacs:
>> 
>> ;;;
>> ;;; Org mode
>> ;;;
>> (require 'org-install)
>> (transient-mark-mode 1)
>> (setq org-log-done 'time)
>> (setq org-directory "~/Org")
>> (setq org-footnote-auto-adjust t)
>> (setq org-mobile-files (quote ("~/Org/main.org")))
>> (setq org-mobile-directory "~/Dropbox/MobileOrg")
>> (setq org-mobile-inbox-for-pull "~/Org/inbox.org")
>> (setq org-todo-keywords
>>      '(
>> 	(type "TODO" "|" "DONE")
>> 	(sequence "PROJ" "|" "FINISHED")
>> 	(sequence "PROG" "|" "CANCELLED" "DONE")
>> 	)
>>      )
>> (setq org-default-notes-file (concat org-directory "/notes.org"))
>> (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
>> 
> 
> What is the value or org-agenda-files?

Good question made a trick: setting org-agenda-files to proper values (directory w/ agenda files in my case) solved the issue.
Thanks a lot. 

-- 
Mykola Stryebkov
Public key: http://mykola.org/pubkey.txt
fpr: 0226 54EE C1FF 8636 36EF  2AC9 BCE9 CFC7 9CF4 6747

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

end of thread, other threads:[~2011-01-20 23:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-20 21:38 C-c a t shows empty list Микола Стрєбков
2011-01-20 21:43 ` Erik Iverson
2011-01-20 22:07   ` Микола Стрєбков
2011-01-20 22:08     ` Erik Iverson
2011-01-20 22:56     ` Matt Lundin
2011-01-20 23:33       ` Микола Стрєбков

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).