| 26 | | $query{'url'} = $entry->permalink; |
|---|
| 27 | | $query{'description'} = encode('utf-8', $entry->title); |
|---|
| 28 | | $query{'tags'} = $self->conf->{tags} if $self->conf->{tags}; |
|---|
| 29 | | $query{'jump'} = 'doclose' if $self->conf->{one_click_post} == 1; |
|---|
| | 26 | $query{url} = $entry->permalink; |
|---|
| | 27 | $query{description} = encode('utf-8', $entry->title); |
|---|
| | 28 | $query{tags} = $self->conf->{tags} if $self->conf->{tags}; |
|---|
| | 29 | $query{jump} = 'doclose' if $self->conf->{one_click_post}; |
|---|
| | 30 | |
|---|
| | 38 | |
|---|
| | 39 | __END__ |
|---|
| | 40 | |
|---|
| | 41 | =head1 NAME |
|---|
| | 42 | |
|---|
| | 43 | Plagger::Plugin::Widget::Delicious - Widget to post to del.icio.us |
|---|
| | 44 | |
|---|
| | 45 | =head1 SYNOPSIS |
|---|
| | 46 | |
|---|
| | 47 | module: Widget::Delicious |
|---|
| | 48 | config: |
|---|
| | 49 | username: miyagawa |
|---|
| | 50 | |
|---|
| | 51 | =head1 DESCRIPTION |
|---|
| | 52 | |
|---|
| | 53 | This plugin creates a widget to post to del.icio.us in the Publish |
|---|
| | 54 | modules output. |
|---|
| | 55 | |
|---|
| | 56 | =head1 CONFIG |
|---|
| | 57 | |
|---|
| | 58 | =over 4 |
|---|
| | 59 | |
|---|
| | 60 | =item username |
|---|
| | 61 | |
|---|
| | 62 | Your del.icio.us username. Required. |
|---|
| | 63 | |
|---|
| | 64 | =item tags |
|---|
| | 65 | |
|---|
| | 66 | Preset tags to tag the post. |
|---|
| | 67 | |
|---|
| | 68 | tags: foo bar |
|---|
| | 69 | |
|---|
| | 70 | will set I<foo bar> as a predefined tag to use. Optional. |
|---|
| | 71 | |
|---|
| | 72 | =item one_click_post |
|---|
| | 73 | |
|---|
| | 74 | Flag to indicate that clicking the widget will automatically post the |
|---|
| | 75 | item, without showing the form. Defaults to 0. (Optional) |
|---|
| | 76 | |
|---|
| | 77 | =back |
|---|
| | 78 | |
|---|
| | 79 | =head1 AUTHOR |
|---|
| | 80 | |
|---|
| | 81 | Tatsuhiko Miyagawa |
|---|
| | 82 | |
|---|
| | 83 | =head1 SEE ALSO |
|---|
| | 84 | |
|---|
| | 85 | L<Plagger>, L<http://del.icio.us/> |
|---|
| | 86 | |
|---|
| | 87 | =cut |
|---|