tdiary 5.0.12.1 → 5.0.13

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ff7d5de0fbee66f19b02c8c312f107ba18299e9dee77a3c70191cf875283dd7
4
- data.tar.gz: 1da3049ed2885002ec73ca9a48a99b06365c9d3a719214517de39609ec11b32e
3
+ metadata.gz: 465d5bbab840876b502a843a3ccb9b48e214a351846b6405a6e705c351c97126
4
+ data.tar.gz: 4931febef679197a03e469353ba2582d72c5f8cf5bb4583b117b84269df800f0
5
5
  SHA512:
6
- metadata.gz: d814b3d6029ff9ced231a519f94638e40bd1e01efad0ea0f27300bd304e0b088dc58ffd8ac43eeb9c39dc396696b58ec8853d31f0523568615734a3d7989668c
7
- data.tar.gz: 1a6cfc1069c6baa5235049c45f44fe7527f59aa23f075e0590d7f94545c3cc5de6ad3ebbb8a5401fd146b3d2a6bd78f36e8333bd3955ad855daddd16f0455b26
6
+ metadata.gz: b4799af740c755d85b0782d9374f77b9d4bafc339349b4132a5347cb7c6488fbd6bcac74db0b69b639a51b30e1403fdac47739de1f0285d4908e24796eb80716
7
+ data.tar.gz: bba11779a0b575c2e3c78f33e2546c11fb3c9c38e0feef02a5366b5abc4c302e0f7d6cf9e5fff8b81df6fccd5d786eeffed01da3aee864794afe4705af1922b8
data/ChangeLog CHANGED
@@ -1,3 +1,9 @@
1
+ 2019-04-03 Tada, Tadashi <t@tdtds.jp>
2
+ * release 5.0.13
3
+
4
+ 2019-04-02 Tada, Tadashi <t@tdtds.jp>
5
+ * fix: support extentions (cf.tdiary-contrib) assets paths again
6
+
1
7
  2019-03-29 Tada, Tadashi <t@tdtds.jp>
2
8
  * release 5.0.12
3
9
 
@@ -40,7 +40,7 @@ module TDiary
40
40
  end
41
41
 
42
42
  map assets_path do
43
- run TDiary::Rack::Static.new(nil, ["js", "theme"])
43
+ run TDiary::Rack::Static.new(nil, assets_paths)
44
44
  end
45
45
  end
46
46
  end
@@ -1,3 +1,3 @@
1
1
  module TDiary
2
- VERSION = '5.0.12.1'
2
+ VERSION = '5.0.13'
3
3
  end
data/public/index.rdf CHANGED
@@ -1,26 +1,26 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <?xml-stylesheet href="rss.css" type="text/css"?>
3
3
  <rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:xhtml="http://www.w3.org/1999/xhtml" xml:lang="ja-JP">
4
- <channel rdf:about="http://localhost:8080/index.rdf">
4
+ <channel rdf:about="index.rdf">
5
5
  <title>【日記のタイトル】(→&lt;a href=&quot;update.rb?conf=default&quot;&gt;サイトの情報&lt;/a&gt;で変更しましょう)</title>
6
- <link>http://localhost:8080/</link>
7
- <xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://localhost:8080/" />
6
+ <link>./</link>
7
+ <xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="./" />
8
8
  <description></description>
9
9
  <dc:creator></dc:creator>
10
10
  <dc:rights>Copyright 2019 , copyright of comments by respective authors</dc:rights>
11
11
  <items><rdf:Seq>
12
- <rdf:li rdf:resource="http://localhost:8080/?date=20190327#p01"/>
12
+ <rdf:li rdf:resource="./?date=20190327#p01"/>
13
13
  </rdf:Seq></items>
14
14
  </channel>
15
- <item rdf:about="http://localhost:8080/?date=20190327#p01">
16
- <link>http://localhost:8080/?date=20190327#p01</link>
17
- <xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://localhost:8080/?date=20190327#p01" />
15
+ <item rdf:about="./?date=20190327#p01">
16
+ <link>./?date=20190327#p01</link>
17
+ <xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="./?date=20190327#p01" />
18
18
  <dc:date>2019-03-27T15:22:09+09:00</dc:date>
19
19
  <title>Google Maps Plugin Test</title>
20
20
  <dc:creator></dc:creator>
21
21
  <description>Invalid Text</description>
22
22
  <content:encoded><![CDATA[<h3>Google Maps Plugin Test</h3><p class="message">Invalid Text</p><p><%=google_map '35.515579', '139.431317', width: 500, title: 'My home'
23
23
  %></p>
24
- <p><a href="http://localhost:8080/?date=20190327#c">ツッコミを入れる</a></p>]]></content:encoded>
24
+ <p><a href="./?date=20190327#c">ツッコミを入れる</a></p>]]></content:encoded>
25
25
  </item>
26
26
  </rdf:RDF>
data/tdiary.conf CHANGED
@@ -23,7 +23,7 @@
23
23
  # CGIで設定できない項目群
24
24
  #-------
25
25
 
26
- @style = 'Wiki'
26
+ @style = 'GFM'
27
27
 
28
28
  #@index = './'
29
29
  @update = 'update.rb'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tdiary
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.12.1
4
+ version: 5.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - TADA Tadashi
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-03-29 00:00:00.000000000 Z
13
+ date: 2019-04-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: emot