From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Morgan Subject: Item scheduled in agenda based on Org player link's start time Date: Sat, 24 May 2014 18:36:09 +0200 Message-ID: <87ppj3rv5y.fsf@azha.ziiuu.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53192) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WodEz-0002X1-6L for emacs-orgmode@gnu.org; Sun, 25 May 2014 14:33:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WodEp-000113-Ab for emacs-orgmode@gnu.org; Sun, 25 May 2014 14:33:49 -0400 Received: from mail-qc0-f179.google.com ([209.85.216.179]:49550) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WodEp-00010z-6a for emacs-orgmode@gnu.org; Sun, 25 May 2014 14:33:39 -0400 Received: by mail-qc0-f179.google.com with SMTP id r5so2559551qcx.10 for ; Sun, 25 May 2014 11:33:38 -0700 (PDT) Received: from azha.ziiuu.com (cpe-68-173-37-126.nyc.res.rr.com. [68.173.37.126]) by mx.google.com with ESMTPSA id o3sm16114757qas.0.2014.05.25.11.33.37 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 25 May 2014 11:33:38 -0700 (PDT) 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 --=-=-= Content-Type: text/plain Dear Org mode hackers, This is a recipe for a bug involving Org player, though the bug might be in Org mode itself. 1. Start Emacs with `emacs -Q -l setup.el'. This opens the day agenda, which looks like this. ,---- | Day-agenda (W21): | Friday 23 May 2014 | test-case: 1:23...... Scheduled: TODO Buckle my shoe | 8:00...... ---------------- | 10:00...... ---------------- | 12:00...... ---------------- | 14:00...... ---------------- | 14:12...... now - - - - - - - - - - - - - - - - - - - - - - - - - | 16:00...... ---------------- | 18:00...... ---------------- | 20:00...... ---------------- `---- I did not expect the TODO item to be scheduled for 1:23am. That time is part of the link and is intended for Org player's use. The text of the TODO item is this: ,---- | Buckle my [[file://shoe.ogg::1:23][shoe]] `---- This is the format Org player uses to specify where in the media file to start playback. From `org-player.el': ,---- | ;;; Links can also specify track positions. When a link contains a track | ;;; position, playback will start at that position in the track. For example: | ;;; | ;;; [[file:/path/to/song.mp3::2:43]] Starts playback at 2 min 43 sec. `---- Best, Thomas --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=setup.el Content-Transfer-Encoding: quoted-printable (add-to-list 'load-path "/src/org-mode/lisp") (require 'org) (add-to-list 'load-path "/src/bongo") (add-to-list 'load-path "/src/org-player") (require 'org-player) (setq org-agenda-files '("test-case.org")) (org-agenda-list 1) --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=test-case.org * TODO Buckle my [[file://shoe.ogg::1:23][shoe]] SCHEDULED: <2014-05-23 Fri> --=-=-=--