From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: [Accepted] org mobile - pre hooks Date: Fri, 15 Apr 2011 13:53:22 +0200 (CEST) Message-ID: <20110415115322.5E550412AFC@u016822.science.uva.nl> References: <87tyfhf6gr.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAiBM-00074L-2a for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 08:31:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAiBJ-0007LG-W0 for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 08:31:28 -0400 Received: from u016822.science.uva.nl ([146.50.39.34]:52997) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAiBJ-0007Ks-Om for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 08:31:25 -0400 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 Patch 654 (http://patchwork.newartisans.com/patch/654/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C87tyfhf6gr.fsf%40gnu.org%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [O] org mobile - pre hooks > Date: Sun, 06 Mar 2011 04:17:08 -0000 > From: Bastien Guerry > X-Patchwork-Id: 654 > Message-Id: <87tyfhf6gr.fsf@gnu.org> > To: Richard Riley > Cc: Emacs-orgmode mailing list > > Hi Richard, > > Richard Riley writes: > > > Could I suggest that org-mobile-pre-push-hook is processed at the start > > of the org-mobile-push function before the checks? That way it can be > > used to properly setup mobile e.g using auth-source for the mobile > > password. > > This trivial patch will perhaps do. I'm not using org-mobile.el so > please let me know if there are any side-effects. > > Thanks, > > > diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el > index 5471734..ffdd92c 100644 > --- a/lisp/org-mobile.el > +++ b/lisp/org-mobile.el > @@ -305,9 +305,9 @@ create all custom agenda views, for upload to the mobile phone." > (org-agenda-redo-command org-agenda-redo-command)) > (save-excursion > (save-window-excursion > + (run-hooks 'org-mobile-pre-push-hook) > (org-mobile-check-setup) > (org-mobile-prepare-file-lists) > - (run-hooks 'org-mobile-pre-push-hook) > (message "Creating agendas...") > (let ((inhibit-redisplay t)) (org-mobile-create-sumo-agenda)) > (message "Creating agendas...done") >