Skip to content

Commit

Permalink
Item1367: Creation of initial directory for ExternalTopicViewerPlugin
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/ExternalTopicViewerPlugin@3266 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
PatrickDalinghoff authored and PatrickDalinghoff committed Mar 25, 2009
0 parents commit a3d66ba
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 0 deletions.
32 changes: 32 additions & 0 deletions data/System/ExternalTopicViewerPlugin.txt
@@ -0,0 +1,32 @@
---+!! !ExternalTopicViewerPlugin
<!--
One line description, required for extensions repository catalog.
* Set SHORTDESCRIPTION = External Topic Viewer Plugin for generating overview tables and viewing file contents of external TML formatted text files
-->
%SHORTDESCRIPTION%

%TOC%

---++ Usage

---++ Examples

---++ Installation Instructions

%$INSTALL_INSTRUCTIONS%

---++ Info

Many thanks to the following sponsors for supporting this work:
* Acknowledge any sponsors here

| Author(s): | |
| Copyright: | &copy; |
| License: | [[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]] |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| Dependencies: | %$DEPENDENCIES% |
| Home page: | http://foswiki.org/bin/view/Extensions/ExternalTopicViewerPlugin |
| Support: | http://foswiki.org/bin/view/Support/ExternalTopicViewerPlugin |

<!-- Do _not_ attempt to edit this topic; it is auto-generated. -->
Empty file.
5 changes: 5 additions & 0 deletions lib/Foswiki/Plugins/ExternalTopicViewerPlugin/DEPENDENCIES
@@ -0,0 +1,5 @@
# Dependencies for ExternalTopicViewerPlugin
# Example:
# Time::ParseDate,>=2003.0211,cpan,Required.
# Foswiki::Plugins,>=1.2,perl,Requires version 1.2 of handler API.

4 changes: 4 additions & 0 deletions lib/Foswiki/Plugins/ExternalTopicViewerPlugin/MANIFEST
@@ -0,0 +1,4 @@
# Release manifest for ExternalTopicViewerPlugin
data/System/ExternalTopicViewerPlugin.txt 0644 Documentation
lib/Foswiki/Plugins/ExternalTopicViewerPlugin.pm 0644 Perl module

24 changes: 24 additions & 0 deletions lib/Foswiki/Plugins/ExternalTopicViewerPlugin/build.pl
@@ -0,0 +1,24 @@
#!/usr/bin/perl -w
BEGIN { unshift @INC, split( /:/, $ENV{FOSWIKI_LIBS} ); }
use Foswiki::Contrib::Build;

# Create the build object
$build = new Foswiki::Contrib::Build('ExternalTopicViewerPlugin');

# (Optional) Set the details of the repository for uploads.
# This can be any web on any accessible Foswiki installation.
# These defaults will be used when expanding tokens in .txt
# files, but be warned, they can be overridden at upload time!

# name of web to upload to
$build->{UPLOADTARGETWEB} = 'Extensions';
# Full URL of pub directory
$build->{UPLOADTARGETPUB} = 'http://foswiki.org/pub';
# Full URL of bin directory
$build->{UPLOADTARGETSCRIPT} = 'http://foswiki.org/bin';
# Script extension
$build->{UPLOADTARGETSUFFIX} = '';

# Build the target on the command line, or the default target
$build->build($build->{target});

0 comments on commit a3d66ba

Please sign in to comment.