|
Revision 1588
(checked in by miyagawa, 2 years ago)
|
- Added Test::Perl::Critic test and t/perlcriticrc policy file
- Fixed 2 args open() to comfort with PBP
- Added ## no critic to express "I know what I'm doing"
|
| Line | |
|---|
| 1 |
package Plagger::Plugin::Subscription::Bookmarks::Mozilla; |
|---|
| 2 |
use strict; |
|---|
| 3 |
use base qw( Plagger::Plugin::Subscription::XPath ); |
|---|
| 4 |
|
|---|
| 5 |
use URI::file; |
|---|
| 6 |
|
|---|
| 7 |
sub load { |
|---|
| 8 |
my($self, $context) = @_; |
|---|
| 9 |
|
|---|
| 10 |
$self->conf->{url} = URI::file->new($self->conf->{path}); |
|---|
| 11 |
$self->SUPER::load($context); |
|---|
| 12 |
} |
|---|
| 13 |
|
|---|
| 14 |
1; |
|---|