This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ | |
^[0-9][email protected]$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./runtest valgrind ./apitest -b honey -v synonym1 | |
Running test './apitest -b honey -v synonym1' under valgrind | |
==80898== Memcheck, a memory error detector | |
==80898== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. | |
==80898== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info | |
==80898== Command: /Users/jaylett/projects/xapian/build/xapian-core/tests/.libs/apitest -b honey -v synonym1 | |
==80898== | |
==80898== Syscall param msg->desc.port.name points to uninitialised byte(s) | |
==80898== at 0x100B8534A: mach_msg_trap (in /usr/lib/system/libsystem_kernel.dylib) | |
==80898== by 0x100B84796: mach_msg (in /usr/lib/system/libsystem_kernel.dylib) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/xapian-applications/omega/docs/omegascript.rst b/xapian-applications/omega/docs/omegascript.rst | |
index e00d7aa7b611..942172424c81 100644 | |
--- a/xapian-applications/omega/docs/omegascript.rst | |
+++ b/xapian-applications/omega/docs/omegascript.rst | |
@@ -221,7 +221,7 @@ $fmt | |
$freq{term} | |
frequency of a term | |
-$highlight{TEXT,LIST,[OPEN,[CLOSE]]} | |
+$highlight{TEXT,LIST[,OPEN[,CLOSE]]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import xapian | |
if len(sys.argv) == 0: | |
queries = [ 'tag:new tag:lsc' ] | |
else: | |
queries = list(sys.argv) | |
qp = xapian.QueryParser() | |
qp.add_prefix("tag", "K") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/xapian-bindings/python/Makefile.am b/xapian-bindings/python/Makefile.am | |
index d811801..dae7e10 100644 | |
--- a/xapian-bindings/python/Makefile.am | |
+++ b/xapian-bindings/python/Makefile.am | |
@@ -72,15 +72,22 @@ _xapian_la_LIBADD = $(XAPIAN_LIBS) $(PYTHON2_LIBS) | |
# as a package. | |
xapian/__init__.py: xapian.py | |
$(MKDIR_P) xapian | |
- cp `test -f xapian.py || echo '$(srcdir)/'`xapian.py xapian/__init__.py | |
+ sed "s/mname = .*/mname = 'xapian._xapian'/" < `test -f xapian.py || echo '$(srcdir)/'`xapian.py > xapian/__init__.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/xapian-bindings/python3/Makefile.am b/xapian-bindings/python3/Makef | |
ile.am | |
index 2301658..edc7031 100644 | |
--- a/xapian-bindings/python3/Makefile.am | |
+++ b/xapian-bindings/python3/Makefile.am | |
@@ -45,8 +45,11 @@ pkgpylibdir = @PYTHON3_LIB@/xapian | |
# Install as _DATA rather than _SCRIPTS because we don't want to make these | |
# executable (they don't have a #! line). | |
pkgpylib_DATA = xapian/__init__.py \ | |
+ xapian/loader.py \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
orestes:xapian jaylett$ R CMD build RXapian | |
* checking for file ‘RXapian/DESCRIPTION’ ... OK | |
* preparing ‘RXapian’: | |
* checking DESCRIPTION meta-information ... OK | |
* cleaning src | |
* installing the package to process help pages | |
----------------------------------- | |
* installing *source* package ‘RXapian’ ... | |
checking for xapian-config-1.3... /usr/local/bin/xapian-config-1.3 | |
configure: creating ./config.status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
Language: Cpp | |
# BasedOnStyle: WebKit | |
AccessModifierOffset: -2 | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: false | |
AlignConsecutiveDeclarations: false | |
AlignEscapedNewlinesLeft: false | |
AlignOperands: true | |
AlignTrailingComments: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile b/Makefile | |
index b56426c..cd58544 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -5,7 +5,8 @@ website_screen_sass_components = website/static/css/screen/*.scss | |
global_screen_css = global/static/css/screen.css | |
global_screen_sass = global/static/css/screen.scss | |
global_screen_sass_components = global/static/css/*.scss | |
-PYTHON ?= ./ENV/bin/python | |
+PYTHON ?= ./ENV/bin/python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: firewall | |
# Required-Start: $local_fs $syslog $time networking | |
# Required-Stop: $local_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start firewall. | |
### END INIT INFO |
NewerOlder