From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Frames and the agenda Date: Fri, 24 Feb 2012 12:38:39 -0600 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=00151744136cc009f704b9ba1182 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S102a-0005AI-8W for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 13:38:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S102T-0002ZP-II for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 13:38:48 -0500 Received: from mail-bk0-f41.google.com ([209.85.214.41]:63022) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S102T-0002ZD-Ar for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 13:38:41 -0500 Received: by bkty12 with SMTP id y12so2834603bkt.0 for ; Fri, 24 Feb 2012 10:38:39 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode --00151744136cc009f704b9ba1182 Content-Type: text/plain; charset=ISO-8859-1 Hey guys, So, I would like to keep a sort of dashboard in a osx virtual desktop - basically having emacs frames with different todo lists for reference at quick glance: http://minus.com/mlgjv21R4 The problem is that the agenda is global to the emacs instance and won't allow me to show a filter view in one frame and another in the other (i.e: One frame showing all my personal TODOs and the other showing all TODOs related to my job.). I could have those lists in separate files, but my configuration now has all todos in a big gtd.org file. Is there a way to have differente filters in different frames? If not, any thoughts on how I could accomplish this idea? Thanks, Marcelo. --00151744136cc009f704b9ba1182 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hey guys,

So, I would like to keep a sort of dashboard i= n a osx virtual desktop - basically having emacs frames with different todo= lists for reference at quick glance:


The problem is that the agenda is global to the emacs i= nstance and won't allow me to show a filter view in one frame and anoth= er in the other (i.e: One frame showing all my personal TODOs and the other= showing all TODOs related to my job.).=A0

I could have those lists in separate files, but my conf= iguration now has all todos in a big gtd.org= file.

Is there a way to have differente filters i= n different frames? If not, any thoughts on how I could accomplish this ide= a?

Thanks,

