CrossFTP 1.39 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News CrossFTP 1.39 (Default branch)
# 1  
Old 03-03-2008
CrossFTP 1.39 (Default branch)

Image CrossFTP Client is a multi-tabbed FTP client for stable transfers that features international CJK word support, browsing/create archives, anti-idles, managing and encrypting bookmarks, and more. CrossFTP Pro is a turbo FTP/FXP/FTPS/SFTP/WebDav(s) client that further features multi-threading, secure transfers, remote editing, etc. License: Freeware Changes:
This is a major enhancement release. It adds HTTP, FTP, and SOCKS proxy support for CrossFTP Pro, improves the directory selection function, fixes the WebDAv directory list function, and fixes a number of various bugs.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Net::DPAP::Client(3pm)					User Contributed Perl Documentation				    Net::DPAP::Client(3pm)

NAME
Net::DPAP::Client - Connect to iPhoto shares (DPAP) SYNOPSIS
use Net::DPAP::Client; my $client = Net::DPAP::Client->new; $client->hostname($hostname); my @albums = $client->connect; foreach my $album (@albums) { print $album->name, " "; foreach my $image (@{$album->images}) { print " ", $image->name, " "; my $thumbnail = $image->thumbnail; my $hires = $image->hires; } } DESCRIPTION
This module provides a DPAP client. DPAP is the Digital Photo Access Protocol and is the protocol that Apple iPhoto uses to share photos. This allows you to browse shared albums, and download thumbnail and hires versions of shared photos. It currently doesn't support password-protected shares. METHODS
new The constructor: my $client = Net::DPAP::Client->new; $client->hostname($hostname); connect Connect to the hostname: my @albums = $client->connect; SEE ALSO
Net::DPAP::Client::Album, Net::DPAP::Client::Image. AUTHOR
Leon Brocard <acme@astray.com> COPYRIGHT
Copyright (C) 2004-6, Leon Brocard This module is free software; you can redistribute it or modify it under the same terms as Perl itself. perl v5.10.1 2010-06-07 Net::DPAP::Client(3pm)