Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtkpod(1) [debian man page]

GTKPOD(1)							   gtkpod Manual							 GTKPOD(1)

NAME
gtkpod - GTK2 based software for managing songs and playlists on an Apple iPod SYNOPSIS
gtkpod [-h] [-m path] [-p filename] [--hash filename] DESCRIPTION
This manual page briefly describes the gtkpod command. OPTIONS
gtkpod supports the following options: -h, --help Displays the help message. -m, --mountpoint path Define the mountpoint of your iPod. -p filename Increment playcount for file filename by one. --hash filename Print gtkpod hash for file filename. FILES
~/.gtkpod/prefs Per user configuration file. Should normally only updated through the program itself. /etc/gtkpod/prefs Global configuration file. Used if no configuration file exist for the user starting gtkpod. ~/.gtkpod/gtkpod.in If this file exists, gtkpod will try to execute it at startup This is done before attempting to mount the iPod directory (optional) or read the iTunesDB (optional). ~/.gtkpod/gtkpod.out If this file exists, gtkpod will try to execute it while exiting the program. This is done after attempting to unmount the iPod directory (optional) and sending the "eject" command to the iPod (optional). /etc/gtkpod/gtkpod.in, /etc/gtkpod/gtkpod.out Used instead of the per user scripts if the former ones don't exist and these do. ~/.gtkpod/gtkpod.load If this file exists, gtkpod will execute it before loading the contents of an iPod with the iPod's mountpoint as the only command line argument. Put any commands needed to access the iPod here, for example if you need to mount the iPod manually. ~/.gtkpod/gtkpod.eject If this file exists, gtkpod will execute it when ejecting an iPod with the the iPod's mountpoint as the only command line argument. Put any commands you want to execute after gtkpod has written the changes to the iPod here. For example: sudo eject $1 gtkpod will not attempt to do any magic of it's own to mount/unmount/eject the iPod. AUTHOR
Jorg Schuler <jcsjcs at users.sourceforge.net> Corey Donohoe <atmos at atmos.org> Adrian Ulrich <pab at blinkenlights.ch> and others This manpage was written by Frank Lichtenheld. COPYRIGHT AND LICENSE
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. gtkpod 2.1.2 2009-01-04 GTKPOD(1)

Check Out this Related Man Page

WWW::OpenSearch::Response(3pm)				User Contributed Perl Documentation			    WWW::OpenSearch::Response(3pm)

NAME
WWW::OpenSearch::Response - Encapsulate a response received from an A9 OpenSearch compatible engine SYNOPSIS
use WWW::OpenSearch; my $url = "http://bulkfeeds.net/opensearch.xml"; my $engine = WWW::OpenSearch->new($url); # Retrieve page 4 of search results for "iPod" my $response = $engine->search("iPod",{ startPage => 4 }); for my $item (@{$response->feed->items}) { print $item->{description}; } # Retrieve page 3 of results $response = $response->previous_page; # Retrieve page 5 of results $response = $response->next_page; DESCRIPTION
WWW::OpenSearch::Response is a module designed to encapsulate a response received from an A9 OpenSearch compatible engine. See http://opensearch.a9.com/spec/1.1/response/ for details. CONSTRUCTOR
new( $response ) Constructs a new instance of WWW::OpenSearch::Response from the WWWW::OpenSearch:Response returned by the search request. METHODS
parse_response( ) Parses the content of the HTTP response using XML::Feed. If successful, parse_feed( ) is also called. parse_feed( ) Parses the XML::Feed originally parsed from the HTTP response content. Sets the pager object appropriately. previous_page( ) / next_page( ) Performs another search on the parent object, returning a WWW::OpenSearch::Response instance containing the previous/next page of results. If the current response includes a &lt;link rel="previous/next" href="..." /&gt; tag, the page will simply be the parsed content of the URL specified by the tag's href attribute. However, if the current response does not include the appropriate link, a new query is constructed using the startPage or startIndex query arguments. _get_link( $type ) Gets the href attribute of the first link whose rel attribute is equal to $type. ACCESSORS
feed( ) pager( ) AUTHOR
o Tatsuhiko Miyagawa <miyagawa@bulknews.net> o Brian Cassidy <bricas@cpan.org> COPYRIGHT AND LICENSE
Copyright 2005-2010 by Tatsuhiko Miyagawa and Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-05-25 WWW::OpenSearch::Response(3pm)
Man Page