[Orgmode] Org-remember items are stored to the wrong headline

2008-08-27 Thread Tassilo Horn
Hi all,

I use org-mode which is included in Emacs 23 from CVS (a current
checkout).  This is my relevant config for org-remember:

--8---cut here---start-8---
(require 'remember)
(setq org-default-notes-file ~/repos/org/main.org
  org-remember-default-headline Remember
  org-remember-templates 
  '(;; TODOs
(todo-template ?t * TODO %?\n  (created: %U)\n  %i\n  %a)
;; Ideas
(idea-template ?i * Idea: %^{Title}\n  (created: %U)\n  %?\n  %i\n  
%a)
;; Notes
(note-template ?n * Note: %?\n  (created: %U)\n  %i\n  %a)))
(setq remember-annotation-functions '(org-remember-annotation)
  remember-handler-functions'(org-remember-handler)
  org-remember-store-without-prompt t)
(add-hook 'remember-mode-hook 'org-remember-apply-template)
(global-set-key (kbd C-c o r) 'org-remember)
--8---cut here---end---8---

The structure of my main.org file is as follows:

--8---cut here---start-8---
* Remember
#+CATEGORY: Remember
   
* Projects
#+CATEGORY: Projects

* Foo
#+CATEGORY: Foo
--8---cut here---end---8---

When I create a new remember item with `C-c -o r', fill out one template
and hit `C-c C-c', it's always filed as **-headline in main.org, but not
below the Remember headline but below the last headline, i.e. Foo.

As a workaround I can put the Remember headline to the end of the file,
but according to the docs, it should work as I've set it up...

Is this a bug or am I doing something wrong?

Bye,
Tassilo
-- 
RMS counted to infinity. Twice...



___
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-plot (generating graphs from org-mode)

2008-08-27 Thread Sebastian Rose

Hi Eric,


Great! This version fixes ALL the bugs I mentioned in my previous
email on emacs 23 !!!

I.e.

  - It always renders the plot after the first C-M-g
  - All three tables work

And it's much faster indeed!


Thank's, it's fantastic :-)


 - Sebastian


Eric Schulte wrote:

On Tuesday, August 26, at 11:08, Eric Schulte wrote:
  On Tuesday, August 26, at 19:57, Stephan Schmitt wrote:
Eric, did you know that Carsten provided a function called 
org-table-to-lisp in org-6.06b?  I think with this you can 
refactor your code to be more modular and thus better 
maintainable and extensible.


I have switched over to using `org-table-to-lisp' for all table
manipulation, and (at least in my environment), it seems to have made
the graphing functions faster, and much more reliable (no longer do I
have to run a function twice to generate a graph).

I believe this should fix most of the bugs mentioned previously.

Also, I have finished support for 3d graphing.  The updated version is
up on my git repo at

http://github.com/eschulte/org-plot/tree/master

or

git clone git://github.com/eschulte/org-plot.git

Of course if anyone has any comments, problems, or suggestions please
let me know.

Thanks -- Eric





___
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-plot (generating graphs from org-mode)

2008-08-27 Thread Sebastian Rose

Hi again,


Forgot to say: buffer-modified-p problem is gone too!!!


Wow!

Eric Schulte wrote:

On Tuesday, August 26, at 11:08, Eric Schulte wrote:
  On Tuesday, August 26, at 19:57, Stephan Schmitt wrote:
Eric, did you know that Carsten provided a function called 
org-table-to-lisp in org-6.06b?  I think with this you can 
refactor your code to be more modular and thus better 
maintainable and extensible.


I have switched over to using `org-table-to-lisp' for all table
manipulation, and (at least in my environment), it seems to have made
the graphing functions faster, and much more reliable (no longer do I
have to run a function twice to generate a graph).

I believe this should fix most of the bugs mentioned previously.

Also, I have finished support for 3d graphing.  The updated version is
up on my git repo at

http://github.com/eschulte/org-plot/tree/master

or

git clone git://github.com/eschulte/org-plot.git

Of course if anyone has any comments, problems, or suggestions please
let me know.

Thanks -- Eric





___
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-remember items are stored to the wrong headline

