Re: [Orgmode] custom link type for files in a git repo

2008-10-07 Thread Jason F. McBrayer
Ian Barton [EMAIL PROTECTED] writes:

 Now that org and git are starting to be used in conjunction by more and
 more of us, would anyone else find it useful to have a custom link type
 for linking to git objects?

 Absolutely!!  git is my new favourite tool, and being able to combine
 org-mode and git in a usable workflow would be a great idea!

 Without wishing to start a VCS war, it would be nice if any org
 interface was as tool agnostic as possible. I use bzr, mainly because
 I use Ubuntu and it's what Canonical use. I am sure there are other
 people who use Hg, etc.

Since emacs already abstracts basic VCS functionality through its vc
interface, it would be nice if any org-vcs integration would use that.
I use three vc systems on a regular basis (svn at work, hg for my own
projects, and git for other peoples' projects that I track).

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


___
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: restarting emacs always advisable for upgrade?

2008-10-07 Thread Russell Adams
Emacs truly is an OS when its uptime becomes an issue. ;]

On Tue, Oct 07, 2008 at 10:55:45AM +0200, Paul R wrote:
 Samuel Is it safe to load all .elc files in org as a way of not
 Samuel restarting emacs? Thanks.
 
 I suppose you can (unload-feature 'org), then upgrade, then 
 (require 'org), but I have not tested. Just try and report :)
 
 -- 
   Paul
 
 
 ___
 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
 


--
Russell Adams[EMAIL PROTECTED]

PGP Key ID: 0x1160DCB3   http://www.adamsinfoserv.com/

Fingerprint:1723 D8CA 4280 1EC9 557F  66E8 1154 E018 1160 DCB3


___
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: restarting emacs always advisable for upgrade?

2008-10-07 Thread Paul R
Samuel Is it safe to load all .elc files in org as a way of not
Samuel restarting emacs? Thanks.

I suppose you can (unload-feature 'org), then upgrade, then 
(require 'org), but I have not tested. Just try and report :)

-- 
  Paul


___
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] [PATCH] Fix documentation typos and grammar

2008-10-07 Thread Bernt Hansen

---

I read the new attachment feature documentation this morning and noted a
few corrections so here they are.

-Bernt

 doc/org.texi |   12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/doc/org.texi b/doc/org.texi
index 0db32de..c4a1c6b 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -5170,14 +5170,14 @@ source code files belonging to a project.  However, you 
may also have files
 that only belong to a given project and that you would like to store in a
 directory belonging to an outline node.
 
-Org allows to associate an arbitary number of files with each indivdual task.
-These files are moved to special directories named by the unique ID of each
-entry.  These directories are located in the @file{data} directory which
+Org allows you to associate an arbitary number of files with each individual
+task.  These files are moved to special directories named by the unique ID of
+each entry.  These directories are located in the @file{data} directory which
 lives in the same directory where your org-file [EMAIL PROTECTED] you move
 entries or Org-files from one directory to the next, you may want to
 configure @code{org-attach-directory} to contain an absolute path.}.  If you
-initilize this directory with @code{git-init}, Org will automaically commit
-changes when it see them.  The attachment system has been contributed to Org
+initialize this directory with @code{git-init}, Org will automatically commit
+changes when it sees them.  The attachment system has been contributed to Org
 by John Wiegley.
 
 The following commands deal with attachments.
@@ -5232,7 +5232,7 @@ dired and delete from there.
 @chapter Agenda Views
 @cindex agenda views
 
-Due to the way Org works, TODO items, time-stamped items, and
+Due to the way Org works, TODO items, timestamped items, and
 tagged headlines can be scattered throughout a file or even a number of
 files.  To get an overview of open action items, or of events that are
 important for a particular date, this information must be collected,
-- 
1.6.0.2.443.g52e83



___
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: restarting emacs always advisable for upgrade?

2008-10-07 Thread Bernt Hansen
Paul R [EMAIL PROTECTED] writes:

 Samuel Is it safe to load all .elc files in org as a way of not
 Samuel restarting emacs? Thanks.

 I suppose you can (unload-feature 'org), then upgrade, then 
 (require 'org), but I have not tested. Just try and report :)

I update org from the git repository regularly.  I have a function
org-reload-org that reloads the new sources as described here:

http://orgmode.org/worg/org-hacks.php#sec-6

I don't unload first, I just update the sources, then M-x org-reload-org
and move on with my day.

-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] [PATCH] Fix documentation typos and grammar

2008-10-07 Thread Bernt Hansen
Carsten Dominik [EMAIL PROTECTED] writes:

 Hi Bernt,

 thanks a lot, I will fix these.  But it is a bit early, the attachment
 documentation is still changing.  Maybe take another look after the
 6.09 release?

 Thanks.

Sure thing :)

-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] Re: How to use FILETAGS?

2008-10-07 Thread Carsten Dominik


On Oct 7, 2008, at 7:30 PM, Manish wrote:


 On Tue, Oct 7, 2008 at 9:58 PM, Carsten Dominik wrote:

Hi Manish,

On Oct 7, 2008, at 5:06 PM, Manish wrote:


On Sun, Oct 5, 2008 at 5:26 PM, Manish wrote:


Hello All,

I have set a #+FILETAGS: :Personal: in my org file (did a C-c C-c
to initilalize it.)  The tag did not appear in the agenda view  
like I
expected it to.  I was hoping to use agenda view filtering on  
tags to

