summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
...
* tracker-extract, libtracker-extract: Refactored memory usage in extractorsPhilip Van Hoof2010-04-131-5/+12
|
* Change Urho's contact name for Ivan'sMartyn Russell2010-03-294-4/+4
|
* Added contact for Nokia copyrightMartyn Russell2010-03-293-3/+3
|
* Fixed license issues found with Debian licensecheck.pl scriptMartyn Russell2010-03-294-46/+50
| | | | | Found here: http://git.debian.org/?p=devscripts/devscripts.git;a=blob;f=scripts/licensecheck.pl;h=62e9fbe94d7b63c671e4239f790b18edd2dfaa6c;hb=HEAD
* libtracker-miner: Add single tracker-miner.h header.Carlos Garnacho2010-03-221-1/+1
| | | | | | This should be the only include point from now on to libtracker-miner. All code including individual libtracker-miner headers in Tracker has been updated to #include <libtracker-miner/tracker-miner.h>.
* libtracker-miner: Fixed examples Makefile, remove password provider appMartyn Russell2010-03-181-1/+1
|
* libtracker-miner: Move password provider test to testsMartyn Russell2010-03-182-126/+0
|
* libtracker-miner: Cleaned up example code for TrackerPasswordProviderMartyn Russell2010-03-181-17/+41
|
* libtracker-miner: Add TrackerMinerWeb classAdrien Bustany2010-03-182-1/+103
| | | | | The TrackerMinerWeb class is a thin layer above TrackerMiner which adds functions commonly used by miners fetching data from remote services.
* libtracker-extract: Removed config.h include, not used anywhere elseMartyn Russell2010-03-101-2/+0
|
* libtracker-extract: Don't install the mockup example moduleMartyn Russell2010-03-101-1/+1
|
* libtracker-extract: Code clean upMartyn Russell2010-03-091-2/+2
| | | | | | | | | | | | | This involves: - Renaming all tracker_extract_* APIs to tracker_ APIs. We don't do this everywhere and it was completely inconsistent and only for utilities. The structures were not using the same naming either. - Fixed some compiler warnings (for vorbis) - Fixed the includes in libtracker-extract source files. Many were not needed.
* libtracker-extract: Don't include libtracker-common files in exampleMartyn Russell2010-03-091-3/+0
|
* libtracker-client: Added tracker-client.h for central inclusionMartyn Russell2010-03-091-2/+1
| | | | | | | This avoids adding different headers from the same library for 3rd parties and is for compatibility with any new changes made. Note that the sparql-builder.h is not checked and can be included separately still because Vala has no easy way to add #define/#errors.
* tracker-extract: Fixed linkingMartyn Russell2010-03-091-3/+0
| | | | | | | | Don't link against libtracker-common for extractors which don't use libtracker-common APIs directly. Also fixed libtracker-extract Makefile because we definitely shouldn't be linking with libtracker-common there.
* libtracker-extract: Added tracker-extract.h to include other filesMartyn Russell2010-03-091-1/+0
| | | | | | | This has been added for compatibility. For now, we have removed the TRACKER_ENABLE_INTERNALS check for libtracker-common so the extractor modules can be built, but ideally those should not need to use libtracker-common.
* libtracker-extract: Added example to examples/libtracker-extractMartyn Russell2010-03-093-0/+369
| | | | | Moved mockup from src/tracker-extract/ to here. Used MP3 source and added comments to detail what is going on
* Fixes GB#609607, Make tracker build without assuming implicit DSO linkingDeji Akingunola2010-02-111-0/+1
|
* libtracker-miner: Added tracker_miner_fs_get_directories()Martyn Russell2010-02-071-1/+1
| | | | | | | | | This also renames the old APIs: tracker_miner_fs_add_directory -> directory_add() tracker_miner_fs_remove_directory -> directory_remove() tracker_miner_fs_add_file -> file_add() tracker_miner_fs_notify_file -> file_notify()
* Remove translatable mark from stock GTK buttonsGabor Kelemen2010-02-031-1/+1
|
* libtracker-miner: Change name to include versionMartyn Russell2010-01-191-1/+1
| | | | | | | So the .so is now called libtracker-miner-0.7 and is in /usr/lib not in /usr/lib/tracker-0.7. This is because this library is not an internal library but a library that needs to be available to others writing data miners for Tracker
* Moved python/rss_reader to examples/Martyn Russell2009-12-159-1/+876
|
* Removed first line in all *.[ch] files defining tab width, etc.Martyn Russell2009-12-153-6/+3
| | | | | | | This removes the following line: /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ This is not needed and editors should work without this anyway.
* Merged whitespace branchMartyn Russell2009-12-113-62/+62
|
* libtracker-miner: Fixed example linking with binutils-gold's ldMartyn Russell2009-11-231-0/+1
|
* libtracker-miner: Moved test/ directory to examples/Martyn Russell2009-11-236-0/+390
I did this because although it does test the API, it also shows it off like tracker-miner-fs. This is mostly a good way to show others how to build their own miners.