emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Exporting Properties
@ 2008-08-25 20:42 Charlie Burrows
  2008-08-27 14:54 ` Bernt Hansen
  0 siblings, 1 reply; 3+ messages in thread
From: Charlie Burrows @ 2008-08-25 20:42 UTC (permalink / raw)
  To: emacs-orgmode

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

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

* Re: Exporting Properties
  2008-08-25 20:42 Exporting Properties Charlie Burrows
@ 2008-08-27 14:54 ` Bernt Hansen
  2008-08-27 15:57   ` Charlie Burrows
  0 siblings, 1 reply; 3+ messages in thread
From: Bernt Hansen @ 2008-08-27 14:54 UTC (permalink / raw)
  To: Charlie Burrows; +Cc: emacs-orgmode

"Charlie Burrows" <charlie.burrows@gmail.com> 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

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

* Re: Exporting Properties
  2008-08-27 14:54 ` Bernt Hansen
@ 2008-08-27 15:57   ` Charlie Burrows
  0 siblings, 0 replies; 3+ messages in thread
From: Charlie Burrows @ 2008-08-27 15:57 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

On Wed, Aug 27, 2008 at 10:54 AM, Bernt Hansen <bernt@norang.ca> wrote:
> "Charlie Burrows" <charlie.burrows@gmail.com> 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

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

end of thread, other threads:[~2008-08-27 15:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-25 20:42 Exporting Properties Charlie Burrows
2008-08-27 14:54 ` Bernt Hansen
2008-08-27 15:57   ` Charlie Burrows

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