Skip to content

Commit d65a54b

Browse files
committed
fix issue with private objects now showing up
1 parent ee81dbe commit d65a54b

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

Changes

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
Release Notes:
2+
v1.72 - 2015-03-23
3+
Changes
4+
Un-did change from 1.71 and fixed it correctly by changing the Doxyfile
5+
v1.71 - 2015-03-16
6+
Chnaged
7+
Fix issue where public objects were not showing up, if a private objects was found
28
v1.70 - 2015-03-16
39
Changes
410
Moved repo from sourceforge to github at https://github.com/jordan2175/doxygen-filter-perl
@@ -123,4 +129,4 @@ v0.99_01 - Initial Alpha Release (2011-10-21)
123129
the actual subroutines that they are tied to.
124130
Known Issues
125131
POD support is not yet included
126-
Only two structural indicators are currently supported - more to com
132+
Only two structural indicators are currently supported - more to com

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ EXTRACT_ALL = NO
426426
# be included in the documentation.
427427
# The default value is: NO.
428428

429-
EXTRACT_PRIVATE = NO
429+
EXTRACT_PRIVATE = YES
430430

431431
# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
432432
# scope will be included in the documentation.

lib/Doxygen/Filter.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use strict;
2727
use warnings;
2828
use Log::Log4perl;
2929

30-
our $VERSION = '1.71';
30+
our $VERSION = '1.72';
3131
$VERSION = eval $VERSION;
3232

3333

lib/Doxygen/Filter/Perl.pm

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use Pod::POM;
3131
use IO::Handle;
3232
use Doxygen::Filter::Perl::POD;
3333

34-
our $VERSION = '1.71';
34+
our $VERSION = '1.72';
3535
$VERSION = eval $VERSION;
3636

3737

@@ -427,7 +427,8 @@ sub PrintAll
427427
# Print all functions/methods in order of appearance, let doxygen take care of grouping them according to modifiers
428428
# I added this print public line to make sure the functions print if one of
429429
# the previous elements was a my $a = 1 and thus had a print "private:"
430-
print("public:\n");
430+
# This is no longer needed, fixed it in the Doxyfile instead.
431+
# print("public:\n");
431432
foreach my $methodName (@{$self->{'_hData'}->{'class'}->{$class}->{'subroutineorder'}})
432433
{
433434
$self->_PrintMethodBlock($class, $methodName);

lib/Doxygen/Filter/Perl/POD.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use warnings;
2828
use parent qw(Pod::POM::View::HTML);
2929
use Log::Log4perl;
3030

31-
our $VERSION = '1.71';
31+
our $VERSION = '1.72';
3232
$VERSION = eval $VERSION;
3333

3434

0 commit comments

Comments
 (0)