This file is indexed.

/usr/share/perl5/Socialtext/WikiObject/YAML.pm is in libsocialtext-resting-utils-perl 0.21-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package Socialtext::WikiObject::YAML;
use strict;
use warnings;
use base 'Socialtext::WikiObject::PreBlock';
use YAML;

=head1 NAME

Socialtext::WikiObject::YAML - Parse page content as YAML

=cut

our $VERSION = '0.01';

=head1 METHODS

=head2 parse_wikitext()

Override parent method to load the wikitext as YAML.

=cut

sub parse_wikitext {
    my $self = shift;
    my $wikitext = shift;

    $self->SUPER::parse_wikitext($wikitext);
    $wikitext = $self->pre_block;

    my $data = {};
    eval { $data = Load($wikitext) };
    $data->{yaml_error} = $@ if $@;
    $self->{_hash} = $data;

    # Store the data into $self
    for my $k (keys %$data) {
        $self->{$k} = $self->{lc $k} = $data->{$k};
    }
}

=head2 as_hash

Return the parsed YAML as a hash.

=cut

sub as_hash { $_[0]->{_hash} }

# TODO - Add AUTOLOADed methods?

=head1 AUTHOR

Luke Closs, C<< <luke.closs at socialtext.com> >>

=head1 BUGS

Please report any bugs or feature requests to
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Socialtext-Resting-Utils>.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.

=head1 COPYRIGHT & LICENSE

Copyright 2007 Luke Closs, all rights reserved.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

=cut

1;