automatic 14.12.2 → 26.08
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +635 -83
- data/VERSION +1 -1
- data/automatic.gemspec +109 -248
- data/bin/automatic +20 -139
- data/config/feed2console.yml +10 -4
- data/config/feed2markdown.yml +41 -0
- data/doc/AI_TUTORIAL.md +518 -0
- data/doc/BASIC_DESIGN.md +516 -0
- data/doc/COPYING.LESSER +165 -0
- data/doc/DEPLOYMENT.md +824 -0
- data/doc/LICENSE.md +14 -0
- data/doc/PLUGINS.md +1875 -0
- data/doc/PLUGIN_DEVELOPMENT.md +86 -0
- data/doc/POLICY.md +857 -0
- data/doc/QUICKSTART.md +256 -0
- data/doc/RELEASING.md +381 -0
- data/doc/REQUIREMENTS.md +526 -0
- data/doc/VERSIONS +208 -0
- data/lib/automatic/cli.rb +248 -0
- data/lib/automatic/environment.rb +31 -5
- data/lib/automatic/feed_maker.rb +10 -9
- data/lib/automatic/feed_parser.rb +51 -35
- data/lib/automatic/http.rb +107 -0
- data/lib/automatic/log.rb +49 -18
- data/lib/automatic/opml.rb +3 -1
- data/lib/automatic/pipeline.rb +63 -32
- data/lib/automatic/recipe.rb +56 -17
- data/lib/automatic/version.rb +14 -1
- data/lib/automatic.rb +78 -20
- data/plugins/custom_feed/svn_log.rb +73 -32
- data/plugins/custom_feed/web.rb +348 -0
- data/plugins/filter/absolute_uri.rb +43 -27
- data/plugins/filter/accept.rb +38 -45
- data/plugins/filter/claude.rb +217 -0
- data/plugins/filter/clear.rb +12 -8
- data/plugins/filter/description_link.rb +49 -51
- data/plugins/filter/full_feed.rb +158 -52
- data/plugins/filter/gemini.rb +216 -0
- data/plugins/filter/github_feed.rb +38 -26
- data/plugins/filter/ignore.rb +33 -44
- data/plugins/filter/image.rb +36 -25
- data/plugins/filter/image_source.rb +58 -52
- data/plugins/filter/join.rb +107 -0
- data/plugins/filter/one.rb +19 -26
- data/plugins/filter/open_ai.rb +198 -0
- data/plugins/filter/rand.rb +16 -17
- data/plugins/filter/sakura_ai.rb +205 -0
- data/plugins/filter/sanitize.rb +29 -34
- data/plugins/filter/sort.rb +20 -27
- data/plugins/filter/tumblr_resize.rb +31 -23
- data/plugins/notify/ikachan.rb +86 -48
- data/plugins/provide/fluentd.rb +43 -24
- data/plugins/publish/amazon_s3.rb +73 -40
- data/plugins/publish/console.rb +19 -16
- data/plugins/publish/console_link.rb +20 -17
- data/plugins/publish/eject.rb +48 -26
- data/plugins/publish/fluentd.rb +50 -30
- data/plugins/publish/hatena_bookmark.rb +88 -71
- data/plugins/publish/instapaper.rb +69 -59
- data/plugins/publish/markdown.rb +278 -0
- data/plugins/publish/memcached.rb +35 -29
- data/plugins/store/database.rb +50 -48
- data/plugins/store/digest.rb +212 -0
- data/plugins/store/file.rb +99 -68
- data/plugins/store/full_text.rb +32 -25
- data/plugins/store/permalink.rb +18 -22
- data/plugins/subscription/feed.rb +34 -21
- data/plugins/subscription/link.rb +31 -32
- data/plugins/subscription/text.rb +32 -46
- data/plugins/subscription/tumblr.rb +55 -44
- data/plugins/subscription/xml.rb +40 -36
- metadata +108 -321
- data/Gemfile +0 -38
- data/Rakefile +0 -59
- data/doc/ChangeLog +0 -303
- data/doc/PLUGINS +0 -750
- data/doc/PLUGINS.ja +0 -753
- data/doc/README +0 -511
- data/doc/README.ja +0 -519
- data/plugins/filter/google_news.rb +0 -50
- data/plugins/publish/google_calendar.rb +0 -84
- data/plugins/publish/hipchat.rb +0 -46
- data/plugins/publish/pocket.rb +0 -45
- data/plugins/publish/twitter.rb +0 -58
- data/plugins/subscription/chan_toru.rb +0 -57
- data/plugins/subscription/g_guide.rb +0 -57
- data/plugins/subscription/pocket.rb +0 -51
- data/plugins/subscription/twitter.rb +0 -69
- data/plugins/subscription/twitter_search.rb +0 -50
- data/plugins/subscription/weather.rb +0 -33
- data/script/build +0 -84
- data/spec/fixtures/sampleFeeds.tsv +0 -1
- data/spec/fixtures/sampleFeeds2.tsv +0 -2
- data/spec/fixtures/sampleRecipe.yml +0 -24
- data/spec/lib/automatic/log_spec.rb +0 -32
- data/spec/lib/automatic/pipeline_spec.rb +0 -68
- data/spec/lib/automatic/recipe_spec.rb +0 -40
- data/spec/lib/automatic_spec.rb +0 -99
- data/spec/plugins/custom_feed/svn_log_spec.rb +0 -31
- data/spec/plugins/filter/absolute_uri_spec.rb +0 -61
- data/spec/plugins/filter/accept_spec.rb +0 -331
- data/spec/plugins/filter/clear_spec.rb +0 -49
- data/spec/plugins/filter/description_link_spec.rb +0 -138
- data/spec/plugins/filter/full_feed_spec.rb +0 -129
- data/spec/plugins/filter/github_feed_spec.rb +0 -55
- data/spec/plugins/filter/google_news_spec.rb +0 -69
- data/spec/plugins/filter/ignore_spec.rb +0 -328
- data/spec/plugins/filter/image_source_spec.rb +0 -89
- data/spec/plugins/filter/image_spec.rb +0 -65
- data/spec/plugins/filter/one_spec.rb +0 -71
- data/spec/plugins/filter/rand_spec.rb +0 -52
- data/spec/plugins/filter/sanitize_spec.rb +0 -153
- data/spec/plugins/filter/sort_spec.rb +0 -189
- data/spec/plugins/filter/tumblr_resize_spec.rb +0 -109
- data/spec/plugins/notify/ikachan_spec.rb +0 -58
- data/spec/plugins/provide/fluentd_spec.rb +0 -49
- data/spec/plugins/publish/amazon_s3_spec.rb +0 -40
- data/spec/plugins/publish/console_spec.rb +0 -30
- data/spec/plugins/publish/eject_spec.rb +0 -40
- data/spec/plugins/publish/fluentd_spec.rb +0 -40
- data/spec/plugins/publish/google_calendar_spec.rb +0 -83
- data/spec/plugins/publish/hatena_bookmark_spec.rb +0 -134
- data/spec/plugins/publish/hipchat_spec.rb +0 -69
- data/spec/plugins/publish/instapaper_spec.rb +0 -82
- data/spec/plugins/publish/memcached_spec.rb +0 -63
- data/spec/plugins/publish/pocket_spec.rb +0 -51
- data/spec/plugins/publish/twitter_spec.rb +0 -73
- data/spec/plugins/store/file_spec.rb +0 -58
- data/spec/plugins/store/full_text_spec.rb +0 -152
- data/spec/plugins/store/permalink_spec.rb +0 -206
- data/spec/plugins/subscription/chan_toru_spec.rb +0 -56
- data/spec/plugins/subscription/feed_spec.rb +0 -71
- data/spec/plugins/subscription/g_guide_spec.rb +0 -82
- data/spec/plugins/subscription/link_spec.rb +0 -72
- data/spec/plugins/subscription/pocket_spec.rb +0 -57
- data/spec/plugins/subscription/text_spec.rb +0 -84
- data/spec/plugins/subscription/tumblr_spec.rb +0 -74
- data/spec/plugins/subscription/twitter_search_spec.rb +0 -57
- data/spec/plugins/subscription/twitter_spec.rb +0 -73
- data/spec/plugins/subscription/weather_spec.rb +0 -44
- data/spec/plugins/subscription/xml_spec.rb +0 -84
- data/spec/spec_helper.rb +0 -106
- data/spec/user_dir/plugins/store/mock.rb +0 -16
- data/test/fixtures/sampleOPML.xml +0 -11
- data/test/integration/test_absoluteurl.yml +0 -25
- data/test/integration/test_activerecord.yml +0 -24
- data/test/integration/test_add_pocket.yml +0 -26
- data/test/integration/test_chan_toru.yml +0 -21
- data/test/integration/test_descriptionlink.yml +0 -21
- data/test/integration/test_fluentd.yml +0 -22
- data/test/integration/test_fulltext.yml +0 -30
- data/test/integration/test_google_news.yml +0 -21
- data/test/integration/test_googlealert.yml +0 -21
- data/test/integration/test_hatenabookmark.yml +0 -30
- data/test/integration/test_ignore.yml +0 -25
- data/test/integration/test_ignore2.yml +0 -22
- data/test/integration/test_image2local.yml +0 -33
- data/test/integration/test_instapaper.yml +0 -26
- data/test/integration/test_link2local.yml +0 -34
- data/test/integration/test_one.yml +0 -23
- data/test/integration/test_pocket.yml +0 -22
- data/test/integration/test_rand.yml +0 -21
- data/test/integration/test_sanitize.yml +0 -23
- data/test/integration/test_sort.yml +0 -36
- data/test/integration/test_svnlog.yml +0 -15
- data/test/integration/test_text2feed.yml +0 -36
- data/test/integration/test_tumblr2local.yml +0 -43
- data/test/integration/test_twitter_search.yml +0 -22
- data/test/integration/test_weather.yml +0 -19
- data/test/integration/test_xml2fluentd.yml +0 -21
- data/vendor/.gitkeep +0 -0
data/spec/spec_helper.rb
DELETED
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Name:: Automatic::Spec
|
|
3
|
-
# Updated:: Mar 14, 2013
|
|
4
|
-
|
|
5
|
-
APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
|
6
|
-
$LOAD_PATH.unshift APP_ROOT
|
|
7
|
-
$LOAD_PATH.unshift File.join(APP_ROOT)
|
|
8
|
-
$LOAD_PATH.unshift File.join(APP_ROOT, 'lib')
|
|
9
|
-
$LOAD_PATH.unshift File.join(APP_ROOT, 'plugins')
|
|
10
|
-
|
|
11
|
-
ENV["AUTOMATIC_RUBY_ENV"] ||= "test"
|
|
12
|
-
Bundler.require :test if defined?(Bundler)
|
|
13
|
-
|
|
14
|
-
if ENV['COVERAGE'] == 'on'
|
|
15
|
-
require 'simplecov'
|
|
16
|
-
require 'simplecov-rcov'
|
|
17
|
-
SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
|
|
18
|
-
|
|
19
|
-
SimpleCov.start do
|
|
20
|
-
add_filter "spec"
|
|
21
|
-
add_filter "vendor"
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
|
|
25
|
-
require 'lib/automatic'
|
|
26
|
-
Automatic::Log.level('none')
|
|
27
|
-
|
|
28
|
-
# Requires supporting files with custom matchers and macros, etc,
|
|
29
|
-
# in ./support/ and its subdirectories.
|
|
30
|
-
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
|
31
|
-
|
|
32
|
-
if RUBY_VERSION < '1.9.0'
|
|
33
|
-
require 'rspec'
|
|
34
|
-
end
|
|
35
|
-
|
|
36
|
-
RSpec.configure do |config|
|
|
37
|
-
config.mock_with :rspec
|
|
38
|
-
end
|
|
39
|
-
|
|
40
|
-
module AutomaticSpec
|
|
41
|
-
class << self
|
|
42
|
-
def generate_pipeline(&block)
|
|
43
|
-
pipeline_generator = StubPipelineGenerator.new
|
|
44
|
-
pipeline_generator.instance_eval(&block)
|
|
45
|
-
pipeline_generator.pipeline
|
|
46
|
-
end
|
|
47
|
-
|
|
48
|
-
def root_dir
|
|
49
|
-
File.join(__FILE__, "../../")
|
|
50
|
-
end
|
|
51
|
-
|
|
52
|
-
def db_dir
|
|
53
|
-
dir = (File.expand_path('~/.automatic/db'))
|
|
54
|
-
if File.directory?(dir)
|
|
55
|
-
dir
|
|
56
|
-
else
|
|
57
|
-
File.join(root_dir, "db")
|
|
58
|
-
end
|
|
59
|
-
end
|
|
60
|
-
end
|
|
61
|
-
|
|
62
|
-
class StubPipelineGenerator
|
|
63
|
-
attr_reader :pipeline
|
|
64
|
-
|
|
65
|
-
def initialize
|
|
66
|
-
@pipeline = []
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
def feed(&block)
|
|
70
|
-
generator = StubFeedGenerator.new
|
|
71
|
-
generator.instance_eval(&block)
|
|
72
|
-
@pipeline << generator.feed
|
|
73
|
-
end
|
|
74
|
-
end
|
|
75
|
-
|
|
76
|
-
class StubFeedGenerator
|
|
77
|
-
def initialize
|
|
78
|
-
@channel = RSS::Rss::Channel.new
|
|
79
|
-
end
|
|
80
|
-
|
|
81
|
-
def feed
|
|
82
|
-
rss = RSS::Rss.new([])
|
|
83
|
-
rss.instance_variable_set(:@channel, @channel)
|
|
84
|
-
rss
|
|
85
|
-
end
|
|
86
|
-
|
|
87
|
-
def item(url,
|
|
88
|
-
title="",
|
|
89
|
-
description="",
|
|
90
|
-
date="",
|
|
91
|
-
author="",
|
|
92
|
-
source="",
|
|
93
|
-
enclosure=""
|
|
94
|
-
)
|
|
95
|
-
i = RSS::Rss::Channel::Item.new
|
|
96
|
-
i.link = url
|
|
97
|
-
i.title = title unless title.blank?
|
|
98
|
-
i.instance_variable_set(:@description, description)
|
|
99
|
-
i.pubDate = date unless date.blank?
|
|
100
|
-
i.author = author unless author.blank?
|
|
101
|
-
i.source = source unless source.blank?
|
|
102
|
-
i.enclosure = enclosure unless enclosure.blank?
|
|
103
|
-
@channel.items << i
|
|
104
|
-
end
|
|
105
|
-
end
|
|
106
|
-
end
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Name:: Automatic::StoreMock
|
|
3
|
-
# Updated:: Jun 14, 2012
|
|
4
|
-
|
|
5
|
-
module Automatic::Plugin
|
|
6
|
-
class StoreMock
|
|
7
|
-
def initialize(config, pipeline = [])
|
|
8
|
-
@config = config
|
|
9
|
-
@pipeline = pipeline
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
def run
|
|
13
|
-
@pipeline[0]
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<opml version="1.0">
|
|
3
|
-
<head>
|
|
4
|
-
<title>Sample OPML file</title>
|
|
5
|
-
</head>
|
|
6
|
-
<body>
|
|
7
|
-
<outline title="UserJS.org news" text="UserJS.org news" type="rss" version="RSS" xmlUrl="http://userjs.org/subscribe/news" htmlUrl="http://userjs.org/"/>
|
|
8
|
-
<outline title="Olli's blog" text="Olli's blog" type="rss" version="RSS" xmlUrl="http://my.opera.com/olli/xml/atom/blog/" htmlUrl="http://my.opera.com/olli/"/>
|
|
9
|
-
<outline title="Astronomy Picture of the Day" text="Astronomy Picture of the Day" type="rss" version="RSS" fix091="yes" xmlUrl="http://www.jwz.org/cheesegrater/RSS/apod.rss" htmlUrl="http://antwrp.gsfc.nasa.gov/apod/"/>
|
|
10
|
-
</body>
|
|
11
|
-
</opml>
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionLink
|
|
10
|
-
config:
|
|
11
|
-
urls:
|
|
12
|
-
- http://alsscan.com/photos.html
|
|
13
|
-
|
|
14
|
-
- module: FilterImage
|
|
15
|
-
|
|
16
|
-
- module: FilterAbsoluteURI
|
|
17
|
-
config:
|
|
18
|
-
url: http://alsscan.com/
|
|
19
|
-
|
|
20
|
-
- module: StorePermalink
|
|
21
|
-
config:
|
|
22
|
-
db: test_absoluteuri.db
|
|
23
|
-
|
|
24
|
-
#- module: PublishConsole
|
|
25
|
-
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterIgnore
|
|
15
|
-
config:
|
|
16
|
-
link:
|
|
17
|
-
- hoge
|
|
18
|
-
|
|
19
|
-
- module: StorePermalink
|
|
20
|
-
config:
|
|
21
|
-
db: test_permalink.db
|
|
22
|
-
|
|
23
|
-
#- module: PublishConsole
|
|
24
|
-
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: StorePermalink
|
|
15
|
-
config:
|
|
16
|
-
db: test_instapaper.db
|
|
17
|
-
|
|
18
|
-
- module: PublishPocket
|
|
19
|
-
config:
|
|
20
|
-
consumer_key: consumer_key
|
|
21
|
-
access_token: access_token
|
|
22
|
-
interval: 2
|
|
23
|
-
retry: 2
|
|
24
|
-
|
|
25
|
-
#- module: PublishConsole
|
|
26
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: none
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionChanToru
|
|
10
|
-
config:
|
|
11
|
-
keyword: 'アニメ'
|
|
12
|
-
station: '地上波'
|
|
13
|
-
interval: 2
|
|
14
|
-
retry: 2
|
|
15
|
-
|
|
16
|
-
- module: StorePermalink
|
|
17
|
-
config:
|
|
18
|
-
db: test_chan_toru.db
|
|
19
|
-
|
|
20
|
-
#- module: PublishConsoleLink
|
|
21
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://reblog.id774.net/rss
|
|
13
|
-
|
|
14
|
-
- module: FilterDescriptionLink
|
|
15
|
-
|
|
16
|
-
- module: StorePermalink
|
|
17
|
-
config:
|
|
18
|
-
db: test_description_link.db
|
|
19
|
-
|
|
20
|
-
#- module: PublishConsole
|
|
21
|
-
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: PublishFluentd
|
|
15
|
-
config:
|
|
16
|
-
host: localhost
|
|
17
|
-
port: 10000
|
|
18
|
-
tag: automatic_test.publish_fluentd
|
|
19
|
-
mode: test
|
|
20
|
-
|
|
21
|
-
# - module: PublishConsole
|
|
22
|
-
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterIgnore
|
|
15
|
-
config:
|
|
16
|
-
link:
|
|
17
|
-
- hoge
|
|
18
|
-
|
|
19
|
-
# - module: PublishConsole
|
|
20
|
-
|
|
21
|
-
- module: FilterFullFeed
|
|
22
|
-
config:
|
|
23
|
-
siteinfo: items_all.json
|
|
24
|
-
|
|
25
|
-
# - module: PublishConsole
|
|
26
|
-
|
|
27
|
-
- module: StoreFullText
|
|
28
|
-
config:
|
|
29
|
-
db: test_blog.db
|
|
30
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://news.google.com/news?hl=ja&ned=us&ie=UTF-8&oe=UTF-8&output=rss
|
|
13
|
-
|
|
14
|
-
- module: FilterGoogleNews
|
|
15
|
-
|
|
16
|
-
- module: StorePermalink
|
|
17
|
-
config:
|
|
18
|
-
db: test_google_news.db
|
|
19
|
-
|
|
20
|
-
- module: PublishConsole
|
|
21
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://www.google.com/alerts/feeds/01922355350745702683/544996148035630811
|
|
13
|
-
- http://www.google.com/alerts/feeds/01922355350745702683/18239124957297333757
|
|
14
|
-
- http://www.google.com/alerts/feeds/01922355350745702683/11755855657646433816
|
|
15
|
-
|
|
16
|
-
#- module: PublishConsole
|
|
17
|
-
|
|
18
|
-
- module: StoreFullText
|
|
19
|
-
config:
|
|
20
|
-
db: test_googlealert.db
|
|
21
|
-
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterIgnore
|
|
15
|
-
config:
|
|
16
|
-
link:
|
|
17
|
-
- hoge
|
|
18
|
-
|
|
19
|
-
- module: StorePermalink
|
|
20
|
-
config:
|
|
21
|
-
db: test_permalink.db
|
|
22
|
-
|
|
23
|
-
- module: PublishHatenaBookmark
|
|
24
|
-
config:
|
|
25
|
-
username: username
|
|
26
|
-
password: password
|
|
27
|
-
interval: 1
|
|
28
|
-
|
|
29
|
-
#- module: PublishConsole
|
|
30
|
-
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterIgnore
|
|
15
|
-
config:
|
|
16
|
-
title:
|
|
17
|
-
- Twitter
|
|
18
|
-
|
|
19
|
-
- module: FilterIgnore
|
|
20
|
-
config:
|
|
21
|
-
description:
|
|
22
|
-
- Facebook
|
|
23
|
-
|
|
24
|
-
#- module: PublishConsole
|
|
25
|
-
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterIgnore
|
|
15
|
-
config:
|
|
16
|
-
title:
|
|
17
|
-
- Twitter
|
|
18
|
-
description:
|
|
19
|
-
- Facebook
|
|
20
|
-
|
|
21
|
-
#- module: PublishConsole
|
|
22
|
-
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://reblog.id774.net/rss
|
|
13
|
-
|
|
14
|
-
- module: FilterImageSource
|
|
15
|
-
|
|
16
|
-
- module: FilterTumblrResize
|
|
17
|
-
|
|
18
|
-
- module: StorePermalink
|
|
19
|
-
config:
|
|
20
|
-
db: test_image.db
|
|
21
|
-
|
|
22
|
-
- module: StoreFile
|
|
23
|
-
config:
|
|
24
|
-
path: /tmp
|
|
25
|
-
retry: 2
|
|
26
|
-
interval: 2
|
|
27
|
-
|
|
28
|
-
- module: StorePermalink
|
|
29
|
-
config:
|
|
30
|
-
db: test_image2.db
|
|
31
|
-
|
|
32
|
-
# - module: PublishConsole
|
|
33
|
-
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: StorePermalink
|
|
15
|
-
config:
|
|
16
|
-
db: test_instapaper.db
|
|
17
|
-
|
|
18
|
-
- module: PublishInstapaper
|
|
19
|
-
config:
|
|
20
|
-
email: your_email
|
|
21
|
-
password: your_pass
|
|
22
|
-
interval: 2
|
|
23
|
-
retry: 2
|
|
24
|
-
|
|
25
|
-
#- module: PublishConsole
|
|
26
|
-
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionLink
|
|
10
|
-
config:
|
|
11
|
-
urls:
|
|
12
|
-
- http://reblog.id774.net
|
|
13
|
-
|
|
14
|
-
- module: SubscriptionLink
|
|
15
|
-
config:
|
|
16
|
-
urls:
|
|
17
|
-
- http://reblog.id774.net
|
|
18
|
-
interval: 1
|
|
19
|
-
|
|
20
|
-
- module: SubscriptionLink
|
|
21
|
-
config:
|
|
22
|
-
urls:
|
|
23
|
-
- http://reblog.id774.net
|
|
24
|
-
interval: 2
|
|
25
|
-
retry: 2
|
|
26
|
-
|
|
27
|
-
- module: FilterImage
|
|
28
|
-
|
|
29
|
-
- module: StorePermalink
|
|
30
|
-
config:
|
|
31
|
-
db: test_link.db
|
|
32
|
-
|
|
33
|
-
#- module: PublishConsole
|
|
34
|
-
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterOne
|
|
15
|
-
config:
|
|
16
|
-
pick: last
|
|
17
|
-
|
|
18
|
-
- module: StorePermalink
|
|
19
|
-
config:
|
|
20
|
-
db: test_one.db
|
|
21
|
-
|
|
22
|
-
# - module: PublishConsole
|
|
23
|
-
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: warn
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionPocket
|
|
10
|
-
config:
|
|
11
|
-
consumer_key: 'consumer_key'
|
|
12
|
-
access_token: 'access_token'
|
|
13
|
-
optional:
|
|
14
|
-
favorite: 3
|
|
15
|
-
count: 2
|
|
16
|
-
|
|
17
|
-
- module: StorePermalink
|
|
18
|
-
config:
|
|
19
|
-
db: test_pocket.db
|
|
20
|
-
|
|
21
|
-
#- module: PublishConsole
|
|
22
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterRand
|
|
15
|
-
|
|
16
|
-
- module: StorePermalink
|
|
17
|
-
config:
|
|
18
|
-
db: test_rand.db
|
|
19
|
-
|
|
20
|
-
# - module: PublishConsole
|
|
21
|
-
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: FilterSanitize
|
|
15
|
-
config:
|
|
16
|
-
mode: restricted
|
|
17
|
-
|
|
18
|
-
- module: StoreFullText
|
|
19
|
-
config:
|
|
20
|
-
db: test_sanitize.db
|
|
21
|
-
|
|
22
|
-
# - module: PublishConsole
|
|
23
|
-
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
global:
|
|
2
|
-
timezone: Asia/Tokyo
|
|
3
|
-
cache:
|
|
4
|
-
base: /tmp
|
|
5
|
-
log:
|
|
6
|
-
level: info
|
|
7
|
-
|
|
8
|
-
plugins:
|
|
9
|
-
- module: SubscriptionFeed
|
|
10
|
-
config:
|
|
11
|
-
feeds:
|
|
12
|
-
- http://blog.id774.net/post/feed/
|
|
13
|
-
|
|
14
|
-
- module: SubscriptionFeed
|
|
15
|
-
config:
|
|
16
|
-
feeds:
|
|
17
|
-
- http://blog.id774.net/post/feed/
|
|
18
|
-
interval: 1
|
|
19
|
-
|
|
20
|
-
- module: SubscriptionFeed
|
|
21
|
-
config:
|
|
22
|
-
feeds:
|
|
23
|
-
- http://blog.id774.net/post/feed/
|
|
24
|
-
interval: 2
|
|
25
|
-
retry: 2
|
|
26
|
-
|
|
27
|
-
- module: FilterSort
|
|
28
|
-
config:
|
|
29
|
-
sort: asc
|
|
30
|
-
|
|
31
|
-
- module: FilterSort
|
|
32
|
-
config:
|
|
33
|
-
sort: desc
|
|
34
|
-
|
|
35
|
-
#- module: PublishConsole
|
|
36
|
-
|