2008-08-27 Thread Manish
  On Wed, Aug 27, 2008 at 12:15 PM, Tassilo Horn wrote:
   Hi all,
  
   I use org-mode which is included in Emacs 23 from CVS (a current
   checkout).  This is my relevant config for org-remember:
  
   --8---cut here---start-8---
   (require 'remember)
   (setq org-default-notes-file ~/repos/org/main.org
org-remember-default-headline Remember
org-remember-templates
'(;; TODOs
  (todo-template ?t * TODO %?\n  (created: %U)\n  %i\n  %a)
  ;; Ideas
  (idea-template ?i * Idea: %^{Title}\n  (created: %U)\n
%?\n  %i\n  %a)
  ;; Notes
  (note-template ?n * Note: %?\n  (created: %U)\n  %i\n  %a)))
   (setq remember-annotation-functions '(org-remember-annotation)
remember-handler-functions'(org-remember-handler)
org-remember-store-without-prompt t)
   (add-hook 'remember-mode-hook 'org-remember-apply-template)
   (global-set-key (kbd C-c o r) 'org-remember)
   --8---cut here---end---8---
  
   The structure of my main.org file is as follows:
  
   --8---cut here---start-8---
   * Remember
   #+CATEGORY: Remember
  
   * Projects
   #+CATEGORY: Projects
  
   * Foo
   #+CATEGORY: Foo
   --8---cut here---end---8---
  
   When I create a new remember item with `C-c -o r', fill out one template
   and hit `C-c C-c', it's always filed as **-headline in main.org, but not
   below the Remember headline but below the last headline, i.e. Foo.
  
   As a workaround I can put the Remember headline to the end of the file,
   but according to the docs, it should work as I've set it up...


I took liberty to rephrase the template definition.  Seems to work as
you expect it to now.

(setq org-remember-templates
  (quote
   ((
 ;; TODOs
 (todo-emplate ?t * TODO %? \n  :CREATED: %U%i\n  %a
~/org/main.org Remember)
 ;; Ideas
 (idea-template ?i * Idea: %^{Title}\n  %?\n  :CREATED:
%U%i\n  %a ~/org/main.org Remember)
 ;; Notes
 (note-template ?n * Note: %?\n  :CREATED: %U%i\n  %a
~/org/main.org Remember

HTH,
-- Manish


___
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-remember items are stored to the wrong headline

2008-08-27 Thread Tassilo Horn
Manish [EMAIL PROTECTED] writes:

Hi!

--8---cut here---start-8---
(setq org-default-notes-file ~/repos/org/main.org
 org-remember-default-headline Remember
 org-remember-templates
 '(;; TODOs
   (todo-template ?t * TODO %?\n  (created: %U)\n  %i\n  %a)
   ;; Ideas
   (idea-template ?i * Idea: %^{Title}\n  (created: %U)\n  %?\n  
 %i\n  %a)
   ;; Notes
   (note-template ?n * Note: %?\n  (created: %U)\n  %i\n  %a)))
--8---cut here---end---8---

 I took liberty to rephrase the template definition.  Seems to work as
 you expect it to now.

 (setq org-remember-templates
   (quote
((
  ;; TODOs
  (todo-emplate ?t * TODO %? \n  :CREATED: %U%i\n  %a 
 ~/org/main.org Remember)
  ;; Ideas
  (idea-template ?i * Idea: %^{Title}\n  %?\n  :CREATED: %U%i\n  
 %a ~/org/main.org Remember)
  ;; Notes
  (note-template ?n * Note: %?\n  :CREATED: %U%i\n  %a 
 ~/org/main.org Remember

Even if it works with this definition, it's only a workaround.

,[ C-h v org-remember-templates RET ]
| org-remember-templates is a variable defined in `org-remember.el'.

[...]

| The fourth element is optional and can specify a destination file for
| remember items created with this template.  The default file is given
| by `org-default-notes-file'.  If the file name is not an absolute
| path, it will be interpreted relative to `org-directory'.
| 
| An optional fifth element can specify the headline in that file that should
| be offered first when the user is asked to file the entry.  The default
| headline is given in the variable `org-remember-default-headline'.  When
| this element is `top' or `bottom', the note will be placed as a level-1
| entry at the beginning or end of the file, respectively.

[...]

| You can customize this variable.
| 
| [back]
`

So the 4th and 5th element are optional and should use the values of
`org-default-notes-file' and `org-remember-default-headline' if not
specified.  But that's not done for the headline in my case...

Bye,
Tassilo
-- 
No person,  no idea, and no  religion deserves to be  illegal to insult,
not even the Church of Emacs. (Richard M. Stallman)


___
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] question concerning table mode / vsum / automatic adjustments of indices

2008-08-27 Thread Rainer Stengele

I mostly have the same application of using org tables.
I have (many) columns with numbers and want to see the sum in the last row.

See this little example:

   |---+|
   | items | amount |
   |---+|
   | a |0.5 |
   | b |0.0 |
   | c |0.5 |
   |---+|
   | sum   | 1. |
   |---+|
#+TBLFM:@5$2=vsum(@2..4)


Having the cursor on the row with c
and pressing M-S-DOWN I get this:

   |---+|
   | items | amount |
   |---+|
   | a |0.5 |
   | b |0.0 |
   |   ||
   | c |0.5 |
   |---+|
   | sum   | 1. |
   |---+|
#+TBLFM:@6$2=vsum(@[EMAIL PROTECTED])

everything is adjusted correctly!


Now I want to add a row after c. Being on the row below c
when I press M-S-DOWN I get this:

   |---+|
   | items | amount |
   |---+|
   | a |0.5 |
   | b |0.0 |
   | c |0.5 |
   |   ||
   |---+|
   | sum   | 1. |
   |---+|
#+TBLFM:@6$2=vsum(@[EMAIL PROTECTED])

which is not what I want. I want @5 as in the case before.
Is this a bug or a feature? How can I get what I need?

Thanks!


Rainer



___
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] Exporting Properties

2008-08-27 Thread Charlie Burrows
Hi,

Can anyone tell me a good way to export the custom property block. I
am trying to use org-mode as a project planner and I need to allow
other team members to see the estimates in my plan.

Thanks,
Charlie


___
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] Re: Exporting Properties

2008-08-27 Thread Bernt Hansen
Charlie Burrows [EMAIL PROTECTED] writes:

 Can anyone tell me a good way to export the custom property block. I
 am trying to use org-mode as a project planner and I need to allow
 other team members to see the estimates in my plan.

I deal with this by inserting a table in the subtree main task with the
current snapshot of estimates.

I have the following global setting in my .emacs

,[ .emacs setup for column mode ]
| (setq org-columns-default-format %40ITEM(Task) %17Effort(Estimated 
Effort){:} %CLOCKSUM)
`

If you have something like this:

,[ test.org ]
| * Project 1
| ** Task 1
|:PROPERTIES:
|:Effort:   1:00
|:END:
| ** Task 2
|:PROPERTIES:
|:Effort:   2:00
|:END:
| ** Task 3
|:PROPERTIES:
|:Effort:   0:10
|:END:
`

and you put the insertion point in the level 1 task and hit
C-c C-x r RET

You get a table like the following

,
| * Project 1
| #+BEGIN: columnview :hlines 1 :id local
| | Task| Estimated Effort | CLOCKSUM |
| |-+--+--|
| | * Project 1 | 3:10 |  |
| | ** Task 1   | 1:00 |  |
| | ** Task 2   | 2:00 |  |
| | ** Task 3   | 0:10 |  |
| #+END:
| ** Task 1
|:PROPERTIES:
|:Effort:   1:00
|:END:
| ** Task 2
|:PROPERTIES:
|:Effort:   2:00
|:END:
| ** Task 3
|:PROPERTIES:
|:Effort:   0:10
|:END:
`

That does exactly what I need for sharing estimates and taking a
snapshot of the estimated time.  I'm then free to change the estimates
during the project and compare that to my initial information.

The table is exported to HTML when I export the document.

Hope that helps,
Bernt


___
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-plot (generating graphs from org-mode)

2008-08-27 Thread Eric Schulte
On Wednesday, August 27, at 11:30, Sebastian Rose wrote:
  Hi Eric,
  
  
  Great! This version fixes ALL the bugs I mentioned in my previous
  email on emacs 23 !!!
  

Wonderful!! thanks for testing this out.

-- 
schulte


___
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-plot (generating graphs from org-mode)

2008-08-27 Thread Samuel Wales
Good stuff.

Possibilities:

1.  For a selected column, it can be nice to draw a histogram.  Long
ago, I developed the following formula for choosing a bin size.  Seems
to work.

5*(max-min)/n

You can use something like bin*round*($1 * (1.0/bin)) to bin.  Note
that cl-extra.el's (round*) might be more consistent and
mathematically vetted than (round) (though you might not be allowed to
use cl-extra.el).

I haven't looked at gnuplot in a decade, so maybe it already has this.

2.  It might be nice to show descriptive statistics (I would show
mean, median, geometric mean, standard deviation, min, max, range)
somewhere while showing the plot, if you don't already do this.


___
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] Re: Exporting Properties

2008-08-27 Thread Charlie Burrows
On Wed, Aug 27, 2008 at 10:54 AM, Bernt Hansen [EMAIL PROTECTED] wrote:
 Charlie Burrows [EMAIL PROTECTED] writes:

 Can anyone tell me a good way to export the custom property block. I
 am trying to use org-mode as a project planner and I need to allow
 other team members to see the estimates in my plan.

 I deal with this by inserting a table in the subtree main task with the
 current snapshot of estimates.

 and you put the insertion point in the level 1 task and hit
 C-c C-x r RET

 The table is exported to HTML when I export the document.

 Hope that helps,
 Bernt


Thank-you that is exactly what I was after.

Cheers,
Charlie


___
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-plot (generating graphs from org-mode)

2008-08-27 Thread Eric Schulte
On Wednesday, August 27, at 08:27, Samuel Wales wrote:
  Good stuff.
  
  Possibilities:
  
  1.  For a selected column, it can be nice to draw a histogram.  

There is a 'with histograms' option in gnuplot.  I made a small change
to org-plot.el so that this option now works as expected, for an
example of plotting a histogram (of one or more columns) using
org-plot see the example.org file in my git repo.

  2.  It might be nice to show descriptive statistics (I would show
  mean, median, geometric mean, standard deviation, min, max, range)
  somewhere while showing the plot, if you don't already do this.

That does seem like it would be useful (maybe accessible through
another optional argument), I've added it to the project's TODO file.

Thanks -- Eric


___
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] Slides with Org

2008-08-27 Thread Sebastian Rose

Hi,


Rick asked for Slides from Org-modes HTML export recently.
While there is no real support slides in org-info.js, I
still gave it try to have a poor mans slides.

The main missing thing was the ability to navigate the
section by clicking the window. This is now added and in
the worg git.

Please review and complain :-)



What's new?

  - press 'x' to switch to slide view mode.
  - #+INFOJS_OPT: view:slide

  In slide view mode:

  - click to go to the next section
  - dblclick to go back.


A little demo is attached to this email (unpack, go to the
folder org-slides and open slides.html in your browser.



For REAL slides a different tool should be written (using jQuery
or similar). Since slides are so different from 'normal' HTML, I
guess they would blow the scripts size. If I think of slides, I
think of efects.




Have Fun,

 - Sebastian





org-slides.tar.bz2
Description: application/bzip
___
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] HTML export: how to delimit escaped HTML entity?

2008-08-27 Thread mtheo

This is probably bonehead simple, but so far that bone seems to be broken here.

The entities in org-html-entities work fine for me as long as followed by a 
space (or another \-escaped entity), but I can't seem to discover how 
they're delimited within a word.


E.g.
Ren\eacute  produces  Reneacute; 

which is just fine; but I've failed to find a way to get the correct

Aacute;stor

out of any combination of \Aacute and stor.

\Aacutestor - \Aacutestor
\Aacute stor (naturally) - Aacute; stor

and nothing I've tried by way of analogy with shells (e.g. \{Aacute}stor) 
or other syntax (\Aacute\stor? \Aacute$stor? etc.) has produced anything 
but the same string in the generated code.


I'm sure my ignorance of {insert bonehead lacuna here} is showing, but does 
anyone know how to enter poor old Sr Piazzolla's given name into an org file 
so that it will export?


Thanks -- and repeated  continual thanks to Carsten and all other generous 
contributors.


Mark


GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600)
org-version 6.06b


--
m. theo
producer / classics without walls
the anti-warhorse zone / www.amural.com
kusf 90.3fm / san francisco



___
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] HTML export: how to delimit escaped HTML entity?

2008-08-27 Thread Sebastian Rose


What's in your XHTML-Head section?

How does your Content-Type line look? That is,

meta http-equiv=Content-Type content=text/html;charset=utf-8/

Change the 'utf-8' to what ever encoding your exported HTML files have.
You can detect the real encoding of the files, by visiting souch an
exported HTML file with emacs.

In the modeline on the left, you can see some indicators, the second
of which shows if the encoding is multibyte ('U') or singlebyte ('1').
Click it to see a full description of the files encoding.



|
|
|
|
|_
|-U--
  ^
  |
Click








Some more on this:

The world is big. Consider to change your System to use UTF-8
everywhere.

This is what I do here. Every file (and every filename) is UTF-8
on my system and thus things like

ö ß á Á € ø ·

folder
  │
  ├ file
  └ another_file


are always displayed correct. So is the XHTML export of my Org-files.
The characters are not changed to their html entities at all.

Switch to UTF-8 and get rid of all your local problems :-)

The easiest way to do this is just to install a modern GNU/Linux
distribution (use Debian). Just 1 hour and your done, once for all.


Regards,

 - Sebastian


mtheo wrote:
This is probably bonehead simple, but so far that bone seems to be 
broken here.


The entities in org-html-entities work fine for me as long as followed 
by a space (or another \-escaped entity), but I can't seem to discover 
how they're delimited within a word.


E.g.
Ren\eacute  produces  Reneacute; 

which is just fine; but I've failed to find a way to get the correct

Aacute;stor

out of any combination of \Aacute and stor.

\Aacutestor - \Aacutestor
\Aacute stor (naturally) - Aacute; stor

and nothing I've tried by way of analogy with shells (e.g. 
\{Aacute}stor) or other syntax (\Aacute\stor? \Aacute$stor? etc.) 
has produced anything but the same string in the generated code.


I'm sure my ignorance of {insert bonehead lacuna here} is showing, but 
does anyone know how to enter poor old Sr Piazzolla's given name into an 
org file so that it will export?


Thanks -- and repeated  continual thanks to Carsten and all other 
generous contributors.


Mark


GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600)
org-version 6.06b






___
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] Suggestions for features OR Help?

2008-08-27 Thread David A. Gershman
Hello All,

I'm fairly new to Org-Mode, but common to Emacs.  I've have a need to
create a task which is made up of sub-tasks.  Each sub-task in turn has
actions which comprise it.

Each action, I'd like it to have a checkbox so that the sub-task can
track percent complete.  Like so:

  * Sub-Task [66%]
- [X] Action 1
- [ ] Action 2
- [X] Action 3

Once the sub-task is complete, I can set it's TODO label:

  * COMPLETED Sub-Task [100%] - 2008/08/08 17:33:00

This is already how Org-mode works obviously.  My question/request is
this: is there a way to also track completeness via percentages for the
sub-tasks (headings)?  So I would have/see the following:

 * Primary Task [65%]
  * COMPLETED Sub-Task 1 [100%] - 2008/08/08 17:33:00...
  * Sub-Task 2 [24%]...
  * Sub-Task 3 [72%]...

The primary task percent would be based on 3 sub-tasks of equal weight, so:
  (1*.33) + (.24*.33) + (.72*.33) = 65%

I'd even be willing to settle for a primary task percent of just 33%
since only 1 sub-task is completed.

Any ideas?  Is something like this possible?

-- 
--
Gershman, David A.
Sr. Systems Engineer II
Information Assurance/CISSP
NCS - Fullerton, Raytheon Company

(714) 446-2669 office
(714) 407-3636 pager
[EMAIL PROTECTED]

FU/675/Y343
1801 Hughes Drive
Fullerton, CA 92833

This message contains information that may be confidential and
privileged.  Unless you are the addressee (or authorized to receive
mail for the addressee), you should not use, copy or disclose to
anyone this message or any information contained in this message. If
you have received this message in error, please so advise the sender
by reply e-mail and delete this message. Thank you for your
cooperation.





___
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] DOH! - [Fwd: Suggestions for features OR Help?]

2008-08-27 Thread David A. Gershman
Before anyone does, I'll ping myself with an RTFM!  :)

Found my answer in the org manual, page 39.

However, it shows the 33% (by the example below), not the computed 65%.
 Anyone know if that method is possible?

Thanks.

--dag


 Original Message 
Subject: Suggestions for features OR Help?
Date: Wed, 27 Aug 2008 18:11:28 -0700
From: David A. Gershman [EMAIL PROTECTED]
To: emacs-orgmode@gnu.org

Hello All,

I'm fairly new to Org-Mode, but common to Emacs.  I've have a need to
create a task which is made up of sub-tasks.  Each sub-task in turn has
actions which comprise it.

Each action, I'd like it to have a checkbox so that the sub-task can
track percent complete.  Like so:

  * Sub-Task [66%]
- [X] Action 1
- [ ] Action 2
- [X] Action 3

Once the sub-task is complete, I can set it's TODO label:

  * COMPLETED Sub-Task [100%] - 2008/08/08 17:33:00

This is already how Org-mode works obviously.  My question/request is
this: is there a way to also track completeness via percentages for the
sub-tasks (headings)?  So I would have/see the following:

 * Primary Task [65%]
  * COMPLETED Sub-Task 1 [100%] - 2008/08/08 17:33:00...
  * Sub-Task 2 [24%]...
  * Sub-Task 3 [72%]...

The primary task percent would be based on 3 sub-tasks of equal weight, so:
  (1*.33) + (.24*.33) + (.72*.33) = 65%

I'd even be willing to settle for a primary task percent of just 33%
since only 1 sub-task is completed.

Any ideas?  Is something like this possible?

-- 
--
Gershman, David A.
Sr. Systems Engineer II
Information Assurance/CISSP
NCS - Fullerton, Raytheon Company

(714) 446-2669 office
(714) 407-3636 pager
[EMAIL PROTECTED]

FU/675/Y343
1801 Hughes Drive
Fullerton, CA 92833

This message contains information that may be confidential and
privileged.  Unless you are the addressee (or authorized to receive
mail for the addressee), you should not use, copy or disclose to
anyone this message or any information contained in this message. If
you have received this message in error, please so advise the sender
by reply e-mail and delete this message. Thank you for your
cooperation.




-- 
--
Gershman, David A.
Sr. Systems Engineer II
Information Assurance/CISSP
NCS - Fullerton, Raytheon Company

(714) 446-2669 office
(714) 407-3636 pager
[EMAIL PROTECTED]

FU/675/Y343
1801 Hughes Drive
Fullerton, CA 92833

This message contains information that may be confidential and
privileged.  Unless you are the addressee (or authorized to receive
mail for the addressee), you should not use, copy or disclose to
anyone this message or any information contained in this message. If
you have received this message in error, please so advise the sender
by reply e-mail and delete this message. Thank you for your
cooperation.





___
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] Slides with Org

2008-08-27 Thread Manish
  On Thu, Aug 28, 2008 at 3:57 AM, Sebastian Rose wrote:
   Hi,
  
  
   Rick asked for Slides from Org-modes HTML export recently.
   While there is no real support slides in org-info.js, I
   still gave it try to have a poor mans slides.
  
   The main missing thing was the ability to navigate the
   section by clicking the window. This is now added and in
   the worg git.
  
   Please review and complain :-)

:)

A request, can we have navigation using arrow keys and space bar
please?

   A little demo is attached to this email (unpack, go to the
   folder org-slides and open slides.html in your browser.

Perhaps it would be nice to add org-info.js with the demo bundle.

Thank you.

-- Manish


___
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] Slides with Org

2008-08-27 Thread Wes Hardaker
 On Thu, 28 Aug 2008 00:27:41 +0200, Sebastian Rose [EMAIL PROTECTED] 
 said:

SR For REAL slides a different tool should be written (using jQuery
SR or similar).

FYI, I'd think it'd be pretty trivial to make the latex output support
latex/beamer, which does a great job producing pdf slides.
-- 
In the bathtub of history the truth is harder to hold than the soap,
 and much more difficult to find.  -- Terry Pratchett


___
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