aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse-time-string/README
diff options
context:
space:
mode:
authorGravatar Jani Nikula <jani@nikula.org>2012-10-30 22:32:33 +0200
committerGravatar David Bremner <bremner@debian.org>2012-10-31 16:42:29 -0300
commitd86522637a7cd0455c127284ebccf3645d681441 (patch)
tree4ce528a6a9ccf26d748ef4805d697ba5cb85c313 /parse-time-string/README
parentc158201ee217740cb1b64858df8c7d39cf7793d0 (diff)
parse-time-string: add a date/time parser to notmuch
Add a date/time parser to notmuch, to be used for adding date range query support for notmuch lib later on. Add the parser to a directory of its own to make it independent of the rest of the notmuch code base. Signed-off-by: Jani Nikula <jani@nikula.org>
Diffstat (limited to 'parse-time-string/README')
-rw-r--r--parse-time-string/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/parse-time-string/README b/parse-time-string/README
new file mode 100644
index 00000000..300ff1fb
--- /dev/null
+++ b/parse-time-string/README
@@ -0,0 +1,9 @@
+PARSE TIME STRING
+=================
+
+parse_time_string() is a date/time parser originally written for
+notmuch by Jani Nikula <jani@nikula.org>. However, there is nothing
+notmuch specific in it, and it should be kept reusable for other
+projects, and ready to be packaged on its own as needed. Please do not
+add dependencies on or references to anything notmuch specific. The
+parser should only depend on the C library.