Skip to content
  1. Sep 26, 2014
  2. Sep 25, 2014
  3. Sep 24, 2014
  4. Sep 16, 2014
  5. Sep 09, 2014
  6. Sep 08, 2014
  7. Sep 07, 2014
  8. Sep 06, 2014
  9. Sep 05, 2014
  10. Sep 04, 2014
  11. Sep 03, 2014
    • Martyn Russell's avatar
      tracker-stats: Change default behaviour and add new command line options · dbc9d307
      Martyn Russell authored
      Now we only show common RDF types by default, e.g. nfo:Document and it is
      based on .rules file fallback types and some others specifically added.
      
      There is also now a --all option to return all stats as was the behaviour
      before.
      
      In addition to this, the EXPRESSIONS provided on the command line following
      the OPTIONS can be used to filter the stats, e.g. : 'tracker-stats doC' will
      list the nfo:Document class and resources in the DB matching.
      dbc9d307
  12. Sep 02, 2014
  13. Sep 01, 2014
  14. Aug 31, 2014
  15. Aug 29, 2014
  16. Aug 28, 2014
  17. Aug 27, 2014
  18. Aug 26, 2014
    • Martyn Russell's avatar
      libtracker-miner: Call tracker_data_provider_end_async() when dir is crawled · 4dd6cf8d
      Martyn Russell authored
      Previously we would not call this API and it meant that any implementation
      with memory allocated waiting to be cleared up, would not have been freed. Now
      we call this API just about the same time we signal up the stack that we've
      ::directory-crawled
      4dd6cf8d
    • Martyn Russell's avatar
      libtracker-miner: Fix reference leak with TrackerTaskPool · 05450979
      Martyn Russell authored
      The leak occurred because tracker_sparql_task_new_with_sparql() was being
      called but the returned TrackerTask* was not being unreferenced anywhere and
      the call to tracker_sparql_buffer_flush() with the new task was taking its own
      references internally.
      
      Took this opportunity to make the code here easier to follow:
      - do_process_file() is now merged into item_add_or_update()
      - item_add_or_update_cb() is renamed to item_add_or_update_continue() so it's
        obvious it is called from tracker_miner_fs_file_notify().
      - renamed various variables to make the code easier to follow.
      05450979