Changeset 703
- Timestamp:
- 11/02/05 02:17:04 (3 years ago)
- Location:
- trunk
- Files:
-
- 5 modified
-
Build.PL (modified) (1 diff)
-
Changes (modified) (2 diffs)
-
PREREQUISITES (modified) (1 diff)
-
lib/OpenGuides.pm (modified) (1 diff)
-
lib/OpenGuides/RDF.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Build.PL
r698 r703 223 223 'CGI::Wiki::Plugin::Diff' => '0.07', # earlier buggy 224 224 'CGI::Wiki::Plugin::Locator::Grid'=> '0.02', # cope with sqlite 3 225 'CGI::Wiki::Plugin::RSS::ModWiki' => '0.0 73', # earlier doesn't escape XML properly225 'CGI::Wiki::Plugin::RSS::ModWiki' => '0.08', # supports DOAP metadata 226 226 'CGI::Wiki::Plugin::RSS::Reader' => '1.3', # earlier versions don't support RSS 2.0 227 227 'Class::Accessor' => 0, -
trunk/Changes
r702 r703 16 16 - Show node summary in search results. 17 17 * New "format=raw" option for outputting wiki text of a node. 18 * RSS feed now contains DOAP (http://usefulinc.com/doap) metadata. 18 19 19 20 RDF bugfixes: … … 23 24 * Add "address" field that was missing from the RDF node view. 24 25 * Update URL for Dublin Core elements in RDF index view. 26 * Fix URL in the RSS <channel> element to point to the RSS URL, 27 not the RecentChanges page URL. 25 28 26 29 Search bugfixes: -
trunk/PREREQUISITES
r698 r703 11 11 CGI::Wiki::Plugin::Diff (version 0.07 or later) 12 12 CGI::Wiki::Plugin::Locator::Grid (version 0.02 or later) 13 CGI::Wiki::Plugin::RSS::ModWiki (version 0.0 73or later)13 CGI::Wiki::Plugin::RSS::ModWiki (version 0.08 or later) 14 14 CGI::Wiki::Plugin::RSS::Reader (version 1.3 or later) 15 15 Class::Accessor -
trunk/lib/OpenGuides.pm
r700 r703 661 661 662 662 my $rdf_writer = OpenGuides::RDF->new( 663 wiki => $self->wiki, 664 config => $self->config 663 wiki => $self->wiki, 664 config => $self->config, 665 og_version => $VERSION, 665 666 ); 666 667 my $output = "Content-Type: text/plain\n"; -
trunk/lib/OpenGuides/RDF.pm
r697 r703 4 4 5 5 use vars qw( $VERSION ); 6 $VERSION = '0.0 71';6 $VERSION = '0.08'; 7 7 8 8 use CGI::Wiki::Plugin::RSS::ModWiki; … … 51 51 $self->{default_country} = $config->default_country || ""; 52 52 $self->{site_description} = $config->site_desc || ""; 53 $self->{og_version} = $args{og_version}; 53 54 54 55 $self; … … 208 209 wiki => $self->{wiki}, 209 210 site_name => $self->{site_name}, 211 site_url => $self->{config}->script_url, 210 212 site_description => $self->{site_description}, 211 213 make_node_url => $self->{make_node_url}, 212 recent_changes_link => $self->{config}->script_url . uri_escape($self->{config}->script_name) . "?RecentChanges" 214 recent_changes_link => $self->{config}->script_url . '?action=rss', 215 software_name => 'OpenGuides', 216 software_homepage => 'http://openguides.org/', 217 software_version => $self->{og_version}, 213 218 ); 214 219 }
