-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 2.0.0 Spec #11
Comments
Any progress on any of this? |
Do we really need a version?
|
I comment here because, for me, the two pending issues may have the same solution¹: creating a metadata header:
¹ Oops, it’s a standards proliferation variant, sorry. |
Way more important to me to get the mobile clients fixed than to add a new version to the format |
Reading through the issue texts so far, I saw of a couple of postings aiming in the same direction. So, for a broad usability of the v2.0 todo.txt file version, I would suggest the following requirements to be met (in addition to the first posting within this thread). With such a set of few but stable features, projects and personal management could greatly benefit:
I would think, there can be no way around an adjustment of already existing interfaces of developed APPs which use the current todo.txt file format. Especially, the following requirements would NOT be possible to meet anymore: loss-free re-creation of the todo.txt file by a specific APP
sorting of tasks with a simple / ordinary plain text editor
What do you think? (and, by the way, is there a more practical way / tool to do this requirement discussion regarding v2? Something different than a linear discussion thread?) |
@sanpii in my opinion, a MAJOR release (which is characterized by incrementing the leftmost digit of the version number) includes MAJOR changes like "interface changes" or "implementation language changes". MINOR releases (incrementing the 2nd digit of the version number) include features while keeping the old interfaces. So, a good next step could be to identify "minor" and "major" features and then release a next MINOR CANDIDATE including these "minor" features. And at the same time create one MAJOR CANDIDATE including ALL the "interface changing" features in one go. Why work on two subsequent major releases and change the interface twice? Why a "quick" v2? Why not a first "v1.x" and afterwards a sophisticated "v2.0"? These major version changes should be thought through very deeply, as they have the potential to spoil the entire project. I'd like to find a way of keeping the initial file format rules for todo.txt as much as possible while enhancing flexibility. What do you think? |
Sounds great 😃 |
We were discussing in sanpii/todo-txt#5, and there seems to be an issue about URLs and tags in the current specification. Should We discussed a few possible changes (@sanpii, @Nadrieril, feel free to correct me if I missed something):
What do you think about it? Also, the question of Is there a reason why colons in the value aren't allowed? I can see the reason for forbidding them in the tag name (it would cause an ambiguous grammar otherwise), but I can see value in colons in the value, as shown by the example above. Did I miss the point of this ban? |
IMHO todo.txt entries should be able to fit on 1 line; eg max length 80ish characters. I can see adding time to dates, declare file encoding since not everyone speaks English, maybe adding 1-2 currently often used tags. But if all the other additions need to be made, perhaps JSON would be a better format? There is already great tooling available (JSON Schema validation, most languages have built in parcers, etc). Seems like this project is turning into wanting to be the output of JIRA or other huge project manager, not just jotting down notes in the command prompt. (BTW, finding a JSON standard for TODO tasks is why I'm here.) |
@tomByrer What on earth.. JSON is terrible, universally and especially in this case. The todo.txt file has to be a simple human editable and readable file.. Think markdown. The todo.txt should have been just an extension of markdown for tasks; that would have been ideal. |
@tomByrer I don't think json for todos is a bad idea but this would be a totally different project ( |
@tomByrer JSON is not the most successful format, which was born by chance. |
JSON wasn't by 'chance'; it IS JavaScript. Got popular because the other option at the time was XML, which is terrible. Plan text can only hold so much info in 1 line in 'plain text' without becoming unreadable by humans. If simple text & human readability isn't a concern, then JSON or BSON or other binary format.. Otherwise, if you want to add much more than 1-2 more functions, then |
Frontend programmers started passing JS objects through the network and called it JSON. It became popular because it was supported in all browsers (unlike xml). Then this it has become standard. This is a spontaneous (accidental) emergence. I do not know how to make the file compatible with JSON and at the same time keep it easy for people to modify it (manually). And I do not see any problems with parsing the current standard. Hence JSON is not suitable. |
@heX16 sorry you seem misled https://en.wikipedia.org/wiki/JSON#History JSON is fairly easy to edit by hand, but the point of a CLI / GUI interface is to avoid any direct manual manipulation. But JSON is FAR eaiser to edit than a 200 character line with estoric markup which todo.txt v2 & v3 are becomming. @varac Yes I agree, but adding tons of extra features couteracts that simplicy. I'll try out this GoLang program that uses JSON for abit: |
I personally much rather edit (A) Say hello to {"priority":"A","text":"Say hello"} especially as JSON is that fragile (no trailing comma, never forget the quotes…). Anyway, I don't say there is no place for a A |
If we want both complexity and human readability we should much rather jump to yaml, which even includes referenciation; it should even allow templating within a simple "readable" file. However "readable" and "intelligible" tags are very subjective and are not up for discussion; those only reflect familiarity with specific formats or syntaxes. Plus the extension is not up for discussion, a todo**.txt** is the clear intent of this spec. I agree with @Ekleog in that this is todo.txt; the world is open for todo.* projects to be created and those projects will most likely proliferate in the upcoming years. File encoding and versioning are the intent of this discussion, those are new to V2. A single line starting with an octothorpe would solve both things:
The omission of this line should fall back to v1 because it's the only other version in existence. Please upvote, downvote or comment in reference to those items specifically, please create new issues for other additions. |
New entity "comment" is not needed. |
I guess I am late to the party, but as for the suggestion of using JSON, maybe you should use TaskWarrior? They store your tasks in a JSON-like file and can be much more detailed than todo.txt files. I like the current spec because, as I use a bunch of Unix-like systems, it's so simple that I already have the tools for manipulating a
It doesn't even make sense. A line isn't limited to 80 chars. Of course, that's the default width for most terminals out there and it's a good practice to limit lines to 72 chars when writing e-mails and so and so, but almost every text editor can wrap lines, and, in my case, I can always use As for the encoding, I would to push in favor of UTF-8 by default, but I don't have a strong position here. Edit: fixed incomplete phrase. |
Yes, I think encoding should be UTF-8 by default: and as @andresperezcera has told a single line with an octothorpe its the best approach (vim use this for file specific settings and its awesome) |
Is there a decision on this at the horizon? My current impression is, that there are many ideas and opinions to |
For version 2.0.0 to be released, we need to complete
The text was updated successfully, but these errors were encountered: