Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tracd(1) [debian man page]

tracd(1)						      General Commands Manual							  tracd(1)

NAME
tracd - Stand alone Trac HTTP server SYNOPSIS
tracd [options] <projenv> [projenv] ... OVERVIEW
tracd is a simple stand alone Trac HTTP server. It can be used as an alternative to using trac.cgi with apache. Trac is a minimalistic web-based software project management and bug/issue tracking system. It provides an interface to the Subversion revision control systems, an integrated wiki, flexible issue tracking and convenient report facilities. Documentation for tracd, Trac in general, including detailed usage explanations and tutorials can be be found in the Trac wiki at http://trac.edgewall.com/. Run `tracd -h' to access the built-in tool documentation. tracd(1)

Check Out this Related Man Page

Net::Trac(3pm)						User Contributed Perl Documentation					    Net::Trac(3pm)

NAME
Net::Trac - Interact with a remote Trac instance SYNOPSIS
use Net::Trac; my $trac = Net::Trac::Connection->new( url => 'http://trac.someproject.org', user => 'hiro', password => 'yatta' ); my $ticket = Net::Trac::Ticket->new( connection => $trac ); my $id = $ticket->create(summary => 'This product has only a moose, not a pony'); my $other_ticket = Net::Trac::Ticket->new( connection => $trac ); $other_ticket->load($id); print $other_ticket->summary, " "; $ticket->update( summary => 'This project has no pony' ); DESCRIPTION
Net::Trac is simple client library for a remote Trac instance. Because Trac doesn't provide a web services API, this module currently "fakes" an RPC interface around Trac's webforms and the feeds it exports. Because of this, it's somewhat more brittle than a true RPC client would be. As of now, this module has been tested against Trac 10.4 and Trac 11.0. The author's needs for this module are somewhat modest and its current featureset reflects this. Right now, only basic read/write functionality for Trac's tickets is provided. Patches would be gratefully appreciated. BUGS
This module currently only deals with Trac's bug tracking system. This module is woefully incomplete. This module's error handling isn't what it should be. There are more. Please send bug reports and patches to bug-net-trac@rt.cpan.org AUTHOR
Jesse Vincent <jesse@bestpractical.com>, Thomas Sibley <trs@bestpractical.com> LICENSE
Copyright 2008-2009 Best Practical Solutions. This package is licensed under the same terms as Perl 5.8.8. perl v5.12.3 2011-04-02 Net::Trac(3pm)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Run at boot

Hi there :)! I've set up my own openSuse server and It's working perfectly, but... Some stuff has to be executed at boot, but it won't. I've tried boot.local and init.d but nothing works. This are the things that needs to be execute: # Free the SSH port killall xinetd # Run subversion... (8 Replies)
Discussion started by: kever
8 Replies

2. Programming

systemtap returntimeofday_s and some questions

Hi gurus, could you please explain few questions about systemtap. 1st === seems gettimeofday_s() always returns 0 stap -ve 'probe timer.s(4){ printf("%d ", gettimeofday_s()) }' returns 0 0 0 ... also gettimeofday_ms gettimeofday_ns When I am trying to investigate what is going on... (2 Replies)
Discussion started by: wakatana
2 Replies