notmuch/bindings/python/docs/source
Daniel Kahn Gillmor b10ce6bc23 database: add n_d_index_file (deprecates n_d_add_message)
We need a way to pass parameters to the indexing functionality on the
first index, not just on reindexing.  The obvious place is in
notmuch_database_add_message.  But since modifying the argument list
would break both API and ABI, we needed a new name.

I considered notmuch_database_add_message_with_params(), but the
functionality we're talking about doesn't always add a message.  It
tries to index a specific file, possibly adding a message, but
possibly doing other things, like adding terms to an existing message,
or failing to deal with message objects entirely (e.g. because the
file didn't contain a message).

So i chose the function name notmuch_database_index_file.

I confess i'm a little concerned about confusing future notmuch
developers with the new name, since we already have a private
_notmuch_message_index_file function, and the two do rather different
things.  But i think the added clarity for people linking against the
future libnotmuch and the capacity for using index parameters makes
this a worthwhile tradeoff.  (that said, if anyone has another name
that they strongly prefer, i'd be happy to go with it)

This changeset also adjusts the tests so that we test whether the new,
preferred function returns bad values (since the deprecated function
just calls the new one).

We can keep the deprecated n_d_add_message function around as long as
we like, but at the next place where we're forced to break API or ABI
we can probably choose to drop the name relatively safely.

NOTE: there is probably more cleanup to do in the ruby and go bindings
to complete the deprecation directly.  I don't know those languages
well enough to attempt a fix; i don't know how to test them; and i
don't know the culture around those languages about API additions or
deprecations.
2017-08-23 07:38:37 -03:00
..
conf.py Unset html_static_path in Python bindings docs 2014-05-28 09:46:02 -03:00
database.rst database: add n_d_index_file (deprecates n_d_add_message) 2017-08-23 07:38:37 -03:00
filesystem.rst python: Remove {Filenames,Threads}.__len__ 2016-01-08 13:58:33 +01:00
index.rst Use https instead of http where possible 2016-06-05 08:32:17 -03:00
message.rst python: remove format_message_as_{json,text} from the sphinx docs 2012-05-16 16:57:45 +02:00
messages.rst python: split the documentation 2012-02-24 01:55:33 +01:00
notes.rst python: move the notmuch module section to notes.rst 2012-02-24 01:30:04 +01:00
query.rst Fix orthography 2017-07-18 06:50:44 -03:00
quickstart.rst python: move the usage example to quickstart.rst 2012-02-24 01:18:54 +01:00
status_and_errors.rst python: add new errors 2016-01-08 13:58:33 +01:00
tags.rst python: split the documentation 2012-02-24 01:55:33 +01:00
thread.rst python: split the documentation 2012-02-24 01:55:33 +01:00
threads.rst python: Remove {Filenames,Threads}.__len__ 2016-01-08 13:58:33 +01:00