debian/0000755000000000000000000000000012115376674007202 5ustar debian/menu0000644000000000000000000000016311201543606010053 0ustar ?package(pinot):needs="X11" \ section="Applications/File Management" \ title="Pinot" \ command="/usr/bin/pinot" debian/patches/0000755000000000000000000000000011771234700010617 5ustar debian/patches/boost1.48.patch0000644000000000000000000001102711730222270013274 0ustar Description: Include old boost header singleton.hpp The software used a detail header that was obsoleted and removed in Boost 1.48. This patch incorporates the header singleton.hpp from Boost 1.47. Bug-Debian: #652786 Author: Tobias Frost Reviewed-By: Steve Robbins --- a/Utils/Memory.h +++ b/Utils/Memory.h @@ -15,6 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "boost_singleton.hpp" #ifndef _MEMORY_H #define _MEMORY_H --- /dev/null +++ b/Utils/boost_singleton.hpp @@ -0,0 +1,108 @@ +// Copyright (C) 2000 Stephen Cleary +// +// Distributed under the Boost Software License, Version 1.0. (See +// accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) +// +// See http://www.boost.org for updates, documentation, and revision history. + +#ifndef BOOST_POOL_SINGLETON_HPP +#define BOOST_POOL_SINGLETON_HPP + +// The following code might be put into some Boost.Config header in a later revision +#ifdef __BORLANDC__ +# pragma option push -w-inl +#endif + +// +// The following helper classes are placeholders for a generic "singleton" +// class. The classes below support usage of singletons, including use in +// program startup/shutdown code, AS LONG AS there is only one thread +// running before main() begins, and only one thread running after main() +// exits. +// +// This class is also limited in that it can only provide singleton usage for +// classes with default constructors. +// + +// The design of this class is somewhat twisted, but can be followed by the +// calling inheritance. Let us assume that there is some user code that +// calls "singleton_default::instance()". The following (convoluted) +// sequence ensures that the same function will be called before main(): +// instance() contains a call to create_object.do_nothing() +// Thus, object_creator is implicitly instantiated, and create_object +// must exist. +// Since create_object is a static member, its constructor must be +// called before main(). +// The constructor contains a call to instance(), thus ensuring that +// instance() will be called before main(). +// The first time instance() is called (i.e., before main()) is the +// latest point in program execution where the object of type T +// can be created. +// Thus, any call to instance() will auto-magically result in a call to +// instance() before main(), unless already present. +// Furthermore, since the instance() function contains the object, instead +// of the singleton_default class containing a static instance of the +// object, that object is guaranteed to be constructed (at the latest) in +// the first call to instance(). This permits calls to instance() from +// static code, even if that code is called before the file-scope objects +// in this file have been initialized. + +namespace boost { + +namespace details { +namespace pool { + +// T must be: no-throw default constructible and no-throw destructible +template +struct singleton_default +{ + private: + struct object_creator + { + // This constructor does nothing more than ensure that instance() + // is called before main() begins, thus creating the static + // T object before multithreading race issues can come up. + object_creator() { singleton_default::instance(); } + inline void do_nothing() const { } + }; + static object_creator create_object; + + singleton_default(); + + public: + typedef T object_type; + + // If, at any point (in user code), singleton_default::instance() + // is called, then the following function is instantiated. + static object_type & instance() + { + // This is the object that we return a reference to. + // It is guaranteed to be created before main() begins because of + // the next line. + static object_type obj; + + // The following line does nothing else than force the instantiation + // of singleton_default::create_object, whose constructor is + // called before main() begins. + create_object.do_nothing(); + + return obj; + } +}; +template +typename singleton_default::object_creator +singleton_default::create_object; + +} // namespace pool +} // namespace details + +} // namespace boost + +// The following code might be put into some Boost.Config header in a later revision +#ifdef __BORLANDC__ +# pragma option pop +#endif + +#endif + debian/patches/series0000644000000000000000000000002011771234700012024 0ustar boost1.48.patch debian/control0000644000000000000000000000270612115376501010577 0ustar Source: pinot Section: x11 Priority: optional Maintainer: Jonas Smedegaard Build-Depends: cdbs, dh-autoreconf, autotools-dev, devscripts, debhelper, dh-buildinfo, libcurl4-openssl-dev, libxapian-dev, libboost-dev, libexttextcat-dev, libtag1-dev, libsqlite3-dev, libxml++2.6-dev, libdbus-glib-1-dev, libsigc++-2.0-dev, libglib2.0-dev, libssl-dev, libglibmm-2.4-dev, libgtkmm-2.4-dev, libattr1-dev, libgmime-2.6-dev | libgmime-2.4-dev, libexiv2-dev (>= 0.18~), shared-mime-info, desktop-file-utils Build-Conflicts: libtextcat-dev Standards-Version: 3.9.4 Homepage: http://code.google.com/p/pinot-search/ Vcs-Git: git://anonscm.debian.org/git/collab-maint/pinot.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/pinot.git Package: pinot Architecture: any Depends: ${cdbs:Depends}, ${misc:Depends}, ${shlibs:Depends} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Description: meta-search engine for local files and web queries Pinot provides a D-Bus service that crawls, indexes your documents and monitors them for changes. This service can then be used via a command-line interface, or through a GTK-based GUI that enables to query the index built by the service and your favourite Web engines, and display and analyze the results. . Pinot also provides a Xesam interface, which can be used through Xesam Query Language and Xesam User Language. . To crawl rpm files, install the packages rpm and file. debian/source/0000755000000000000000000000000011643561662010500 5ustar debian/source/format0000644000000000000000000000001411276536300011677 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000002600712115376547011060 0ustar pinot (1.05-1) unstable; urgency=low [ upstream ] * New release: + run rst2html on RST files, if available, and if RST files are detected as such. + better mbox parts extraction. + dropped unac in favour of own code, resulting in faster indexing. + pinot-index --override MIMETYPE:EXTENSION overrides MIME type detection based on files extensions. + turn memory pooling off by default to avoid issues with newer boost. + Updated localizations. + fix stripping of diacritics. + stem subject terms. + fixes to abstract generation, CJKV tokenization. [ Jonas Smedegaard ] * Update package relations: + Recommend (not suggest) all external helper tools, except rpm. + Fix suggest file (needed to crawl rpm files). + Recommend python-docutils and bzip2. + Relax to build-depend unversioned on cdbs: Needed version satisfied in stable, and oldstable no longer supported. + Stop fallback-recommending xpdf-utils: obsolete even in stable. + Declare binary package relations in rules file. + Document suggested packages in long description. * Bump dephelper compatibility level to 8. * Bump standards-version to 3.9.4. * Use anonscm.debian.org URL for control file Vcs-Git field. * Update copyright file: Fix use comment pseudo-paragraphs to obey silly restrictions of copyright format 1.0. * Update copyright file: + Update copyright holders and coverage. + Fix merge double copyright fields. -- Jonas Smedegaard Tue, 05 Mar 2013 15:12:54 +0100 pinot (1.0-1) unstable; urgency=low * New upstream release * Drop patch to link against libexttextcat: Adopted upstream. * Stop stripping deskbar-applet: Dropped upstream. * Relax build-dependency on libexiv2-dev. * Extend some copyright coverage, and update email of main author. * Extend copyright coverage of packaging. -- Jonas Smedegaard Sat, 23 Jun 2012 05:49:23 +0200 pinot (0.98-2) unstable; urgency=low [ Rene Engelhard ] * Add patch to actually link with -lexttextcat (not -ltextcat). * Build-depend on libexttextcat-dev (not libtextcat-dev), and build-conflicts against libtextcat-dev. [ Jonas Smedegaard ] * Readd libgmime-2.4-dev as fallback build-dependency, to ease backporting. * Bump standards-version to 3.9.3. * Refresh patches with shortening quilt options -pab --no-index --no-timestamps, and rewrap DEP3 headers at 72 chars. * Update copyright file: + Bump format to 1.0. + Fix double-indent in Copyright fields as per Policy §5.6.13. + Tidy Files paragraph of Boost patch, and list its license as separate paragraph. * Update upstream URLs. * Use anonscm.debian.org for Vcs-Browser field. * Build-depend on and use dh-autoreconf, as we patch configure.in. * Release for unstable: Recent enough exiv2 is finally released there. -- Jonas Smedegaard Sun, 06 May 2012 22:40:02 +0200 pinot (0.98-1) experimental; urgency=low * New upstream release. Closes: bug#528009, #610092. + Supports lib(ext)textcat 3. Closes: bug#644287. Thanks to Rene Engelhard. * Update copyright file: + Rewrite using Subversion rev.174 of draft DEP5 format. + Extend copyright years. + Drop referencing no longer included Google sources. + Fix mark a section as a comment (not license). * Drop dpkg-source local-options hint: Declared options are default since dpkg-source 1.16.1. * Bump debhelper compatibility level to 7. * Stop explicitly force >2TB file support: handled upstream now. * Relax to generally build-depend unversioned: All satisfied even in oldstable. * Stop suppress optional build-dependencies: + Build-depend on devscripts. + Tighten build-dependency on cdbs. * Relax depend unversioned on deskbar-applet: Satisfied even in oldstable. * Fix stop build-depending on python-support (was needed only for dropped package deskbar-plugins-pinot). * Bump policy compliance to standards-version 3.9.2. * Extend copyright years of packaging, and refer to FSF website (not postal address). * Build-depend on libexiv2-dev (and not libexif-dev). * Release for experimental (where new enough exiv2 is available). -- Jonas Smedegaard Sat, 24 Dec 2011 23:59:04 +0700 pinot (0.96-1.3) unstable; urgency=low * Non-maintainer upload with Jonas' consent. * Build against gmime 2.6. Closes: #664003 -- Michael Biebl Thu, 15 Mar 2012 14:19:54 +0100 pinot (0.96-1.2) unstable; urgency=low * Non-Maintainer Upload. * patches/boost1.48.patch: New. Include code from Boost singleton.hpp header, obsoleted in Boost 1.48. Closes: #652786. -- Steve M. Robbins Mon, 30 Jan 2012 01:11:28 -0600 pinot (0.96-1.1) unstable; urgency=low * Non-maintainer upload. * Drop deskbar-plugins-pinot package as deskbar-applet has been removed. Closes: #645542 -- Michael Biebl Tue, 18 Oct 2011 00:53:07 +0200 pinot (0.96-1) unstable; urgency=low * New upstream release. * Use only official CDBS (drop local snippets): All improvements now adopted upstream. * Declare package relations recursively-expanded. * Drop all patches: Adopted upstream. * Ease building with git-buildpackage: + Git-ignore quilt .pc dir. + Add source local-options. * Extend years in licensing header of rules file. * Update copyright file: + Rewrite in draft DEP5 v135 format. + Update copyright years. * Ease backporting: + Only optionally-include upstream-tarball.mk. + Suppress optional build-dependencies. * Relax build-dependency on cdbs (needed version available in stable). * Build-depend on libattr1-dev for extended attributes support. * Stop build-depending on unused gsoap. * Bump standards-version to 3.9.1. -- Jonas Smedegaard Wed, 15 Dec 2010 17:29:51 +0100 pinot (0.95-1) unstable; urgency=low * New upstream release. * Add NEWS entry about possible need of reindexing (as mentioned in upstream NEWS file). * Update local cdbs snippets: + Enhance package-relations.mk to support all binary package relations (except -indep ones). + Implement fail-source-not-repackaged rule in upstream-tarball.mk. + Update URL to draft DEP5 format in copyright-check.mk output. * Switch to source format 3.0 (quilt). Drop use of cdbs snippet patchsystem-quilt.mk. Stop build-depending on quilt or patchutils. Adjust README.source. * Restructure patches to DEP3 format: Adjust meta-info; drop leading numbers and README, unfuzz. * Bump policy compliancy to Standards Version 3.8.3. -- Jonas Smedegaard Sat, 14 Nov 2009 12:54:20 +0100 pinot (0.94-1) unstable; urgency=low * New upstream release. * Drop unneeded DM-Upload-Allowed stanza from debian/control. * Simplify watch file (directly use download.berlios.net), and add comment hinting about its use. * Enable local CDBS script upstream-tarball.mk. * Build-depend on libgmime-2.4-dev (and not libgmime-2.0-2-dev). * Tighten build-dependency on cdbs. * Drop use of noop dh_desktop, thanks to lintian. * Bump policy compliance to Standards-Verstrol.in.1, thanks to lintian. -- Jonas Smedegaard Sun, 28 Jun 2009 19:31:24 +0200 pinot (0.93-3) unstable; urgency=low * Define FILE_OFFSET_BITS=64 in CPPFLAGS (not CFLAGS). Closes: bug#530572 (hopefully for real this time). -- Jonas Smedegaard Sat, 13 Jun 2009 23:50:54 +0200 pinot (0.93-2) unstable; urgency=low * Define FILE_OFFSET_BITS=64 in CFLAGS to fix >2TB file support. Closes: bug#530572, thanks to Fabrice Colin. * Add proper licensing header to rules file. The file is essentially rewritten, permitting to relicense from GPL-3+ to GPL-2+. * Rewrite copyright to use DEP5 r54 proposed machine-readable format. Relax licensing of debian/* files. * Use local cdbs copyright-check.mk. Add copyright hints. * Bump policy compliancy to Standards Version 3.8.1. * Add symbolic link pinot-prefs.1.gz to pinot.1.gz, thanks to lintian. * Ignore private libraries, thanks to lintian. -- Jonas Smedegaard Sun, 07 Jun 2009 19:24:23 +0200 pinot (0.93-1) unstable; urgency=low [ David Paleino ] * New upstream release * debian/patches/: - 00-fix_ltmain.sh.patch refreshed - 01-fix_desktop_files.patch removed - series updated [ Jonas Smedegaard ] * Adopt package. Closes: bug#513940. * Add README.source documenting use of git-buildpackage and CDBS. * Package now Git-maintained: Update Vcs-* hints. * Renumber patch. * Resolve build-dependencies using CDBS, declared in debian/rules. * Use CDBS snippets for patch, build and install routines. * Add patch 1002 fixing FTBFS (include som headers). Closes: bug#527676, thanks to Bart Martens. -- Jonas Smedegaard Mon, 25 May 2009 01:13:07 +0200 pinot (0.90-1) experimental; urgency=low * Orphaning package * New upstream release * debian/patches/: - 01-fix_gcc4.4.patch removed, fixed upstream - 01-fix_desktop_files.patch added, remove deprecated Encoding field -- David Paleino Mon, 02 Feb 2009 22:01:04 +0100 pinot (0.89-1) experimental; urgency=low * New upstream release * DM-Upload-Allowed set * debian/patches/: - 01-fix_gcc4.4.patch added, thanks to Martin Michlmayr (Closes: #504908) * debian/control: - Standards-Version bumped to 3.8.0 (no changes needed) - debhelper dependency bumped to >= 6.0.7~ (debian/compat updated) * debian/pinot.lintian-overrides added (the empty stopwords directory is intended) * debian/rules: - added dh_lintian to binary target -- David Paleino Sat, 08 Nov 2008 14:35:29 +0100 pinot (0.85-1) unstable; urgency=low * New upstream release * debian/patches/: - 01-fix_m4_inclusion.patch removed, applied upstream. * debian/control: - added Build-Depends on libexif-dev (>= 0.6) -- David Paleino Sat, 24 May 2008 11:15:42 +0200 pinot (0.84-1) unstable; urgency=low * New upstream release * debian/patches/: - 01-fix_linux-inotify-syscalls.h.patch removed, merged upstream. - 01-fix_m4_inclusion.patch added, to fix possible "Fail to build Twice in a Row" bug -- David Paleino Sat, 29 Mar 2008 17:54:14 +0100 pinot (0.83-2) unstable; urgency=low * debian/patches: - 01-fix_linux-inotify-syscalls.h added (thanks to Michael Biebl): it should build on m68k, mips, mipsel and hppa now. -- David Paleino Fri, 14 Mar 2008 20:19:26 +0100 pinot (0.83-1) unstable; urgency=low * New upstream release * debian/control: - short description for "pinot" improved: now it specifies that pinot can do web queries as well. * debian/patches: - 01-fix_pinot.desktop.patch removed (merged upstream) -- David Paleino Sat, 01 Mar 2008 18:58:14 +0100 pinot (0.82-1) unstable; urgency=low * Initial release (Closes: #446517) -- David Paleino Thu, 21 Feb 2008 09:09:44 +0100 debian/README.source0000644000000000000000000000361311277512620011353 0ustar Building this package for Debian -------------------------------- This source package need no special handling for normal package builds. Developing this package for Debian ---------------------------------- The source of this package is developed using git and the helper tool git-buildpackage, with all official releases tagged and signed and binary diffs of tarballs stored using pristine-tar. This is documented below /usr/share/doc/git-buildpackage/manual-html/ . A custom build target shows current upstream and packaging versions: debian/rules print-version Current upstream tarball can be prepared using this other build target: debian/rules get-orig-source To switch to newer upstream source, first add a dummy changelog entry and comment out DEB_UPSTREAM_TARBALL_MD5 before getting the source: dch -v ${new_upstream_version}-1 "Dummy changelog entry" sed -i -e 's/^\(DEB_UPSTREAM_TARBALL_MD5\b\)/#\1/' debian/rules debian/rules get-orig-source Store new md5sum to help ensure identical source is received later. Setting DEB_MAINTAINER_MODE=1 enables additional build routines helpful during development of the package, but unfit for normal builds. This typically includes the CDBS feature of auto-updating debian/control with CDBS-related build-dependencies, which is forbidden by Debian Policy as build environment must not change during automated builds. Maintaining packaging build routines ------------------------------------ This source package wraps debhelper commands and other tedious parts of the build routines using the CDBS framework. Please refer to the actual makefile snippets included from debian/rules for details on their purpose and ways to override defaults. Additionally, makefile snippets included from below /usr/share/cdbs may also be documented in /usr/share/doc/cdbs/cdbs-doc.pdf.gz . -- Jonas Smedegaard Thu, 26 Feb 2009 21:28:29 +0100 debian/compat0000644000000000000000000000000212115337613010366 0ustar 8 debian/watch0000644000000000000000000000032411751547701010226 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 http://code.google.com/p/pinot-search/downloads/list?can=1 .*/pinot-(\d.+)\.tar\.gz #http://download.berlios.de/pinot/pinot-(.*).tar.gz debian/copyright_hints0000644000000000000000000006346312115376465012354 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: Collect/CurlDownloader.cpp Collect/CurlDownloader.h Collect/DownloaderFactory.cpp Collect/DownloaderFactory.h Collect/DownloaderInterface.cpp Collect/DownloaderInterface.h Collect/FileCollector.cpp Collect/FileCollector.h Collect/NeonDownloader.h Core/DaemonState.cpp Core/DaemonState.h Core/OnDiskHandler.cpp Core/OnDiskHandler.h Core/PinotSettings.cpp Core/PinotSettings.h Core/ServerThreads.cpp Core/ServerThreads.h Core/UniqueApplication.cpp Core/UniqueApplication.h Core/WorkerThreads.cpp Core/WorkerThreads.h Core/pinot-dbus-daemon.cpp Core/pinot-index.cpp Core/pinot-search.cpp IndexSearch/DBusIndex.cpp IndexSearch/DBusIndex.h IndexSearch/FieldMapperInterface.h IndexSearch/FilterWrapper.cpp IndexSearch/FilterWrapper.h IndexSearch/IndexInterface.h IndexSearch/ModuleFactory.cpp IndexSearch/ModuleFactory.h IndexSearch/ModuleProperties.h IndexSearch/OpenSearchParser.cpp IndexSearch/OpenSearchParser.h IndexSearch/PluginParsers.h IndexSearch/PluginWebEngine.cpp IndexSearch/PluginWebEngine.h IndexSearch/QueryProperties.cpp IndexSearch/QueryProperties.h IndexSearch/ResultsExporter.cpp IndexSearch/ResultsExporter.h IndexSearch/SearchEngineInterface.cpp IndexSearch/SearchEngineInterface.h IndexSearch/SearchPluginProperties.cpp IndexSearch/SearchPluginProperties.h IndexSearch/SherlockParser.cpp IndexSearch/SherlockParser.h IndexSearch/WebEngine.cpp IndexSearch/WebEngine.h IndexSearch/Xapian/AbstractGenerator.cpp IndexSearch/Xapian/AbstractGenerator.h IndexSearch/Xapian/LanguageDetector.cpp IndexSearch/Xapian/LanguageDetector.h IndexSearch/Xapian/ModuleExports.cpp IndexSearch/Xapian/XapianDatabase.cpp IndexSearch/Xapian/XapianDatabase.h IndexSearch/Xapian/XapianDatabaseFactory.cpp IndexSearch/Xapian/XapianDatabaseFactory.h IndexSearch/Xapian/XapianEngine.cpp IndexSearch/Xapian/XapianEngine.h IndexSearch/Xapian/XapianIndex.cpp IndexSearch/Xapian/XapianIndex.h IndexSearch/pinot-label.cpp Monitor/INotifyMonitor.cpp Monitor/INotifyMonitor.h Monitor/MonitorEvent.cpp Monitor/MonitorEvent.h Monitor/MonitorFactory.cpp Monitor/MonitorFactory.h Monitor/MonitorHandler.cpp Monitor/MonitorHandler.h Monitor/MonitorInterface.h SQL/ActionQueue.cpp SQL/ActionQueue.h SQL/CrawlHistory.cpp SQL/CrawlHistory.h SQL/MetaDataBackup.cpp SQL/MetaDataBackup.h SQL/QueryHistory.cpp SQL/QueryHistory.h SQL/SQLDB.cpp SQL/SQLDB.h SQL/SQLiteBase.cpp SQL/SQLiteBase.h SQL/ViewHistory.cpp SQL/ViewHistory.h Tokenize/FilterUtils.cpp Tokenize/FilterUtils.h Tokenize/TextConverter.cpp Tokenize/TextConverter.h Tokenize/filters/ArchiveFilter.cc Tokenize/filters/ArchiveFilter.h Tokenize/filters/ChmFilter.cc Tokenize/filters/ChmFilter.h Tokenize/filters/ExifImageFilter.h Tokenize/filters/Exiv2ImageFilter.cc Tokenize/filters/Exiv2ImageFilter.h Tokenize/filters/ExternalFilter.cc Tokenize/filters/ExternalFilter.h Tokenize/filters/FileOutputFilter.cc Tokenize/filters/FileOutputFilter.h Tokenize/filters/Filter.cc Tokenize/filters/Filter.h Tokenize/filters/FilterFactory.cc Tokenize/filters/FilterFactory.h Tokenize/filters/GMimeMboxFilter.cc Tokenize/filters/GMimeMboxFilter.h Tokenize/filters/HtmlFilter.cc Tokenize/filters/HtmlFilter.h Tokenize/filters/TagLibMusicFilter.cc Tokenize/filters/TagLibMusicFilter.h Tokenize/filters/TextFilter.cc Tokenize/filters/TextFilter.h Tokenize/filters/XmlFilter.cc Tokenize/filters/XmlFilter.h UI/GTK2/src/EnginesTree.cc UI/GTK2/src/EnginesTree.hh UI/GTK2/src/IndexPage.cc UI/GTK2/src/IndexPage.hh UI/GTK2/src/ModelColumns.cc UI/GTK2/src/ModelColumns.hh UI/GTK2/src/Notebook.cc UI/GTK2/src/Notebook.hh UI/GTK2/src/PinotUtils.cc UI/GTK2/src/PinotUtils.hh UI/GTK2/src/ResultsTree.cc UI/GTK2/src/ResultsTree.hh UI/GTK2/src/UIThreads.cc UI/GTK2/src/UIThreads.hh UI/GTK2/src/importDialog.cc UI/GTK2/src/importDialog.hh UI/GTK2/src/indexDialog.cc UI/GTK2/src/indexDialog.hh UI/GTK2/src/launcherDialog.cc UI/GTK2/src/launcherDialog.hh UI/GTK2/src/mainWindow.hh UI/GTK2/src/pinot.cc UI/GTK2/src/prefsWindow.cc UI/GTK2/src/prefsWindow.hh UI/GTK2/src/propertiesDialog.cc UI/GTK2/src/propertiesDialog.hh UI/GTK2/src/queryDialog.cc UI/GTK2/src/queryDialog.hh UI/GTK2/src/statisticsDialog.cc UI/GTK2/src/statisticsDialog.hh Utils/CommandLine.cpp Utils/CommandLine.h Utils/Document.cpp Utils/Document.h Utils/DocumentInfo.cpp Utils/DocumentInfo.h Utils/Languages.cpp Utils/Languages.h Utils/MIMEScanner.cpp Utils/MIMEScanner.h Utils/Memory.cpp Utils/Memory.h Utils/NLS.h Utils/StringManip.cpp Utils/StringManip.h Utils/TimeConverter.cpp Utils/TimeConverter.h Utils/Timer.cpp Utils/Timer.h Utils/Url.cpp Utils/Url.h Utils/Visibility.h Copyright: 2005-2006, Fabrice Colin 2005-2008, Fabrice Colin 2005-2009, Fabrice Colin 2005-2010, Fabrice Colin 2005-2011, Fabrice Colin 2005-2012, Fabrice Colin 2005-2013, Fabrice Colin 2007, Fabrice Colin 2007-2008, Fabrice Colin 2007-2009, Fabrice Colin 2007-2010, Fabrice Colin 2007-2011, Fabrice Colin 2007-2012, Fabrice Colin 2008, Fabrice Colin 2008-2009, Fabrice Colin 2008-2012, Fabrice Colin 2008-2013, Fabrice Colin 2009, Fabrice Colin 2009-2010, Fabrice Colin 2009-2011, Fabrice Colin 2011, Fabrice Colin 2011-2012, Fabrice Colin 2012-2013, Fabrice Colin License: GPL-2+ FIXME Files: ABOUT-NLS ChangeLog-dijon Collect/Makefile.am Core/Makefile.am Core/de.berlios.Pinot.service Core/de.berlios.Pinot.service.in Core/pinot-daemon.1 Core/pinot-dbus-daemon.1 Core/pinot-dbus-daemon.xml Core/pinot-index.1 Core/pinot-search.1 FAQ IndexSearch/Makefile.am IndexSearch/Plugins/AmazonAPI.src IndexSearch/Plugins/Bing.src IndexSearch/Plugins/Clusty.src IndexSearch/Plugins/Freecode.src IndexSearch/Plugins/Google.src IndexSearch/Plugins/KodersDescription.xml IndexSearch/Plugins/OmegaDescription.xml IndexSearch/Plugins/Topix.src IndexSearch/Plugins/UNData.src IndexSearch/Plugins/Wikipedia.src IndexSearch/Xapian/Makefile.am IndexSearch/pinot-label.1 Makefile.am Monitor/Makefile.am SQL/Makefile.am TODO Tokenize/Makefile.am Tokenize/filters/external-filters.xml UI/GTK2/metase-gtk2.glade UI/GTK2/metase-gtk2.gladep UI/GTK2/src/Makefile.am UI/GTK2/src/importDialog_glade.cc UI/GTK2/src/importDialog_glade.hh UI/GTK2/src/indexDialog_glade.cc UI/GTK2/src/indexDialog_glade.hh UI/GTK2/src/launcherDialog_glade.cc UI/GTK2/src/launcherDialog_glade.hh UI/GTK2/src/mainWindow_glade.cc UI/GTK2/src/mainWindow_glade.hh UI/GTK2/src/pinot.1 UI/GTK2/src/prefsWindow_glade.cc UI/GTK2/src/prefsWindow_glade.hh UI/GTK2/src/propertiesDialog_glade.cc UI/GTK2/src/propertiesDialog_glade.hh UI/GTK2/src/queryDialog_glade.cc UI/GTK2/src/queryDialog_glade.hh UI/GTK2/src/statisticsDialog_glade.cc UI/GTK2/src/statisticsDialog_glade.hh UI/GTK2/xapian-powered.png UI/icons/16x16/pinot.png UI/icons/22x22/pinot.png UI/icons/24x24/pinot.png UI/icons/32x32/pinot.png UI/icons/48x48/pinot.png Utils/Makefile.am acinclude.m4 config.h.in configure.in debian/NEWS debian/README.source debian/compat debian/control debian/control.in debian/gbp.conf debian/menu debian/patches/series debian/pinot.links debian/pinot.lintian-overrides debian/source/format debian/watch globalconfig.xml install-sh mkinstalldirs pinot-dbus-daemon.desktop pinot-prefs.desktop pinot.spec pinot.spec.in po/POTFILES.in po/de.gmo po/it.gmo po/ja.gmo po/nl.gmo po/ru.gmo po/sv.gmo po/zh_TW.gmo scripts/bash/pinot-cd.sh scripts/bash/pinot-check-file.sh scripts/bash/pinot-enum-index.sh textcat31_conf.txt textcat32_conf.txt textcat3_conf.txt textcat_conf.txt Copyright: *No copyright* License: UNKNOWN FIXME Files: Collect/Makefile.in Core/Makefile.in IndexSearch/Makefile.in IndexSearch/Xapian/Makefile.in Makefile.in Monitor/Makefile.in SQL/Makefile.in Tokenize/Makefile.in UI/GTK2/src/Makefile.in Utils/Makefile.in Copyright: 1994-2002 License: UNKNOWN FIXME Files: Utils/xdgmime/xdgmime.c Utils/xdgmime/xdgmime.h Utils/xdgmime/xdgmimeglob.c Utils/xdgmime/xdgmimeglob.h Utils/xdgmime/xdgmimeint.c Utils/xdgmime/xdgmimeint.h Utils/xdgmime/xdgmimemagic.c Utils/xdgmime/xdgmimemagic.h Copyright: 2003, Jonathan Blandford 2003, Red Hat, Inc 2003-2004, Jonathan Blandford 2003-2004, Red Hat, Inc License: LGPL-2+ FIXME Files: Utils/xdgmime/xdgmimealias.c Utils/xdgmime/xdgmimealias.h Utils/xdgmime/xdgmimeparent.c Utils/xdgmime/xdgmimeparent.h Copyright: 200 Matthias Clasen 2004, Matthias Clasen 2004, Red Hat, Inc License: LGPL-2+ FIXME Files: po/de.po po/it.po po/nl.po po/ru.po Copyright: 2006, Rosetta Contributors and Canonical Ltd 2006 License: UNKNOWN FIXME Files: Utils/boost_singleton.hpp debian/patches/boost1.48.patch Copyright: 2000, Stephen Cleary License: BSL-1.0 FIXME Files: config.guess config.sub Copyright: 1992-1999, 1992-2001 License: GPL-2+ FIXME Files: depcomp missing Copyright: 1996-1997, 1999-2000, 2002-2003, Free Software Foundation, Inc 1999-2000, 2003 Free Software Foundation, Inc License: GPL-2+ FIXME Files: IndexSearch/cjkv/CJKVTokenizer.cc IndexSearch/cjkv/CJKVTokenizer.h Copyright: 2007-2008, 林永忠 Yung-Chung Lin 2008-2013, Fabrice Colin License: LGPL-2+ FIXME Files: Utils/xdgmime/xdgmimecache.c Utils/xdgmime/xdgmimecache.h Copyright: 2005, Matthias Clasen License: LGPL-2+ FIXME Files: po/he.po po/ja.po Copyright: 2008, Rosetta Contributors and Canonical Ltd 2008 License: UNKNOWN FIXME Files: configure Copyright: (ISLOWER ? 'A' + ( - 'a') : ) (ISLOWER ? ( | 0x40) : ) 1992-1996, 1998-2001, 1996-2001, 2003-2005 2010, Free Software Foundation, Inc License: GPL-2+ FIXME Files: aclocal.m4 Copyright: 1995-2002, Free Software Foundation, Inc 1996-1997, 2000-2001, 2003, 2005, 2008 1996-2001, 2003-2005 1996-2004, 1997, 1999-2001, 2003-2005, 2008 1997, 2000-2001, 2003-2006, 2008 1999-2005, 2008 1999-2006, 2009 2001, 2003, 2005, 2008, 2011, Free Software Foundation 2001, 2003, 2005, 2011 Free Software Foundation, Inc 2001-2003, 2005, 2008, 2010 Free Software 2001-2003, 2005, 2009, Free Software Foundation, Inc 2001-2004, Red Hat, Inc 2002-2003, 2005-2008, 2011 Free Software 2003, 2005 Free Software Foundation, Inc 2003-2006, 2011 Free Software Foundation 2004, Free Software Foundation, Inc 2004, Scott James Remnant 2004-2005, 2007, 2009, Free Software Foundation, Inc 2004-2005, 2007-2008, Free Software Foundation, Inc 2004-2005, 2007-2009, Free Software Foundation 2004-2005, 2012 Free Software Foundation, Inc 2006, 2008, 2010, Free Software Foundation, Inc 2011, Free Software Foundation, Inc License: GPL-2+ FIXME Files: ltmain.sh Copyright: 1996-2001, 2003-2006 all begin with the string "--lt-" License: GPL-2+ FIXME Files: Tokenize/filters/HtmlParser.cc Copyright: 1999-2001, BrightStation PLC 2001, Ananova Ltd 2002,2006-2008, Olly Betts License: GPL-2+ FIXME Files: Tokenize/filters/HtmlParser.h Copyright: 1999-2001, BrightStation PLC 2002,2006,2008, Olly Betts License: GPL-2+ FIXME Files: UI/GTK2/src/mainWindow.cc Copyright: 2005-2013, Fabrice Colin 2005-2013, Fabrice Colin"); License: GPL-2+ FIXME Files: debian/rules Copyright: 2009-2012, Jonas Smedegaard License: GPL-2+ FIXME Files: COPYING Copyright: 1989, 1991 Free Software Foundation, Inc HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR HOLDERS AND/OR OTHER PARTIES disclaimer" for the program, if holder saying it may be distributed holder who places the Program under this License interest in the program law: the software, and year name of author License: GPL-ever FIXME Files: pinot.desktop Copyright: License: UNKNOWN FIXME Files: ChangeLog Copyright: 2000-2002, 2009 Gondim (Brazilian Portuguese) notices string to 2010, License: UNKNOWN FIXME Files: po/zh_CN.gmo Copyright: (_H)选项字节文件不存在结束档案已经被索引了已经在使用中列入黑名单结果 License: UNKNOWN FIXME Files: po/zh_CN.po Copyright: (_H)" License: UNKNOWN FIXME Files: po/es.gmo Copyright: AbiertaAbrir padreRutaPatrónPor documentoPersonalPinotPereferencias de PinotPor favor, primero configure el API de GooglePuerto:PortugusPropiedadesConsultas:ConsultaNombre de la consultaConsulta de textoLa consulta no está establecidaNombre de la consultaParámetros de consultaConsulta:SalirListoRemoverRemover una consultaRemover índice¿Remover estos documentos del índice?¿Borrar este documento del índice?ReiniciarLa META etiqueta Robots prohíbe la indexaciónRumanoEjecutando la búsquedaCorriendo bajo PIDRusoPuntuaciónMotor de búsquedaMotores de búsquedaBuscar esto para¡Buscar en la Web y en sus documentos!Servido porMostrar extractosMostrar SiguienteMostrar AnteriorMostrar todos los motores de búsquedaMostrar los resultados de la búsqueda previaMostrandoTamañoTamaño:Orden de clasificación:EspañolEstadoFrenar:DetenidoConsultas guardadasSumarioSuecoSistema en la bateríaTrminos:No hay una aplicación de ayuda definida para este tipo de documento License: UNKNOWN FIXME Files: po/es.po Copyright: 2006, Fabrice Colin, Jesús Tramullas Abierta" License: UNKNOWN FIXME Files: AUTHORS Copyright: 1999-2001, BrightStation PLC 2001, Ananova Ltd 2002,2006,2008, Olly Betts 2002,2006-2008, Olly Betts Gondim License: UNKNOWN FIXME Files: po/fr.po Copyright: 2005, Fabrice Colin de D-Bus" de mettre à jour tous les documents de Mes Pages Web" l'index" la recherche" License: UNKNOWN FIXME Files: README Copyright: 2005-2013, Fabrice Colin License: UNKNOWN FIXME Files: INSTALL Copyright: 1994-1996, 1999-2002, 2004-2005, Free License: UNKNOWN FIXME Files: po/sv.po Copyright: 2007, Free Software Foundation, Inc License: UNKNOWN FIXME Files: NEWS Copyright: Gondim License: UNKNOWN FIXME Files: po/pt_BR.po Copyright: 2006, Rosetta Contributors and Canonical Ltd 2006, recomendado" License: UNKNOWN FIXME Files: po/zh_TW.po Copyright: 2007, Rosetta Contributors and Canonical Ltd 2007 License: UNKNOWN FIXME Files: po/pt.po Copyright: 2007, Rosetta Contributors and Canonical Ltd 2007, recomendado" License: UNKNOWN FIXME Files: po/cs.po Copyright: 2012, Rosetta Contributors and Canonical Ltd 2012 dokumenty" dotazy" internetov stránky" odpovídají dotazu" odpovídají řetězci dotazu" připojení k Internetu" umístění" výsledky" výsledky:" štítky" License: UNKNOWN FIXME Files: po/Makefile.in.in Copyright: 1995-1997, Ulrich Drepper License: UNKNOWN FIXME Files: po/pinot.pot Copyright: YEAR THE PACKAGE'S HOLDER License: UNKNOWN FIXME Files: po/fr.gmo Copyright: de D-BusLe chemin du document estNe plus me prvenirHollandaisÉdit l'indexÉdit la rechercheSuggrer des termesAnglaisErreursNe pas indexer ces motifsExporterExporter La ListeExporter Les TermesIndex externeIndexation et Recherche de FichiersExtension de fichierErreur du moniteur de fichiersNom de fichierMotifs de fichier:Trouver les documents qui correspondentTrouver les documents qui correspondentFinlandaisFrançaisAllemandClef de l'API GoogleGrouper Les Rsultats ParAgent HTTP:Avec CJKVApplicationHistoriqueMes TrucsNom de MachineNom de machineHongroisIgnorer robots.txt et le META tag RobotsImporter une URLImportantEn AnglaisDans Les RsultatsDans l'URLL'indexL'index n'existe pasErreur sur l'indexChemin de l'indexNom de l'indexIndexer tous les rsultats avec l'tiquetteIndexeIndexesIndexesL'indexation est arrêteItalienÉtiquetteÉtiquettesLes tiquettes servent à classer les documents:Code langueLangue:Dernière UtilisationPlus RcentsLister le Contenu deRechercheLocalCheminChemin:Peu d'espace disque libreClasse MIMEType MIMEType MIME:Configuration proxy manuelleMoiDiversSurveillerSimilaire aDocuments similairesMes DocumentsMes Pages WebInconnueNomNom:RseauNouveauNouvelle ÉtiquetteNouveau filtre ou gamme numrique:Nouveaux rsultats:Pas d'application dfinie pour le typePas de navigateur pour ce protocolePas d'historique pourPas de moniteur de fichiers disponiblePas de rsultatsPas de moteur slectionnPas de titreAucuneNorvgienNombre de rsultats:Nouveaux rsultats seulementIndexer uniquement ces motifsOuvrir Le CacheOuvrir Le ParentCheminMotifPar documentPersonnelPinotPrfrences PinotConfigurez la clef de l'API GooglePort:PortugaisPropritsRecherches:La rechercheNom de la RechercheRechercheRecherche indfinieNom de la rechercheParamètres de la rechercheRecherche:QuitterPrêtEnleverEffacer une rechercheEnlever un indexEnlever ces documents de l'index ?Enlever ce document de l'index ?RinitialiserLe META tag Robots interdit d'indexerRoumainRecherche en coursPIDRusseScoreMoteurMoteursChercher Cela PourCherche le Web et vos documentsServi parMontrer Un ExtraitSuivantsPrcdentsMontrer tous les moteursMontrer les rsultats prcdentsMontrantTailleTaille:Trier par:EspagnolÉtatLexmisation:ArrêtRecherches sauvegardesSommaireSudoisSystème sur batterieTermes:Il n'y a pas d'application dfinie pour les documents de ce type de mettre à jour tous les documents de Mes Pages WebUtiliser cette commande pour tout autre document de ce type.VisualiseAvec L'Étiquette Nouveau_Ajouter A L'IndexÉditer_FichierAide_Optionsoctetsdocumentsn'existe pasest terminefichiersest djà indexest djà utilisest exclusdocuments,surrsultats License: UNKNOWN FIXME Files: po/cs.gmo Copyright: dokumentyNelze získat historii vyhledávačeNelze indexovat dokumentNelze otevřít adresářIndex nelze otevřítIndex nelze odstranitNelze přejmenovat indexNelze přejmenovat index, názevNelze získat dokumentNelze spustit dotaz ve vyhledávačiNekze hledat ve výsledcíchNelze zrušit indexaci dokumentůNelze aktualizovat dokumentDotaz nelze aktualizovatProchozenoProcházeníSoučasný uživatelNyní není spuštěnoDaemonDánštinaDatumMysleli jste ?Přím připojení k InternetuAdresářAdresář pro indexaciOdpojeno od D-BusUmístění dokumentu jeJiž mě nevarovatHolandštinaIndex upravenDotaz upravenPovolit navrhování termínů pro hledáníAngličtinaChybyVynechat tyto vzory při indexováníExportovatExportovat seznamExportovat termínyExterní indexIndexace a prohledávání souborůPřípona souboruChyba sledování souboruNázev souboruVzory souboru:Najít dokuemty kter odpovídají dotazuNajít dokumenty kter odpovídají řetězci dotazuFinštinaFrancouzštinaNěmčinaKlíč Google API:Seřadit výsledky podleProcházení HTTP:Má CJKVPomocná aplikaceHistorieDomácí položkyNázev hostiteleNázev hostiteleMaďarštinaIgnorovat robots.txt a META značky robotůURL importuDůležitv angličtiněVe výsledcíchv URLIndexIndex neexistujeChyba indexuIndexovan umístěníNázev indexuIndexovat výsledky pomocí štítkuIndexovánoIndexyIndexováníIndexace byla zastavenaItalštinaštítekŠtítkyŠtítky jsou používány pro zařazení indexovaných dokumentů:Kód jazykaJazyk:Naposledy spuštěnoNejnovější jako prvníVypsat obsahDotaz za běhuMístníUmístěníUmístění:Nedostatek místa na diskuTřída MIMETyp MIMETyp MIME:Ruční nastavení proxy:JáRůznMonitorPodobnDalší podobnM dokumentyM internetov stránkyN/ANázevNázev:SíťNovNový štítekNový filtr nebo rozsah:Nov výsledky:Pro typ není určena žádná výchozí aplikacePro tento protokol neexistuje žádný stahovačŽádná historie proŽádná obslužná rutina sledováníŽádn výsledkyNení vybrán žádný vyhledávačBez názvuŽádnNorštinaPočet výsledků:Indexovat pouze nov výsledkyIndexovat pouze tyto vzoryOtevřít mezipaměťOtevřít nadřazenýCestaVzorZa dokumentOsobníPinotNastavení PinotProsím nejdříve nastavte klíč Google APIPort:PortugalštinaVlastnostiDotazy:DotazNázev dotazuText dotazuDotaz není nastavenNázev dotazuParametry dotazuDotaz:OdejítPřipravenoOdstranitOdstranit dotazOdstranit indexOdstranit tyto dokument z indexu ?Odstranit tento dokument z indexu ?ResetovatZnačka META robotům zabraňuje v indexaciRumunštinaSpouštění dotazuBěží pod PIDRuštinaHodnoceníVyhledávačVyhledávačeVyhledat proHledat na internetu a ve vašich dokumentech !HostovánoZobrazit výtahyZobrazit dalšíZobrazit předchozíZobrazit všechny vyhledávačeZobrazit předchozí výsledky dotazuZobrazováníVelikostVelikost:Řadit podle:ŠpanělštinaStavVycházející z:ZastavenoUložen dotazySouhrnŠvdštinaSystm běží na bateriiTermíny:Pro tento typ dokumentu není zadána žádná pomocná aplikace dokumentyNeznámýNeznámá chybaAktualizaceDokument aktualizovánAktualizovan štítkyJe doporučena aktualizace všech dokumentů v mých internetových stránkáchPoužijte tento příkaz pro ostatní dokumenty stejnho typu.ZobrazenoSe štítkem Nový_Přidat do indexu_Upravit_Soubor_Nápověda_VolbybajtůdokumentůneexistujeukončensouborůJiž dochází k indexacijiž je používánje v seznamu zakázanýchzvvýsledky License: UNKNOWN FIXME Files: po/pt.gmo Copyright: recomendadoUsar este comando para outros documentos do mesmo tipoVisualizadoCom rótulo novo_Adicionar ao índice_Editar_Ficheiro_Ajuda_Opçõesbytesdocumentosnão existeterminadoficheirosjá está a ser indexadojá está em usoestá na lista negradeactivarresultados License: UNKNOWN FIXME Files: po/pt_BR.gmo Copyright: recomendadoUse este comando para outros documentos deste mesmo tipoVistoCom rótulo novo_Adicionar ao índice_Editar_Arquivo_Ajuda_Opçõesbytesdocumentosnão existefinalizadaarquivosjá está sendo indexadojá está em usoestá na lista negradenoresultados License: UNKNOWN FIXME Files: po/he.gmo Copyright: בתוצאותלא ניתן למחוק את המסמך/ים מהאינדקסלא ניתן לעדכן את המסמךלא ניתן לעדכן את האילתהמתמ נוכחיאינו פעיל כעתתהליך רקעדניתתאריךהאם כוונתך היתה?חיבור ייר לאינטרנטתיקיהתיקייה לאיחסון באינדקסמנותק מ־D-Busמיקום המסמך הואאל תזהיר אותי ובהולנדיתהאינדקס נערךהאילתה נערכהאפר הצעת מונחי חיפואנגליתגיאותייצאייצוא הרימהייצוא מונחיםאינדקס חיצוניאינדוקס וחיפו קובץסיומת הקובץהמעקב אחר הקבצים נכלם הקובץתבנית הקבצים:מצא מסמכים התואמים את האילתהמצא מסמכים התואמים את מחרוזת החיפופיניתצרפתיתגרמניתמפתח ה־API ל גוגל:קיבוץ התוצאות לפיתוכנת עזרהיסטוריהחומר ביתים מארחם המארחהונגריתהתעלם מ־robots.txt ומתגיות ה־META ‏Robotsכתובת לייבואחובבאנגליתבתוצאותבכתובתאינדקסהאינדקס לא קייםגיאת אינדקסמיקום באינדקסם האינדקסמירת תוצאות באינדקס עם תוויתמור באינדקסאינדקסיםמאחסן באינדקסהמירה באינדקס נעצרהאיטלקיתתוויתתוויותהתוויות ממות לסיווג המסמכים המאוחסנים באינדקס:קוד הפהפה:פעילות אחרונההאחרונים תחילההצגת התכנים לאילתה חיהמקומימיקוםמיקום:כמות הטח הפנוי בכונן נמוכהמחלקת ה־MIMEסוג MIMEסוג MIME:תצורת מתווך ידנית:עצמיונותמעקבעוד כמועוד כאלוהמסמכים ליעמודי האינטרנט לילא זמיןםם:רתחדתווית חדהמסנן או טווח חדים:תוצאות חדות:לא מוגדר ייום כברירת מחדל לסוגאין כלי הורדה לפרוטוקול זהאין היסטוריה עבוראין כלי למעקבאין תוצאותלא נבחר מנוע חיפוללא כותרתללאנורבגיתמספר התוצאותמירת תוצאות חדות בלבד באינדקסמור באינדקס מתבנית זו בלבדפתיחת המטמוןפתיחת ההורהנתיבתבניתעבור כל מסמך בנפרדאייפינותההעדפות ל פינותאנא הגדר את מפתח ה־API ל גוגל תחילהפתחה:פורטוגזיתמאפייניםאילתות:אילתהם האילתהטקסט האילתההאילתה לא הוגדרהם האילתההפרמטרים לאילתהאילתה:יציאהמוכןהסרהסר אילתההסר אינדקסהאם להסיר מסמכים אלו מהאינדקס?האם להסיר מסמך זה מהאינדקס ?איפוסתגיות ה־META ל הרובוטים אוסרות על מירה באינדקסרומניתהאילתה רצהרץ תחת מזהה תהליךרוסיתניקודמנוע חיפומנועי חיפוחיפו כאן אחרחיפו באינטרנט ובמסמכים לך !מוג על ידיהצגת הבאהצגת הקודםהצג את כל מנועי החיפוהצג את תוצאות האילתה הקודמתמציגגודלגודל:סדר המיון:ספרדיתמצבאיתור ורים:נעצראילתות מאוחסנותתקצירבדיתהמערכת פועלת על סוללהתנאים:אין תוכנת עזר המוגדרת לטיפול בסוג קובץ זה License: UNKNOWN FIXME debian/copyright0000644000000000000000000001670312115344064011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Pinot Upstream-Contact: Fabrice Colin Source: http://code.google.com/p/pinot-search/ Files: * Copyright: 2005-2013, Fabrice Colin License: GPL-2+ Files: */Makefile.in Copyright: 1994-2011, Free Software Foundation, Inc. License: GAP~Makefile.in Files: Utils/xdgmime/xdgmime.* Utils/xdgmime/xdgmimeglob.* Utils/xdgmime/xdgmimeint.* Utils/xdgmime/xdgmimeint.* Utils/xdgmime/xdgmimemagic.* Utils/xdgmime/xdgmimemagic.* Copyright: 2003-2004, Jonathan Blandford 2003-2004, Red Hat, Inc License: LGPL-2+ Files: Utils/xdgmime/xdgmimealias.* Utils/xdgmime/xdgmimeparent.* Copyright: 2004, Matthias Clasen 2004, Red Hat, Inc License: LGPL-2+ Files: po/cs.po po/de.po po/he.po po/it.po po/ja.po po/nl.po po/pt_BR.po po/pt.po po/ru.po po/zh_TW.po Copyright: 2006-2008,2012, Rosetta Contributors and Canonical Ltd License: GPL-2+ Files: depcomp config.guess config.sub missing Copyright: 1992-2008, Free Software Foundation, Inc. License: GPL-2+ with Autoconf exception As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. Files: IndexSearch/cjkv/CJKVTokenizer.* Copyright: 2007-2008, 林永忠 Yung-Chung Lin 2008-2009, Fabrice Colin License: LGPL-2+ Files: Utils/xdgmime/xdgmimecache.* Copyright: 2005, Matthias Clasen License: LGPL-2+ Files: configure Copyright: 1992-1996, 1998-2008, Free Software Foundation, Inc. License: GAP~configure Files: aclocal.m4 Copyright: 1995-2011, Free Software Foundation, Inc 2001-2004, Red Hat, Inc License: GAP Files: Tokenize/filters/HtmlParser.cc Copyright: 1999-2001, BrightStation PLC 2001, Ananova Ltd 2002,2006-2008, Olly Betts License: GPL-2+ Files: Tokenize/filters/HtmlParser.h Copyright: 1999-2001, BrightStation PLC 2002,2006,2008, Olly Betts License: GPL-2+ Files: ltmain.sh Copyright: 1996-2001, 2003-2011, Free Software Foundation, Inc License: GPL-2+ with Libtool exception As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms that you use for the rest of that program. Files: po/Makefile.in.in Copyright: 1995-1997, Ulrich Drepper License: GAP~gettext Files: po/es.po Copyright: 2006, Fabrice Colin 2006, Jess Tramullas License: GPL-2+ Files: po/sv.po Copyright: 2007, Free Software Foundation, Inc License: GPL-2+ Files: debian/* Copyright: 2008-2009, David Paleino 2009-2011, Jonas Smedegaard License: GPL-2+ Comment: David Paleino included as copyright holder only for the record, as his contributions was differently licensed (GPL-3+) and all since replaced. Files: Utils/boost_singleton.hpp debian/patches/boost1.48.patch Copyright: 2000, Stephen Cleary License: BSL-1.0 License: GPL-2+ This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . Comment: . Some files differ from above by replacing "this file" and/or "this program" with more specific terms, but otherwise identical license and disclaimer. . On Debian systems the GNU General Public License (GPL) version 2 is located in '/usr/share/common-licenses/GPL-2'. . You should have received a copy of the GNU General Public License along with this program. If not, see . License: LGPL-2+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . Comment: . On Debian systems the GNU Lesser General Public License (LGPL) version 2 is located in '/usr/share/common-licenses/LGPL-2'. . You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . License: BSL-1.0 Boost Software License - Version 1.0 - August 17th, 2003 . Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: . The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative . works are solely in the form of machine-executable object code generated by a source language processor. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: GAP This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, to the extent permitted by law; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. License: GAP~Makefile.in This Makefile.in is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, to the extent permitted by law; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. License: GAP~configure This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. License: GAP~gettext This file may be copied and used freely without restrictions. It may be used in projects which are not available under a GNU Public License, but which still want to provide support for the GNU gettext functionality. debian/gbp.conf0000644000000000000000000000014611201543606010604 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/pinot.links0000644000000000000000000000010211212772550011354 0ustar usr/share/man/man1/pinot.1.gz usr/share/man/man1/pinot-prefs.1.gz debian/pinot.lintian-overrides0000644000000000000000000000010311201543606013667 0ustar pinot: package-contains-empty-directory usr/share/pinot/stopwords/ debian/rules0000755000000000000000000000406712115376461010263 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2009, 2010, 2011, 2012 Jonas Smedegaard # Description: Main Debian packaging script for Pinot # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . -include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/rules/autoreconf.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/debhelper.mk pkg = $(DEB_SOURCE_PACKAGE) DEB_UPSTREAM_URL = http://pinot-search.googlecode.com/files DEB_UPSTREAM_TARBALL_MD5 = b35fa660ac25d842b4ca7d9ca9ab54ad # Limit linking to actually used libs LDFLAGS += -Wl,--as-needed DEB_DH_MAKESHLIBS_ARGS = -Xusr/lib/pinot binary-fixup/pinot:: chmod a+x $(CURDIR)/debian/$(cdbs_curpkg)/usr/share/pinot/*.sh binary-install/pinot:: dh_icons # Needed by upstream build lib-bdeps = curl4-openssl xapian boost exttextcat tag1 sqlite3 xml++2.6 lib-bdeps += dbus-glib-1 sigc++-2.0 glib2.0 ssl glibmm-2.4 gtkmm-2.4 attr1 bdeps = $(patsubst %,$(comma) lib%-dev,$(lib-bdeps)) bdeps +=, libgmime-2.6-dev | libgmime-2.4-dev bdeps +=, libexiv2-dev (>= 0.18~) bdeps +=, shared-mime-info, desktop-file-utils # Needed (always/often) at runtime depends = dbus-x11 recommends = antiword, catdoc, catdvi, djvulibre-bin recommends +=, poppler-utils, unrtf, unzip, python-docutils, bzip2 suggests = file, rpm CDBS_BUILD_DEPENDS +=, $(bdeps) CDBS_DEPENDS_$(pkg) = $(depends) CDBS_RECOMMENDS_$(pkg) = $(recommends) CDBS_SUGGESTS_$(pkg) = $(suggests) debian/control.in0000644000000000000000000000204012115376416011200 0ustar Source: pinot Section: x11 Priority: optional Maintainer: Jonas Smedegaard Build-Depends: @cdbs@ Build-Conflicts: libtextcat-dev Standards-Version: 3.9.4 Homepage: http://code.google.com/p/pinot-search/ Vcs-Git: git://anonscm.debian.org/git/collab-maint/pinot.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/pinot.git Package: pinot Architecture: any Depends: ${cdbs:Depends}, ${misc:Depends}, ${shlibs:Depends} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Description: meta-search engine for local files and web queries Pinot provides a D-Bus service that crawls, indexes your documents and monitors them for changes. This service can then be used via a command-line interface, or through a GTK-based GUI that enables to query the index built by the service and your favourite Web engines, and display and analyze the results. . Pinot also provides a Xesam interface, which can be used through Xesam Query Language and Xesam User Language. . To crawl rpm files, install the packages rpm and file. debian/NEWS0000644000000000000000000000026411277503135007673 0ustar pinot (0.95-1) unstable; urgency=low * The "path:" operator was changed upstream. You may need to reindex. -- Jonas Smedegaard Sat, 14 Nov 2009 11:27:16 +0100