WebIssues 0.9.4-beta2 (Client branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News WebIssues 0.9.4-beta2 (Client branch)
# 1  
Old 01-11-2009
WebIssues 0.9.4-beta2 (Client branch)

Image WebIssues is a system that supports team collaboration across the Internet. It can be used for storing bugs and other information with customizable attributes, comments, and file attachments. The server can be installed on any host with PHP and MySQL, PostgreSQL, or MS SQL Server. The client is a native desktop application for both Windows and Linux. License: GNU General Public License (GPL) Changes:
This version extends support for email notifications by adding automatic notifications for modified issues in selected folders. It also adds command line options for overriding default file locations and fixes a few bugs. Image

Image

More...
Login or Register to Ask a Question

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

NAME
App::KGB::Client::ServerRef - server instance in KGB client SYNOPSIS
use App::KGB::Client::ServerRef; my $s = App::KGB::Client::ServerRef->new( { uri => "http://some.server:port/", password => 's3cr1t', timeout => 5 } ); $s->send_changes( $client, $commit, $branch, $module ); DESCRIPTION
App::KGB::Client::ServerRef is used in App::KGB::Client to refer to remote KGB server instances. It encapsulates sending change sets to the remote server, maintaining the SOAP protocol encapsulation and authentication to the remote KGB server. CONSTRUCTOR
new The usual constructor. Accepts a hashref of initialiers. FIELDS
uri (mandatory) The URI of the remote KGB server. Something like "http://some.host:port/". proxy This is the SOAP proxy used to communicate with the server. If omitted, defaults to the value of uri field, with "?session=KGB" appended. password (mandatory) Password, to be used for authentication to the remote KGB server. timeout Specifies the timeout for the SOAP transaction in seconds. Defaults to 15 seconds. verbose Be verbose about communicating with KGB server. METHODS
send_changes (message parameters) Transmits the change set and all data about it along with the necessary authentication hash. If error occures, an exception is thrown. Message parameters are passed as arguments in the following order: Client instance (App::KGB::Client) Commit (an instance of App::KGB::Commit) Branch Module perl v5.12.4 2011-09-15 App::KGB::Client::ServerRef(3pm)