Skip to content

Commit

Permalink
Item718: porting BlogAddOn
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/BlogAddOn@1907 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
ArthurClemens authored and ArthurClemens committed Jan 10, 2009
1 parent 9d9bcec commit 645febb
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 0 deletions.
15 changes: 15 additions & 0 deletions lib/Foswiki/Contrib/BlogAddOn.pm
@@ -0,0 +1,15 @@
package Foswiki::Contrib::BlogAddOn;

use vars qw( $VERSION $RELEASE );
# This should always be $Rev$ so that Foswiki can determine the
# checked-in status of the plugin. It is used by the build automation tools, so
# you should leave it alone.
$VERSION = '$Rev$';

# This is a free-form string you can use to "name" your own plugin version.
# It is *not* used by the build automation tools, but is reported as part
# of the version number in PLUGINDESCRIPTIONS.
$RELEASE = '1.3';


1;
4 changes: 4 additions & 0 deletions lib/Foswiki/Contrib/BlogAddOn/Config.spec
@@ -0,0 +1,4 @@
#---+ BlogAddOn
# **BOOLEAN**
#Show author pictures from PersonalInfoAddOn
$Foswiki::cfg{Plugins}{BlogAddOn}{ShowPersonalInfoAddOnPictures} = '0';
1 change: 1 addition & 0 deletions lib/Foswiki/Contrib/BlogAddOn/DEPENDENCIES
@@ -0,0 +1 @@
Foswiki::Plugins::CommentPlugin,>=13313,perl,Required
14 changes: 14 additions & 0 deletions lib/Foswiki/Contrib/BlogAddOn/MANIFEST
@@ -0,0 +1,14 @@
lib/Foswiki/Contrib/BlogAddOn/Config.spec 0444 Spec file for =configure=
data/System/BlogAddOn.txt 0660
data/_BlogAddOn/BlogAddOnHome.txt 0660
data/_BlogAddOn/BlogAddOnStyles.txt 0660
data/_BlogAddOn/BlogPostCommentTemplate.txt 0660
data/_BlogAddOn/BlogCategory.txt 0660
data/_BlogAddOn/BlogPost.txt 0660
data/_BlogAddOn/BlogPostCreator.txt 0660
data/_BlogAddOn/BlogPostExample.txt 0660
data/_BlogAddOn/BlogPostForm.txt 0660
data/_BlogAddOn/BlogPostTemplate.txt 0660
data/_BlogAddOn/BlogPostViewTemplate.txt 0660
pub/System/BlogAddOn/screenshot_list.png 0660
pub/System/BlogAddOn/screenshot_post.png 0660
18 changes: 18 additions & 0 deletions lib/Foswiki/Contrib/BlogAddOn/build.pl
@@ -0,0 +1,18 @@
#!/usr/bin/perl -w
#
# Build for BlogAddOn
#
BEGIN {
foreach my $pc (split(/:/, $ENV{FOSWIKI_LIBS})) {
unshift @INC, $pc;
}
}

use Foswiki::Contrib::Build;

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

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

Binary file added pub/System/BlogAddOn/example.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/BlogAddOn/screenshot_list.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/BlogAddOn/screenshot_post.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 645febb

Please sign in to comment.