Visual Log: 2.0.1 Final Release 1 Released


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Visual Log: 2.0.1 Final Release 1 Released
# 1  
Old 09-17-2008
Visual Log: 2.0.1 Final Release 1 Released

Visual Log is an ASP Based CMS designed to be highly extendable supporting Plugin Features, Colour Schemes, Layouts and Languages. It is a powerful heirarchical CMS including Link Integrity Management, Version History and Multilingual Content.
Image Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

SOLARIS 10 final release

they did it... get it: http://www.sun.com/software/solaris/get.jsp (0 Replies)
Discussion started by: pressy
0 Replies
Login or Register to Ask a Question
Git::Repository::Plugin::Log(3pm)			User Contributed Perl Documentation			 Git::Repository::Plugin::Log(3pm)

NAME
Git::Repository::Plugin::Log - Add a log() method to Git::Repository SYNOPSIS
# load the plugin use Git::Repository 'Log'; my $r = Git::Repository->new(); # get all log objects my @logs = $r->log(qw( --since=yesterday )); # get an iterator my $iter = $r->log(qw( --since=yesterday )); while ( my $log = $iter->next() ) { ...; } DESCRIPTION
This module adds a new method to "Git::Repository". METHOD
log( @args ) Run "git log" with the given arguments. In scalar context, returns a "Git::Repository::Log::Iterator" object, which can return "Git::Repository::Log" objects on demand. In list context, returns the full list "Git::Repository::Log" objects. Note that this can be very memory-intensive. See Git::Repository::Log::Iterator's documentation for details about how parameters are handled. AUTHOR
Philippe Bruhat (BooK), "<book at cpan.org>" ACKNOWLEDGEMENTS
Many thanks to Aristotle Pagaltzis who requested a "log()" method in the first place, and for very interesting conversations on the topic. SEE ALSO
Git::Repository::Plugin, Git::Repository::Log::Iterator, Git::Repository::Log. COPYRIGHT
Copyright 2010 Philippe Bruhat (BooK). LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-12-28 Git::Repository::Plugin::Log(3pm)