Skip to content

Commit

Permalink
Item14186: add missing Config.spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDaum committed Sep 9, 2016
1 parent 53561fc commit 4fb5ad6
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 21 deletions.
2 changes: 1 addition & 1 deletion bin/rtf
Expand Up @@ -2,7 +2,7 @@
#
# Foswiki Enterprise Collaboration Platform, http://foswiki.org/
#
# Copyright (C) 2007-2014 Michael Daum http://michaeldaumconsulting.com
# Copyright (C) 2007-2016 Michael Daum http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
31 changes: 16 additions & 15 deletions data/System/RtfContrib.txt
@@ -1,8 +1,6 @@
%META:TOPICINFO{author="ProjectContributor" comment="" date="1418734112" format="1.1" version="1"}%
---+!! RtfContrib
<!--
* Set SHORTDESCRIPTION = Extension to translate Foswiki markup to RTF
-->
%SHORTDESCRIPTION%
%FORMFIELD{"Description"}%

%TOC%

Expand Down Expand Up @@ -54,18 +52,21 @@ generate while translating Foswiki markup to RTF.

%$INSTALL_INSTRUCTIONS%

---++ Plugin Info
---++ Dependencies
%$DEPENDENCIES%

| Plugin Author(s): | Foswiki:Main/MichaelDaum |
| Copyright: | &copy; 2007-2014 Michael Daum http://michaeldaumconsulting.com |
| License: | [[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]] |
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
---++ Change History
| 09 Sep 2016: | added missing Config.spec file |
| 29 Aug 2014: | fully specify rest security |
| 12 Feb 2010: | language support in RTF templates |
| Dependencies: | %$DEPENDENCIES% |
| Plugin Home: | Foswiki:Extensions/RtfContrib |
| Support: | Foswiki:Support/RtfContrib |

<!-- Do _not_ attempt to edit this topic; it is auto-generated. Please add comments/questions/remarks to the Dev topic instead. -->
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="Foswiki:Main/MichaelDaum"}%
%META:FIELD{name="Copyright" title="Copyright" value="&copy; 2007-2016 Michael Daum http://michaeldaumconsulting.com"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="Foswiki:Extensions/RtfContrib"}%
%META:FIELD{name="License" title="License" value="[[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]]"}%
%META:FIELD{name="Release" title="Release" value="%$RELEASE%"}%
%META:FIELD{name="Repository" title="Repository" value="https://github.com/foswiki/%TOPIC%"}%
%META:FIELD{name="Support" title="Support" value="Foswiki:Support/RtfContrib"}%
%META:FIELD{name="Version" title="Version" value="%$VERSION%"}%
7 changes: 4 additions & 3 deletions lib/Foswiki/Contrib/RtfContrib.pm
@@ -1,6 +1,6 @@
# Plugin for Foswiki Collaboration Platform, http://foswiki.org/
#
# Copyright (C) 2007-2014 MichaelDaum http://michaeldaumconsulting.com
# Copyright (C) 2007-2016 MichaelDaum http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand All @@ -16,8 +16,9 @@ package Foswiki::Contrib::RtfContrib;
use strict;
use warnings;

our $VERSION = '2.10';
our $RELEASE = '2.10';
our $VERSION = '2.11';
our $RELEASE = '09 Sep 2016';
our $SHORTDESCRIPTION = 'Extension to translate Foswiki markup to RTF';

################################################################################
sub export {
Expand Down
11 changes: 11 additions & 0 deletions lib/Foswiki/Contrib/RtfContrib/Config.spec
@@ -0,0 +1,11 @@
# ---+ Extensions
# ---++ RtfContrib
# **PERL H LABEL="SwitchBoard - rtf"**
# This setting is required to enable executing rtf from the commandline
$Foswiki::cfg{SwitchBoard}{rtf} = {
package => 'Foswiki::Contrib::RtfContrib',
function => 'export',
contextg => {rtf => 1}
};

1;
2 changes: 1 addition & 1 deletion lib/Foswiki/Contrib/RtfContrib/Converter.pm
@@ -1,6 +1,6 @@
# Plugin for Foswiki Collaboration Platform, http://foswiki.org/
#
# Copyright (C) 2007-2014 MichaelDaum http://michaeldaumconsulting.com
# Copyright (C) 2007-2016 MichaelDaum http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 2 additions & 0 deletions lib/Foswiki/Contrib/RtfContrib/MANIFEST
@@ -1,6 +1,8 @@
bin/rtf 0755
data/System/RtfContrib.txt 0644
lib/Foswiki/Contrib/RtfContrib/Config.spec 0644
lib/Foswiki/Contrib/RtfContrib/Converter.pm 0644
lib/Foswiki/Contrib/RtfContrib/DEPENDENCIES 0644
lib/Foswiki/Contrib/RtfContrib.pm 0644
lib/Foswiki/Contrib/RtfContrib/TriConverter.pm 0644
templates/oopsrtfbase.tmpl 0644
Expand Down
2 changes: 1 addition & 1 deletion lib/Foswiki/Contrib/RtfContrib/TriConverter.pm
@@ -1,6 +1,6 @@
# Plugin for Foswiki Collaboration Platform, http://foswiki.org/
#
# Copyright (C) 2007-2014 MichaelDaum http://michaeldaumconsulting.com
# Copyright (C) 2007-2016 MichaelDaum http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down

0 comments on commit 4fb5ad6

Please sign in to comment.