From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Huchler Subject: backend for todo.txt format (todotxt.com) Date: Sat, 16 Jan 2016 20:59:21 +0100 Message-ID: <8760ytwb1i.fsf@jupiter.lan> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40113) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aKX0e-0000vR-Nh for emacs-orgmode@gnu.org; Sat, 16 Jan 2016 14:59:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aKX0Z-0005a6-OR for emacs-orgmode@gnu.org; Sat, 16 Jan 2016 14:59:40 -0500 Received: from plane.gmane.org ([80.91.229.3]:49108) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aKX0Z-0005a2-Hi for emacs-orgmode@gnu.org; Sat, 16 Jan 2016 14:59:35 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aKX0W-0002L1-K1 for emacs-orgmode@gnu.org; Sat, 16 Jan 2016 20:59:32 +0100 Received: from hsi-kbw-149-172-254-111.hsi13.kabel-badenwuerttemberg.de ([149.172.254.111]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 16 Jan 2016 20:59:32 +0100 Received: from stefan.huchler by hsi-kbw-149-172-254-111.hsi13.kabel-badenwuerttemberg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 16 Jan 2016 20:59:32 +0100 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 I just tried to write am backend for this todolist format: https://github.com/ginatrapani/todo.txt-cli/wiki/The-Todo.txt-Format and after a few hours with no real success I gave up. I want to first have a very simple convertion of some tasks like that: TODO foo DONE bar to: foo x bar bonus would be to ignore headline levels for now so: * Tasks ** TODO foo ** DONE bar would be ok too. There is a nice opensource android App that uses this format: https://f-droid.org/repository/browse/?fdfilter=task&fdid=nl.mpcjanssen.simpletask so it would be nice to be able to easy have a list of your tasks with you in a touchfriendly environment. I know there is mobileorg but the ui is horrible and the projekt is more or less abandoned. Maybe export/import backend is the wrong way to go, a sync or exchange feature would be better so maybe org-agenda todo export/import ability would be better? but for now a export alone would be an advancement. dont know if import or export can update/replace lines? maybe with some kind of taskid property? maybe thats stupid and I should just fork such am tool to make it understand org-mode format, but a automatic way to send stuff one way to android would be a good starting step, to test if I use that feature much. exporting to todo.txt format seemed just to be the easiest way, heck I even could write a macro to do that if nothing else is reasonable easy to do.