Re: [Orgmode] Task time limit

2008-02-10 Thread Sebastjan Trepca
I finally got time to try this code :)

Copied into my .emacs file, changed the time to 1 minute, clocked in a
task, waited a minute and nothing happened :)

What could I be doing wrong?

Thanks, Sebastjan


On Nov 19, 2007 2:03 PM, Bastien [EMAIL PROTECTED] wrote:
 Sebastjan Trepca [EMAIL PROTECTED] writes:

  For example, check the feed reader would be set to 20 minutes. I
  would clock-in the task, go and check the reader and after 20 mins,
  alarm would go off, reminding me that I should start doing something
  else.

 Nice idea, I gave it a shot.

 I advised `org-clock-in' so that each time I am clocking in a new task,
 a new appointment is triggered.  `my-org-appt-add' can also be called
 interactively.

 ;; Make sure you have a sensible value for `appt-message-warning-time'
 (defun my-org-appt-add (optional n)
   Add an appointment for the Org entry at point in N minutes.
   (interactive)
   (save-excursion
 (org-back-to-heading t)
 (looking-at org-complex-heading-regexp)
 (let* ((msg (concat (match-string-no-properties 4)
  *GAME OVER*))
(ct-time (decode-time))
(appt-min (+ (cadr ct-time) (or n 20)))
(appt-time ; define the time for the appointment
 (progn (setf (cadr ct-time) appt-min) ct-time)))
   (appt-add (format-time-string
  %H:%M (apply 'encode-time appt-time)) msg)
   (if (interactive-p) (message New appointment for %s msg)

 (defadvice org-clock-in (after org-appt-add-after-clock-in activate)
   Add an appointment after clocking in a task.
   (my-org-appt-add))

 Maybe another idea is to bind (progn (org-clock-in) (my-org-appt-add))
 to a key in org-agenda-mode-map, since advising `org-clock-in' is a bit
 too much IMO.  Or we could use some kind of filtering to decide whether
 clockin in an entry should trigger a new appointment.

 Anyway, that's just a quickstart, let me know if this is useful.

 --
 Bastien


 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Custom agenda view

2008-02-02 Thread Sebastjan Trepca
Hi,

I'm trying to create a custom view that should display agenda for only
items that are scheduled today and include a specific tag together
with tasks that has NEXT todo keyword and the same tag.

Currently I have this:

(h Home tasks ((agenda) (tags HOME/NEXT)))

The problem is that agenda, it shows all scheduled tasks and not only
those with HOME tag. I tried with org-agenda-skip-entry-if but I can't
make it work.

Thanks.

-- 
Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Problems with moving items

2008-01-28 Thread Sebastjan Trepca
Hi,

After I upgraded my old 5.17 with 5.19 version it started to move too
much spaces when I used archive, move or any other feature that uses
it.

Lets say we have this list:

* hehe
** TODO hehe1
** TODO hehe2
** TODO hehe3

Now we archive hehe2.

This is what you get:
* hehe
** TODO hehe1 ** TODO hehe3

Is this a feature or a bug?

Thanks, Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Moving items to categories

2007-12-15 Thread Sebastjan Trepca
Hi,

another quick question, I have a lot of categories so I move todo
items around a lot. I currently use copy/paste method, but it's quite
slow. Is there anything similar to setting tags, where you get
autocompletion etc?

Thanks, Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Task time limit

2007-11-18 Thread Sebastjan Trepca
Hi,

another idea for a feature (if it's not already possible) that would
definitely come handy. I have few tasks that should only take a
limited amount of my time each day.

For example, check the feed reader would be set to 20 minutes. I
would clock-in the task, go and check the reader and after 20 mins,
alarm would go off, reminding me that I should start doing something
else.

Is this possible with current version?

Thanks, Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Dependant tasks

2007-11-07 Thread Sebastjan Trepca
Hi,

Is it possible to have a task that is locked until some other task
is finished?

Regards, Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Estimated times

2007-10-31 Thread Sebastjan Trepca
I managed to create a nice column view, except for the logging work
part. It uses its own format of date ranges so I cannot just simply
sum it as time estimates.

A new time range summary type would come handy ;)

Sebastjan


