Displaying 4 results from an estimated 4 matches for "doccom".
Did you mean:
docco
2007 Jun 04
0
Patch to enable python bindings in absence of docs build
...------------- next part --------------
Index: python/util.i
===================================================================
--- python/util.i (revision 8794)
+++ python/util.i (working copy)
@@ -25,7 +25,9 @@
%}
/* Include the documentation comments extracted from doxygen output. */
+#ifdef DOCCOMMENTS_I_SOURCES
%include "doccomments.i"
+#endif
/* Include overrides for the documentation comments. */
%include "extracomments.i"
Index: python/Makefile.am
===================================================================
--- python/Makefile.am (revision 8794)
+++ python...
2008 Feb 28
2
Can't get xapian-core 1.05 to build under windows xp
...1.0.5\xapian-version.h.in ..\..\xapian-bindings-
1.0.5\xapian-version.h
1 file(s) copied.
if exist ..\..\xapian-bindings-1.0.5 copy win32_bindings_python.mak
..\..\xapian-bindings-1.0.5\python\Makefile
1 file(s) copied.
if not exist ..\..\xapian-bindings-1.0.5\python\doccomments.i copy
doccomments.i ..\..\xapian-bindings-1.0.5\pyt
hon
if exist ..\..\xapian-bindings-1.0.5 copy version.rc.python..\..\xapian-
bindings-1.0.5\python\version.rc
1 file(s) copied.
if exist ..\..\xapian-bindings-1.0.5 copy win32_bindings_php.mak
..\..\xapian-bindings-1....
2016 Mar 27
2
PHP5 - Query Parsing Bug
I'm replying to a very old thread (9 years ago) here
http://grokbase.com/t/xapian/xapian-discuss/072tprmr6h/php5-query-parsing-bug
So not sure if that's going to end up being more or less readable...
I have this error :
Fatal error: No matching function for overloaded 'new_Query' in
/usr/share/php/xapian.php on line 2607
Line 2607 (and surrounding) looks like this and are in
2016 Mar 27
0
PHP5 - Query Parsing Bug
...sage which says it's been fixed, you aren't hitting the
same issue, but rather a different issue which gives the same error
message.
> The error appear when trying to instanciate a new XapianQuery object
> with a query element:
>
> new XapianQuery($subquery);
Their function doccomment says $extra is an array of arrays, so
$subquery is an array. But the code fails to say what operator to use
to combine the elements in that array, so the error you're getting seems
correct to me.
Their should be something like:
$subqueries[] = new XapianQuery(XapianQuery::OP_AND, $su...