see a subset of tasks with that tag (without having to set that for
all tasks.)  What else do I need to do for it to work?



Okay.  I think I realize my mistake now.

The FILETAGS are NOT meant to be displayed and hence can not be used
for filtering items in agenda view.  They are meant to be matched
while creating agenda only.


No.  They are used when the agenda is created, and they are stored  
in a text
property on the entry.  If you press T, you should see all the  
tags of an
entry.  I just tested it, and it works fine, including filtering,  
which acts

on the text-property tags, not only on the displayed tags.

Maybe you have turned off tag inheritance?  Because file tags are
*inherited* by all entries in the buffer.


T does show the tags, inheritance is enabled for those specific tags
listed in FILETAGS only but am unable to make filtering work.


This absolutely does work for me, also with non-top-level entries.

Could someone else please check?




I also haven't seen those tags being added to property of items!  I am
guessing this property is added to only top-level items.


That is right, the TAGS property (I guess you mean in column view???)  
only

shows the local tags.

- Carsten



___
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


n810.... Re: [Orgmode] Re: Any iPhone devellopers here

2008-10-07 Thread Daniel M German

 Jeff So I had started to write a translator for OrgMode to OmniFocus on the
 Jeff iPhone, but I never got the WebDAV updates to function properly, and
 Jeff it didn't sync back (OF - Org).  This made it basically unusable and
 Jeff not so hot.

 Jeff If you jailbreak your phone, you can probably get a lot further on
 Jeff this project, as you can run any compiled executable that you bless
 Jeff with `ldid -S filename`.  I'm not sure if anyone has tried compiling
 Jeff emacs on the iPhone, but I imagine that would be quite a feat in it's
 Jeff self.  Though it's probably the only way to leverage all your org-mode
 Jeff elisp.  If you could settle for some subset, you could probably
 Jeff rewrite what you needed in Obj-C.

 Jeff Any ideas you have for this I'd appreciate hearing about as well.


I know this is totally off-topic, but related.

I recently got a N810. The keyboard makes Emacs very usable. I now
have org in it and it is great. I use subversion to syncronize
devices. 

One think I really like is remember mode in it. It is way better to
take notes in remember than in any note taking app.

--dmg




-- 
--
Daniel M. German  
http://turingmachine.org/
http://silvernegative.com/
dmg (at) uvic (dot) ca
replace (at) with @ and (dot) with .


___
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