On 10/29/07, Vagn Johansen [EMAIL PROTECTED] wrote:
 Christian Egli [EMAIL PROTECTED] writes:

  Sebastjan Trepca trepca at gmail.com writes:
 
  I was wondering if there is a way to set a time estimate for a task
  and then match it with actual logged time? After you finish it of
  course.

 [...]

  You might be able to do something with a column view. You define the
  effort as a property and in your Column View you summarize the
  effort. Might be worth to have a look at
  http://orgmode.org/org.html#Column-view
 


 There was a thread about this recently

 http://www.mail-archive.com/emacs-orgmode@gnu.org/msg03950.html



 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Estimated times

2007-10-28 Thread Sebastjan Trepca
Hi,

I was wondering if there is a way to set a time estimate for a task
and then match it with actual logged time? After you finish it of
course.

Maybe something similar as checkbox counters.

 * TODO learn about emacs [0/2, 0h/20h]
   - [ ] read emacs manual (10h)
   - [ ] read  elisp manual (10h)

First counter counts the finished subtasks, second shows overall
logged time and the estimate.
Not very pretty, but I would imagine it as something like that. I
really like checkboxes :) It's a really nice way to create mini
subtasks.

Thanks, Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Agenda view resizes frames

2007-10-15 Thread Sebastjan Trepca
Thanks, it works!

I'm quite new in Emacs and org-mode but loving every minute of it :)

Sebastjan


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Org-mode version 5.12

2007-10-14 Thread Sebastjan Trepca
Idea about having A priority tasks in bold is good, but I don't think
so for italic. I think italic is much more visible then normal font,
so I was wondering how could I disable this feature for only italic
tasks.

I want to have A tasks bold, B tasks normal and C tasks in less
visible color like silver.

Thanks, Sebastjan

On 10/14/07, Bastien [EMAIL PROTECTED] wrote:
 Carsten Dominik [EMAIL PROTECTED] writes:

  What are your thoughts on making this clickable, with RET and mouse? I
  don't know, the link face makes it looks like it should be.
 
  Just an idea.
 
  I don't know if this is possible.  I use org-link because it is
  underlined.  Maybe it is a bad choice, actually - what would be the
  good choice for this face?

 org-time-grid ?

 --
 Bastien


 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] depending TODOs, scheduling following TODOs automatically

2007-10-11 Thread Sebastjan Trepca
Hey,

I'm new here but I have to say that I totally agree with Pete.

Why not just work on integration with popular project management
tools? e.g export to Jira, Trac, ...

(btw, syncing todos with Trac tickets would really come handy :)

Sebastjan

On 10/11/07, pete phillips [EMAIL PROTECTED] wrote:
  Carsten == Carsten Dominik [EMAIL PROTECTED] writes:

 Carsten First, let me say that I was surprised that quite a few
 Carsten people are so keen to see this kind of features.  I myself
 Carsten would worry a lot about spending more time to set up and
 Carsten maintain these connections, than I would be saving by using
 Carsten them.  And I am not sure if Org-mode really scales up
 Carsten nicely when it comes to really large projects, large number
 Carsten of people interacting, keeping complex GANTT charts up to
 Carsten date etc.  Me, I have sometimes made these charts during an
 Carsten initial project setup, to get a feeling what amount of time
 Carsten and resources would be needed, but I have never kept these
 Carsten complex structures alive and up to date.

 I have to say that I'm a bit worried if org-mode goes in this direction.

 Just because Carsten may be able to beat it into shape to do this
 (albeit in very elegant lisp), it doesn't mean he should.

 org-mode developed as a means of maintaining lists, and it excels at
 this. Just because the GTD methodology uses the term Project doesn't
 mean that we should turn org-mode into a fully fledged project planning
 application. If you need project planning capability, then you probably
 need all the bells and whistles that go with it - GANT and PERT charts,
 critical path calculations, multi-user capabilities etc.

 My concern is that *very* few people need that type of functionality,
 and if you do, there are now some very good applications now under
 GNU/Linux to choose from.

 org-mode is a superb PIM and list manager (in my view, probably about
 the best there is). Just because we have one incredible hammer, let's
 not start seeing everything else as a nail!

 Just a personal viewpoint of course.  :-)

 Pete



 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode