Skip to content

Commit

Permalink
Item14237: Added FEATURES_INFO macro which outputs a table of active …
Browse files Browse the repository at this point in the history
…features
  • Loading branch information
vrurg committed Oct 5, 2017
1 parent 572437f commit b96cefb
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions core/lib/Foswiki/Macros/FEATURES_INFO.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# See bottom of file for license and copyright information
package Foswiki::Macros::FEATURES_INFO;

use Try::Tiny;
use Data::Dumper;
use Foswiki::FeatureSet qw<getNSFeatures featureMeta featureVersions>;

use Foswiki::Class qw(app);
extends qw<Foswiki::Object>;
with qw<Foswiki::Macro>;

sub expand {
my $this = shift;
my ( $params, $topicObject ) = @_;

my $result = "";

my $namespace = $params->{ns} // $params->{namespace} // undef;

my @fsList = getNSFeatures($namespace);

$result =
"| *Feature* | *Ver.introduced* | *Ver.depracted* | *Ver.obsoleted* | *Description* | *Orig.proposal* | *Documentation topic* |\n";

foreach my $feature ( sort @fsList ) {
my $fsMeta = featureMeta( $feature, -namespace => $namespace );
my $fsVersions = featureVersions( $feature, -namespace => $namespace );
my @row;

push @row, "=$feature=",
map { defined $_ ? $_->normal : "" } @$fsVersions;

push @row, Foswiki::entityEncode( $fsMeta->{"-description"} ) // "";
push @row,
defined( $fsMeta->{"-proposal"} )
? "[[https://foswiki.org/Development/"
. $fsMeta->{"-proposal"} . "]["
. $fsMeta->{"-proposal"} . "]]"
: "";
push @row, $fsMeta->{"-documentation"} // "";
$result .= "| " . join( " | ", @row ) . " |\n";
}

return $result;
}

1;

__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2017 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version. For
more details read LICENSE in the root of this distribution.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
As per the GPL, removal of this notice is prohibited.

0 comments on commit b96cefb

Please sign in to comment.