Changes between Version 10 and Version 11 of WikiOutputStreamPlugin


Ignore:
Timestamp:
Nov 26, 2015, 9:48:37 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • WikiOutputStreamPlugin

    v10 v11  
    33== Description
    44
    5 WikiOutputStreamPlugin is a !OutputStream for Java which lets you easily publish direcly into Trac as a wiki page. This is accomplished running trac-admin over an ssh-pki-authenticated-remote-shell-connection. It also contains goodies for hyperlinking class names directly into Trac's source browser.
     5This plugin is an !OutputStream for Java, which lets you easily publish direcly into Trac as a wiki page. This is accomplished running trac-admin over an ssh-pki-authenticated-remote-shell-connection. It also contains goodies for hyperlinking class names directly into Trac's source browser.
    66
    77Key features:
    8  * Integrate either [http://junit.org/ JUnit], [http://cruisecontrol.sourceforge.net/ CruiseControl] into [http://trac.edgewall.com/ Trac]
    9  * Publish your test reports directly into Trac's Wiki.
     8 * Integrate either [http://junit.org/ JUnit] or [http://cruisecontrol.sourceforge.net/ CruiseControl] into [http://trac.edgewall.com/ Trac].
     9 * Publish your test reports directly into Trac's wiki.
    1010 * Hyperlink your Java class names directly into the source browser.
    1111
     
    1616
    1717If you have any issues, create a
    18 [http://trac-hacks.org/newticket?component=WikiOutputStreamPlugin&owner=aldrinleal new ticket].
     18[/newticket?component=WikiOutputStreamPlugin new ticket].
    1919
    2020[[TicketQuery(component=WikiOutputStreamPlugin&group=type,format=progress)]]
     
    2222== Download
    2323
    24 Download the zipped source from [download:wikioutputstreamplugin here].
     24Download the zipped source from [export:wikioutputstreamplugin here].
    2525
    2626== Source
    2727
    28 You can check out WikiOutputStreamPlugin from [http://trac-hacks.org/svn/wikioutputstreamplugin here] using Subversion, or [source:wikioutputstreamplugin browse the source] with Trac.
     28You can check out WikiOutputStreamPlugin from [/svn/wikioutputstreamplugin here] using Subversion, or [source:wikioutputstreamplugin browse the source] with Trac.
    2929
    3030== License
     
    4646}}}
    4747
    48 Since it uses [http://www.jcraft.com/jsch/ Java Secure Channel (JSch)] from [http://www.jcraft.com/ JCraft], currently under BSD Licensing, their mandatory notice is given here:
    49 
    50 {{{
    51 Copyright (c) 2002,2003,2004,2005,2006 Atsuhiko Yamanaka, JCraft,Inc.
    52 All rights reserved.
    53 
    54 Redistribution and use in source and binary forms, with or without
    55 modification, are permitted provided that the following conditions are met:
    56 
    57   1. Redistributions of source code must retain the above copyright notice,
    58      this list of conditions and the following disclaimer.
    59 
    60   2. Redistributions in binary form must reproduce the above copyright
    61      notice, this list of conditions and the following disclaimer in
    62      the documentation and/or other materials provided with the distribution.
    63 
    64   3. The names of the authors may not be used to endorse or promote products
    65      derived from this software without specific prior written permission.
    66 
    67 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
    68 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
    69 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
    70 INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
    71 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    72 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
    73 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    74 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    75 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    76 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    77 }}}
     48It uses [http://www.jcraft.com/jsch/ Java Secure Channel (JSch)] from [http://www.jcraft.com/ JCraft], which itself is BSD licensed.
    7849
    7950== Example
    8051
    81 Suppose you have a testCase/suite you'd like to let you publish results directly into trac. Or perhaps you want to create a [http://loggging.apache.org/log4j/ Log4J] Logging Module publish their results into trac. WikiOutputStreamPlugin usage is fairly simple: once you configure it (by creating a simple 'trac.properties' file in your classpath, or by doing the hardcoded-way), you can easily create a new and start using:
     52Suppose you have test results you would like to publish directly into Trac. Or perhaps you want to create a [http://loggging.apache.org/log4j/ Log4J] Logging Module publish their results into Trac. This plugin usage is fairly simple: once you configure it (by creating a simple 'trac.properties' file in your classpath, or by doing the hardcoded-way), you can easily create a new and start using:
    8253
    83 {{{
    84 #!java
     54{{{#!java
    8555import junit.framework.TestCase;
    8656import br.eng.leal.trac.WikiPageOutputStream;
     
    11686}}}
    11787
    118 
    11988== Recent Changes
    12089