Changeset 6339


Ignore:
Timestamp:
02/15/10 21:11:45 (2 years ago)
Author:
GeorgeClark
Message:

Item1174: Prepare for release as beta release candidate

Location:
trunk/GenPDFAddOn/lib/Foswiki/Contrib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GenPDFAddOn/lib/Foswiki/Contrib/GenPDF.pm

    r6230 r6339  
    7171# It is *not* used by the build automation tools, but is reported as part 
    7272# of the version number in PLUGINDESCRIPTIONS. 
    73 our $RELEASE = '1.1-rc2'; 
     73our $RELEASE = '1.1-RC2'; 
    7474 
    7575$| = 1;    # Autoflush buffers 
  • trunk/GenPDFAddOn/lib/Foswiki/Contrib/GenPDFAddOn/build.pl

    r2237 r6339  
    11#!/usr/bin/perl -w 
    2 # 
    3 # Build file 
    4 # 
    5 package GenPDFAddOnBuild; 
    6  
    7 BEGIN { 
    8     foreach my $pc ( split( /:/, $ENV{FOSWIKI_LIBS} ) ) { 
    9         unshift @INC, $pc; 
    10     } 
    11 } 
    12  
     2BEGIN { unshift @INC, split( /:/, $ENV{FOSWIKI_LIBS} ); } 
    133use Foswiki::Contrib::Build; 
    144 
    15 @GenPDFAddOnBuild::ISA = ("Foswiki::Contrib::Build"); 
     5# Create the build object 
     6$build = new Foswiki::Contrib::Build('GenPDFAddOn'); 
    167 
    17 sub new { 
    18     my $class = shift; 
    19     return bless( $class->SUPER::new("GenPDFAddOn"), $class ); 
    20 } 
     8# (Optional) Set the details of the repository for uploads. 
     9# This can be any web on any accessible Foswiki installation. 
     10# These defaults will be used when expanding tokens in .txt 
     11# files, but be warned, they can be overridden at upload time! 
    2112 
    22 $build = new GenPDFAddOnBuild(); 
     13# name of web to upload to 
     14$build->{UPLOADTARGETWEB} = 'Sandbox/Beta'; 
     15 
     16# Full URL of pub directory 
     17$build->{UPLOADTARGETPUB} = 'http://foswiki.org/pub'; 
     18 
     19# Full URL of bin directory 
     20$build->{UPLOADTARGETSCRIPT} = 'http://foswiki.org/bin'; 
     21 
     22# Script extension 
     23$build->{UPLOADTARGETSUFFIX} = ''; 
     24 
     25# Build the target on the command line, or the default target 
    2326$build->build( $build->{target} ); 
     27 
Note: See TracChangeset for help on using the changeset viewer.