Skip to content

Files

Latest commit

5ca12bd · May 6, 2012

History

History

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 6, 2012
Apr 12, 2012
Feb 16, 2012
Jul 9, 2011
Feb 6, 2012
Jan 10, 2012
Jan 10, 2012
Jan 10, 2012
Feb 21, 2012
Feb 21, 2012
Feb 22, 2012
Feb 22, 2012
Jan 10, 2012
Jan 10, 2012
Feb 6, 2012
Jan 10, 2012
Mar 14, 2012
kipicmd - Allows you to start kipi-plugins from the command line

This program can be used to easily start kipi-plugins from the command line
which is useful when developing plugins. You can specify which action of the plugin
should be called and which images/albums should be reported as 'currently selected'.

Example command flow:

# list the available plugins and actions:

kipicmd --listplugins

# Start the "Edit Coordinates..." action from GPSSync plugin with all jpg files in the current
  directory as selected images:

kipicmd -a "Edit Coordinates..." --selectedimages *.jpg

# Load only the GPSSync plugin because we know that it is the plugin providing the action we want.
  This may speed up loading on older versions of libkipi:

kipicmd -l kipiplugin_gpssync -a "Edit Coordinates..." --selectedimages *.jpg

# Run "Export to &HTML..." with 'somedir' as the selected directory and 'dir1' and 'dir2'
  as other albums which could be selected:

kipicmd -a "Export to &HTML..." --selectedalbums somedir --allalbums dir1 dir2

# Run the "Export to Flick&r..." action. Since the dialog is non-modal, 
  we have to wait for it to close:

kipicmd -a "Export to Flick&r..." --wait --selectedimages *.jpg