Marcelo.
--00151744136cc009f704b9ba1182-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Max Mikhanosha Subject: Re: Frames and the agenda Date: Fri, 24 Feb 2012 15:48:20 -0500 Message-ID: <878vjs6jqj.wl%max@openchat.com> References: Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59736) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1240-0003z0-RH for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 15:48:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S123z-000805-99 for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 15:48:24 -0500 Received: from openchat.com ([75.99.81.170]:35680 helo=momoland.openchat.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S123z-0007zf-53 for emacs-orgmode@gnu.org; Fri, 24 Feb 2012 15:48:23 -0500 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Marcelo de Moraes Serpa Check out my multiple-agenda-buffers branch from http://github.com/7max/org= -mode Its designed exactly for that (multiple independent agenda buffers living together). to enable it use, M-x org-toggle-sticky-agenda You will have to set different agenda names for different agenda views in your org-agenda-custom-commands variable like so: (setq org-agenda-custom-commands '(("a" "Agenda and NEXT (priority)" ((agenda "" ((org-agenda-span 'day))) (tags-todo "/!NEXT" ((org-agenda-overriding-header "Next Tasks") (org-agenda-tags-todo-honor-ignore-options t) (org-agenda-todo-ignore-scheduled t) (org-agenda-todo-ignore-deadlines t) (org-tags-match-list-sublevels t) (org-agenda-sorting-strategy '(priority-down category-keep))))) ((org-agenda-buffer-name "*Agenda*"))) ("t" "TODO entries" todo "" ((org-agenda-buffer-name "*Todo List*"))))) Carsten suggested that this will eventually get merged, but I think people may be afraid, as it's a bit of a major change, converting most agenda related variables to buffer local, and at least initially had a several bugs, which took me a few weeks to catch and fix. But I've been running on this branch for a month+, and quality of my org-moding had greatly improved, since now all my agendas pop-out immediately instead of rebuilding for several seconds. At Fri, 24 Feb 2012 12:38:39 -0600, Marcelo de Moraes Serpa wrote: >=20 > Hey guys, >=20 > So, I would like to keep a sort of dashboard in a osx virtual desktop - b= asically having emacs frames with different todo lists > for reference at quick glance: >=20 > http://minus.com/mlgjv21R4 >=20 > The problem is that the agenda is global to the emacs instance and won't = allow me to show a filter view in one frame and another > in the other (i.e: One frame showing all my personal TODOs and the other = showing all TODOs related to my job.).=C2=A0 >=20 > I could have those lists in separate files, but my configuration now has = all todos in a big gtd.org file. >=20 > Is there a way to have differente filters in different frames? If not, an= y thoughts on how I could accomplish this idea? >=20 > Thanks, >=20 > Marcelo. >=20 >=20 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Re: Frames and the agenda Date: Mon, 27 Feb 2012 16:45:40 -0600 Message-ID: References: <878vjs6jqj.wl%max@openchat.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=0015175cd1ccaef00e04b9f9de69 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54955) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S29KE-0003op-NM for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 17:45:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S29KC-0003Oi-53 for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 17:45:46 -0500 Received: from mail-bk0-f41.google.com ([209.85.214.41]:39670) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S29KB-0003OB-O3 for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 17:45:44 -0500 Received: by bkty12 with SMTP id y12so5229822bkt.0 for ; Mon, 27 Feb 2012 14:45:41 -0800 (PST) In-Reply-To: <878vjs6jqj.wl%max@openchat.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa , Org Mode , max@openchat.com --0015175cd1ccaef00e04b9f9de69 Content-Type: text/plain; charset=ISO-8859-1 Hi Max, thanks for the reply. That is amazing. Works like a charm - just what I needed. This should definitely be merged back to the main org distribution! On Fri, Feb 24, 2012 at 2:48 PM, Max Mikhanosha wrote: > Check out my multiple-agenda-buffers branch from > http://github.com/7max/org-mode > > Its designed exactly for that (multiple independent agenda buffers > living together). to enable it use, M-x org-toggle-sticky-agenda > > You will have to set different agenda names for different agenda views > in your org-agenda-custom-commands variable like so: > > (setq org-agenda-custom-commands > '(("a" "Agenda and NEXT (priority)" > ((agenda "" > ((org-agenda-span 'day))) > (tags-todo "/!NEXT" > ((org-agenda-overriding-header "Next Tasks") > (org-agenda-tags-todo-honor-ignore-options t) > (org-agenda-todo-ignore-scheduled t) > (org-agenda-todo-ignore-deadlines t) > (org-tags-match-list-sublevels t) > (org-agenda-sorting-strategy > '(priority-down category-keep))))) > ((org-agenda-buffer-name "*Agenda*"))) > ("t" "TODO entries" > todo "" > ((org-agenda-buffer-name "*Todo List*"))))) > > Carsten suggested that this will eventually get merged, but I think > people may be afraid, as it's a bit of a major change, converting most > agenda related variables to buffer local, and at least initially had a > several bugs, which took me a few weeks to catch and fix. > > But I've been running on this branch for a month+, and quality of > my org-moding had greatly improved, since now all my agendas pop-out > immediately instead of rebuilding for several seconds. > > At Fri, 24 Feb 2012 12:38:39 -0600, > Marcelo de Moraes Serpa wrote: > > > > Hey guys, > > > > So, I would like to keep a sort of dashboard in a osx virtual desktop - > basically having emacs frames with different todo lists > > for reference at quick glance: > > > > http://minus.com/mlgjv21R4 > > > > The problem is that the agenda is global to the emacs instance and won't > allow me to show a filter view in one frame and another > > in the other (i.e: One frame showing all my personal TODOs and the other > showing all TODOs related to my job.). > > > > I could have those lists in separate files, but my configuration now has > all todos in a big gtd.org file. > > > > Is there a way to have differente filters in different frames? If not, > any thoughts on how I could accomplish this idea? > > > > Thanks, > > > > Marcelo. > > > > > --0015175cd1ccaef00e04b9f9de69 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi Max, thanks for the reply.

That is amazing. Works lik= e a charm - just what I needed.

This should=A0defi= nitely=A0be merged back to the main org distribution!

<= div>

On Fri, Feb 24, 2012 at 2:48 PM, Ma= x Mikhanosha <max@= openchat.com> wrote:
Check out my multiple-agenda-buffers branch from http://github.com/7max/org-mode

Its designed exactly for that (multiple independent agenda buffers
living together). to enable it use, M-x org-toggle-sticky-agenda

You will have to set different agenda names for different agenda views
in your org-agenda-custom-commands variable like so:

=A0(setq org-agenda-custom-commands
=A0 =A0 =A0 '(("a" "Agenda and NEXT (priority)" =A0 =A0 =A0 =A0 =A0((agenda ""
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 ((org-agenda-span 'day)))
=A0 =A0 =A0 =A0 =A0 (tags-todo "/!NEXT"
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0((org-agenda-overriding-header = "Next Tasks")
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-tags-todo-honor-ig= nore-options t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-todo-ignore-schedu= led t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-todo-ignore-deadli= nes t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-tags-match-list-sublevels= t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-sorting-strategy =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0'(priority-down categor= y-keep)))))
=A0 =A0 =A0 =A0 =A0((org-agenda-buffer-name "*Agenda*")))
=A0 =A0 =A0 =A0 ("t" "TODO entries"
=A0 =A0 =A0 =A0 =A0todo ""
=A0 =A0 =A0 =A0 =A0((org-agenda-buffer-name "*Todo List*")))))
Carsten suggested that this will eventually get merged, but I think
people may be afraid, as it's a bit of a major change, converting most<= br> agenda related variables to buffer local, and at least initially had a
several bugs, which took me a few weeks to catch and fix.

But I've been running on this branch for a month+, and quality of
my org-moding had greatly improved, since now all my agendas pop-out
immediately instead of rebuilding for several seconds.

At Fri, 24 Feb 2012 12:38:39 -0600,
Marcelo de Moraes Serpa wrote:
>
> Hey guys,
>
> So, I would like to keep a sort of dashboard in a osx virtual desktop = - basically having emacs frames with different todo lists
> for reference at quick glance:
>
> http://minus.= com/mlgjv21R4
>
> The problem is that the agenda is global to the emacs instance and won= 't allow me to show a filter view in one frame and another
> in the other (i.e: One frame showing all my personal TODOs and the oth= er showing all TODOs related to my job.).=A0
>
> I could have those lists in separate files, but my configuration now h= as all todos in a big gtd.org<= /a> file.
>
> Is there a way to have differente filters in different frames? If not,= any thoughts on how I could accomplish this idea?
>
> Thanks,
>
> Marcelo.
>
>

--0015175cd1ccaef00e04b9f9de69-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Re: Frames and the agenda Date: Mon, 27 Feb 2012 18:52:09 -0600 Message-ID: References: <878vjs6jqj.wl%max@openchat.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=0015175cf8b8f9ebe704b9fba29a Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40321) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2BId-0005xG-CJ for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 19:52:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2BIa-0000GX-43 for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 19:52:14 -0500 Received: from mail-bk0-f41.google.com ([209.85.214.41]:40849) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2BIZ-0000GG-Mh for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 19:52:12 -0500 Received: by bkty12 with SMTP id y12so5295371bkt.0 for ; Mon, 27 Feb 2012 16:52:09 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa , Org Mode , max@openchat.com --0015175cf8b8f9ebe704b9fba29a Content-Type: text/plain; charset=ISO-8859-1 Hi Max, Although everything else is working great, I'm getting the following error message when trying to follow links to org files: "cond: Symbol's function definition is void: org-in-clocktable-p [11 times]" The link looks like this: [[file:~/org/data/dynamic_reference/otherfile.org]] Any ideas? - Marcelo. On Mon, Feb 27, 2012 at 4:45 PM, Marcelo de Moraes Serpa < celoserpa@gmail.com> wrote: > Hi Max, thanks for the reply. > > That is amazing. Works like a charm - just what I needed. > > This should definitely be merged back to the main org distribution! > > > > On Fri, Feb 24, 2012 at 2:48 PM, Max Mikhanosha wrote: > >> Check out my multiple-agenda-buffers branch from >> http://github.com/7max/org-mode >> >> Its designed exactly for that (multiple independent agenda buffers >> living together). to enable it use, M-x org-toggle-sticky-agenda >> >> You will have to set different agenda names for different agenda views >> in your org-agenda-custom-commands variable like so: >> >> (setq org-agenda-custom-commands >> '(("a" "Agenda and NEXT (priority)" >> ((agenda "" >> ((org-agenda-span 'day))) >> (tags-todo "/!NEXT" >> ((org-agenda-overriding-header "Next Tasks") >> (org-agenda-tags-todo-honor-ignore-options t) >> (org-agenda-todo-ignore-scheduled t) >> (org-agenda-todo-ignore-deadlines t) >> (org-tags-match-list-sublevels t) >> (org-agenda-sorting-strategy >> '(priority-down category-keep))))) >> ((org-agenda-buffer-name "*Agenda*"))) >> ("t" "TODO entries" >> todo "" >> ((org-agenda-buffer-name "*Todo List*"))))) >> >> Carsten suggested that this will eventually get merged, but I think >> people may be afraid, as it's a bit of a major change, converting most >> agenda related variables to buffer local, and at least initially had a >> several bugs, which took me a few weeks to catch and fix. >> >> But I've been running on this branch for a month+, and quality of >> my org-moding had greatly improved, since now all my agendas pop-out >> immediately instead of rebuilding for several seconds. >> >> At Fri, 24 Feb 2012 12:38:39 -0600, >> Marcelo de Moraes Serpa wrote: >> > >> > Hey guys, >> > >> > So, I would like to keep a sort of dashboard in a osx virtual desktop - >> basically having emacs frames with different todo lists >> > for reference at quick glance: >> > >> > http://minus.com/mlgjv21R4 >> > >> > The problem is that the agenda is global to the emacs instance and >> won't allow me to show a filter view in one frame and another >> > in the other (i.e: One frame showing all my personal TODOs and the >> other showing all TODOs related to my job.). >> > >> > I could have those lists in separate files, but my configuration now >> has all todos in a big gtd.org file. >> > >> > Is there a way to have differente filters in different frames? If not, >> any thoughts on how I could accomplish this idea? >> > >> > Thanks, >> > >> > Marcelo. >> > >> > >> > > --0015175cf8b8f9ebe704b9fba29a Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi Max,

Although everything else is working great, I'= ;m getting the following error message when trying to follow links to org f= iles:



On Mon, Feb 27, 2012 at 4:45 PM, Marcelo de Moraes Serpa <= span dir=3D"ltr"><celoserpa@gmail= .com> wrote:
Hi Max, thanks for the reply.

=
That is amazing. Works like a charm - just what I needed.
This should=A0definitely=A0be merged back to the main org distri= bution!



On Fri, Feb 24, 2012 at 2:48 PM, Ma= x Mikhanosha <max@openchat.com> wrote:
Check out my multiple-agenda-buffers branch from http://github.com/7max/org-mode

Its designed exactly for that (multiple independent agenda buffers
living together). to enable it use, M-x org-toggle-sticky-agenda

You will have to set different agenda names for different agenda views
in your org-agenda-custom-commands variable like so:

=A0(setq org-agenda-custom-commands
=A0 =A0 =A0 '(("a" "Agenda and NEXT (priority)" =A0 =A0 =A0 =A0 =A0((agenda ""
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 ((org-agenda-span 'day)))
=A0 =A0 =A0 =A0 =A0 (tags-todo "/!NEXT"
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0((org-agenda-overriding-header = "Next Tasks")
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-tags-todo-honor-ig= nore-options t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-todo-ignore-schedu= led t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-todo-ignore-deadli= nes t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-tags-match-list-sublevels= t)
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 (org-agenda-sorting-strategy =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0'(priority-down categor= y-keep)))))
=A0 =A0 =A0 =A0 =A0((org-agenda-buffer-name "*Agenda*")))
=A0 =A0 =A0 =A0 ("t" "TODO entries"
=A0 =A0 =A0 =A0 =A0todo ""
=A0 =A0 =A0 =A0 =A0((org-agenda-buffer-name "*Todo List*")))))
Carsten suggested that this will eventually get merged, but I think
people may be afraid, as it's a bit of a major change, converting most<= br> agenda related variables to buffer local, and at least initially had a
several bugs, which took me a few weeks to catch and fix.

But I've been running on this branch for a month+, and quality of
my org-moding had greatly improved, since now all my agendas pop-out
immediately instead of rebuilding for several seconds.

At Fri, 24 Feb 2012 12:38:39 -0600,
Marcelo de Moraes Serpa wrote:
>
> Hey guys,
>
> So, I would like to keep a sort of dashboard in a osx virtual desktop = - basically having emacs frames with different todo lists
> for reference at quick glance:
>
> http://minus.= com/mlgjv21R4
>
> The problem is that the agenda is global to the emacs instance and won= 't allow me to show a filter view in one frame and another
> in the other (i.e: One frame showing all my personal TODOs and the oth= er showing all TODOs related to my job.).=A0
>
> I could have those lists in separate files, but my configuration now h= as all todos in a big gtd.org<= /a> file.
>
> Is there a way to have differente filters in different frames? If not,= any thoughts on how I could accomplish this idea?
>
> Thanks,
>
> Marcelo.
>
>


--0015175cf8b8f9ebe704b9fba29a-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Frames and the agenda Date: Mon, 27 Feb 2012 20:44:23 -0500 Message-ID: <4222.1330393463@alphaville> References: <878vjs6jqj.wl%max@openchat.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45195) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2C7D-0005H7-OT for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 20:44:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2C7A-0001Ps-Fu for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 20:44:31 -0500 Received: from g4t0017.houston.hp.com ([15.201.24.20]:46430) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2C7A-0001PH-BK for emacs-orgmode@gnu.org; Mon, 27 Feb 2012 20:44:28 -0500 In-Reply-To: Message from Marcelo de Moraes Serpa of "Mon, 27 Feb 2012 18:52:09 CST." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa Cc: nicholas.dokos@hp.com, Org Mode Marcelo de Moraes Serpa wrote: > Although everything else is working great, I'm getting the following error > message when trying to follow links to org files: > > "cond: Symbol's function definition is void: org-in-clocktable-p [11 times]" > Maybe this helps? http://thread.gmane.org/gmane.emacs.orgmode/51998/focus=52186 Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Max Mikhanosha Subject: Re: Frames and the agenda Date: Tue, 28 Feb 2012 04:49:19 -0500 Message-ID: <87399v70f4.wl%max@openchat.com> References: <878vjs6jqj.wl%max@openchat.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35806) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2JgU-0006Qd-QK for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 04:49:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2JgQ-0006d3-1k for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 04:49:26 -0500 Received: from openchat.com ([75.99.81.170]:34541 helo=momoland.openchat.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2JgP-0006cu-Ul for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 04:49:21 -0500 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa Cc: Org Mode At Mon, 27 Feb 2012 18:52:09 -0600, Marcelo de Moraes Serpa wrote: > Although everything else is working great, I'm getting the following > error message when trying to follow links to org files: > > "cond: Symbol's function definition is void: org-in-clocktable-p [11 times]" My branch is probably a few weeks behind the master, so the fix that Nick mentioned above is not there. You can temporarily fix this by doing "M-x load-library RET org-clock". I'll rebase my branch to the latest origin/master soon, with the pace of development in org-mode its hard to be completely synced up all the time. Regards, Max From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Re: Frames and the agenda Date: Tue, 28 Feb 2012 10:55:38 -0600 Message-ID: References: <878vjs6jqj.wl%max@openchat.com> <87399v70f4.wl%max@openchat.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=00151740295cb04bed04ba091801 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43335) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2QL6-0006Nw-0D for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 11:55:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2QKz-0008Rx-8A for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 11:55:47 -0500 Received: from mail-bk0-f41.google.com ([209.85.214.41]:33282) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2QKy-0008RW-UV for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 11:55:41 -0500 Received: by bkty12 with SMTP id y12so6105289bkt.0 for ; Tue, 28 Feb 2012 08:55:38 -0800 (PST) In-Reply-To: <87399v70f4.wl%max@openchat.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa , Org Mode , max@openchat.com --00151740295cb04bed04ba091801 Content-Type: text/plain; charset=ISO-8859-1 Thanks guys, que quickfix worked. I'll see if I can rebase to org's HEAD myself, let's see if conflicts don't scare me away. Or perhaps just apply the fix manually. - Marcelo. On Tue, Feb 28, 2012 at 3:49 AM, Max Mikhanosha wrote: > At Mon, 27 Feb 2012 18:52:09 -0600, > Marcelo de Moraes Serpa wrote: > > > Although everything else is working great, I'm getting the following > > error message when trying to follow links to org files: > > > > "cond: Symbol's function definition is void: org-in-clocktable-p [11 > times]" > > My branch is probably a few weeks behind the master, so the fix that > Nick mentioned above is not there. > > You can temporarily fix this by doing "M-x load-library RET > org-clock". > > I'll rebase my branch to the latest origin/master soon, with the pace > of development in org-mode its hard to be completely synced up all the > time. > > Regards, > Max > --00151740295cb04bed04ba091801 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Thanks guys, que quickfix worked. I'll see if I can rebase to org's= HEAD myself, let's see if conflicts don't scare me away. Or perhap= s just apply the fix manually.

- Marcelo.



On Tue, Feb 28, 2012 at 3:49 = AM, Max Mikhanosha <max@openchat.com> wrote:
At Mon, 27 Feb 2012 18:52:09 -0600,
Marcelo de Moraes Serpa wrote:

> Although everything else is working great, I&#= 39;m getting the following
> error message when trying to follow links to org files:
>
> "cond: Symbol's function definition is void: org-in-clocktabl= e-p [11 times]"

My branch is probably a few weeks behind the master, so the fix that<= br> Nick mentioned above is not there.

You can temporarily fix this by doing "M-x load-library RET
org-clock".

I'll rebase my branch to the latest origin/master soon, with the pace of development in org-mode its hard to be completely synced up all the
time.

Regards,
=A0Max

--00151740295cb04bed04ba091801-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo de Moraes Serpa Subject: Re: Frames and the agenda Date: Tue, 28 Feb 2012 10:57:11 -0600 Message-ID: References: <878vjs6jqj.wl%max@openchat.com> <87399v70f4.wl%max@openchat.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=0015175cd1cc37eab004ba091e70 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2QMa-00079R-Gv for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 11:57:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2QMU-0000BL-18 for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 11:57:20 -0500 Received: from mail-bk0-f41.google.com ([209.85.214.41]:36840) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2QMT-0000B7-KT for emacs-orgmode@gnu.org; Tue, 28 Feb 2012 11:57:13 -0500 Received: by bkty12 with SMTP id y12so6107273bkt.0 for ; Tue, 28 Feb 2012 08:57:11 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa , Org Mode , max@openchat.com --0015175cd1cc37eab004ba091e70 Content-Type: text/plain; charset=ISO-8859-1 Anyway, I can't emphasize enough how useful this feature is. Having different agenda filtered views at the same time is a timesaver. This should be in the main org branch! Thanks for that, Max. Cheers, Marcelo. On Tue, Feb 28, 2012 at 10:55 AM, Marcelo de Moraes Serpa < celoserpa@gmail.com> wrote: > Thanks guys, que quickfix worked. I'll see if I can rebase to org's HEAD > myself, let's see if conflicts don't scare me away. Or perhaps just apply > the fix manually. > > - Marcelo. > > > > > On Tue, Feb 28, 2012 at 3:49 AM, Max Mikhanosha wrote: > >> At Mon, 27 Feb 2012 18:52:09 -0600, >> Marcelo de Moraes Serpa wrote: >> >> > Although everything else is working great, I'm getting the following >> > error message when trying to follow links to org files: >> > >> > "cond: Symbol's function definition is void: org-in-clocktable-p [11 >> times]" >> >> My branch is probably a few weeks behind the master, so the fix that >> Nick mentioned above is not there. >> >> You can temporarily fix this by doing "M-x load-library RET >> org-clock". >> >> I'll rebase my branch to the latest origin/master soon, with the pace >> of development in org-mode its hard to be completely synced up all the >> time. >> >> Regards, >> Max >> > > --0015175cd1cc37eab004ba091e70 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Anyway, I can't emphasize enough how useful this feature is. Having dif= ferent agenda filtered views at the same time is a timesaver. This should b= e in the main org branch!=A0

Thanks for that, Max.

Cheers,

Marcelo.

On Tue, Feb 28, 2012 at 10:55 AM, Marcelo de Moraes Serpa = <celoserpa@gmai= l.com> wrote:
Thanks guys, que quickfix worked. I'll s= ee if I can rebase to org's HEAD myself, let's see if conflicts don= 't scare me away. Or perhaps just apply the fix manually.

- Marcelo.




On Tue, Feb 28, 2012 at 3:49 = AM, Max Mikhanosha <max@openchat.com> wrote:
At Mon, 27 Feb 2012 18:52:09 -0600,
Marcelo de Moraes Serpa wrote:

> Although everything else is working great, I'm getting = the following
> error message when trying to follow links to org files:
>
> "cond: Symbol's function definition is void: org-in-clocktabl= e-p [11 times]"

My branch is probably a few weeks behind the master, so the fix that<= br> Nick mentioned above is not there.

You can temporarily fix this by doing "M-x load-library RET
org-clock".

I'll rebase my branch to the latest origin/master soon, with the pace of development in org-mode its hard to be completely synced up all the
time.

Regards,
=A0Max


--0015175cd1cc37eab004ba091e70-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Max Mikhanosha Subject: Rebased to the latest tip Date: Wed, 29 Feb 2012 12:55:41 -0500 Message-ID: <87ty29ttgi.wl%max@openchat.com> References: <878vjs6jqj.wl%max@openchat.com> <87399v70f4.wl%max@openchat.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:36417) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2nl6-0005hj-Nc for emacs-orgmode@gnu.org; Wed, 29 Feb 2012 12:56:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2nke-00066i-HS for emacs-orgmode@gnu.org; Wed, 29 Feb 2012 12:56:12 -0500 Received: from openchat.com ([75.99.81.170]:54464 helo=momoland.openchat.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2nke-00066D-6S for emacs-orgmode@gnu.org; Wed, 29 Feb 2012 12:55:44 -0500 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa Cc: Org Mode At Tue, 28 Feb 2012 10:57:11 -0600, Marcelo de Moraes Serpa wrote: >=20 > Anyway, I can't emphasize enough how useful this feature is. Having > different agenda filtered views at the same time is a > timesaver. This should be in the main org branch!=C2=A0 Thanks for the kind words, I think you are the only person who seriously tried it. As for merging its up to the maintainers. If there are any objections or code needs to be cleaned up or such, I have not heard anything. Anyway I had re-based multiple-agenda-buffers branch to the latest origin/master, and it seems to have went smoothly, and pushed to https://github.com/7max/org-mode Regards, Max