Trac/Subversion Development JumpBox 1.1.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Trac/Subversion Development JumpBox 1.1.2 (Default branch)
# 1  
Old 08-07-2008
Trac/Subversion Development JumpBox 1.1.2 (Default branch)

ImageTrac is an advanced tool for managing software development projects. It provides a simple wiki, an issue tracking system, and tight integration with the Subversion revision control system. However, it's also notorious for being hard to install. With the JumpBox for Trac, it takes about a minute to get trac running. Plus, with the built-in subversion and database backup system and the JumpBox Web-based administration console, it gives you all the basic tools you need to put it into production without ever touching a command line. License: Free To Use But RestrictedChanges:
A long-standing bug where backup validation failed if the configured backup server was inaccessible has been fixed. This release fixes a vulnerability in Python. The version of trac contained has not changed.Image

More...
Login or Register to Ask a Question

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

NAME
Net::Trac::TicketSearch - A ticket search (custom query) in Trac SYNOPSIS
my $search = Net::Trac::TicketSearch->new( connection => $trac ); $search->query( owner => 'hiro', status => { 'not' => [qw(new reopened)] }, summary => { 'contains' => 'yatta!' }, reporter => [qw( foo@example.com bar@example.com )] ); print $_->id, " " for @{$search->results}; DESCRIPTION
This class allows you to run ticket searches on a remote Trac instance. ACCESSORS
connection limit [NUMBER] Get/set the maximum number of results to fetch. Default is 500. This may also be limited by the Trac instance itself. results Returns an arrayref of Net::Trac::Tickets for the current query. url Returns the relative URL for the current query (note the format will be CSV). METHODS
query [PARAMHASH] Performs a ticket search with the given search conditions. Specify a hash of "column =" value> pairs for which to search. Values may be a simple scalar, a hashref, or an arrayref. Specifying a hashref allows you to select a different operator for comparison (see below for a list). An arrayref allows multiple values to be or'd for the same column. Unfortunately Trac has no way of anding multiple values for the same column. Valid operators are "is" (default), "not", "contains", "lacks", "startswith", and "endswith". Returns undef on error and the results otherwise. LICENSE
Copyright 2008-2009 Best Practical Solutions. This package is licensed under the same terms as Perl 5.8.8. perl v5.12.3 2009-05-27 Net::Trac::TicketSearch(3pm)