runeblog 0.2.55 → 0.2.56
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 +4 -4
- data/empty_view/remote/banner/austin-pano.jpg +0 -0
- data/empty_view/remote/banner/top.html +4 -0
- data/empty_view/themes/standard/banner/austin-pano.jpg +0 -0
- data/empty_view/themes/standard/banner/top.html +4 -0
- data/empty_view/themes/standard/blog/generate.lt3 +1 -16
- data/lib/liveblog.rb +33 -25
- data/lib/runeblog_version.rb +1 -1
- data/runeblog.gemspec +1 -0
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccac3f162a763826c1eeaed68d656887860601c83b52a5df2ff1f25a42e54687
|
4
|
+
data.tar.gz: 275a5ec1d3b89937fdd95ea051ed17d9dfba8b4d05448d67cb32a688255a270b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c1d684ff80ad64969f68d5cb753d6785551a45c8887786d9071bb79b4b6fed360776355201294779f38417615946ab351b071e03ca2ec25fbe1b5aa8484cc44
|
7
|
+
data.tar.gz: 568cddf381190b876596952f87824e45689cb9b13e0ac9e52128504af42f24d414bc151b962d7255d07cb26f8bf2c78c5f021247f98026baabe5bd6645eff549
|
Binary file
|
Binary file
|
@@ -14,22 +14,7 @@
|
|
14
14
|
.include blog/head.lt3
|
15
15
|
<body>
|
16
16
|
|
17
|
-
.
|
18
|
-
|
19
|
-
. FIXME
|
20
|
-
<table width=100% bgcolor=$color>
|
21
|
-
<tr>
|
22
|
-
<td width=30% bgcolor=$color>
|
23
|
-
<div style="text-align: center; color: white">
|
24
|
-
<h1>Around Austin</h1><br>
|
25
|
-
The view from downtown...
|
26
|
-
</div>
|
27
|
-
</td>
|
28
|
-
<td><img src=assets/austin-pano.jpg width=100%></img>
|
29
|
-
</tr>
|
30
|
-
</table>
|
31
|
-
|
32
|
-
$.include navbar/navbar.lt3
|
17
|
+
$.banner text: top.html image: austin-pano.jpg // navbar
|
33
18
|
<div class="content container-fluid mt-4">
|
34
19
|
<div class="row">
|
35
20
|
$.include blog/index.lt3
|
data/lib/liveblog.rb
CHANGED
@@ -87,33 +87,41 @@ def backlink
|
|
87
87
|
end
|
88
88
|
|
89
89
|
def banner # still experimental
|
90
|
-
_out "<table>"
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
90
|
+
_out "<table width=100% bgcolor=#101035>"
|
91
|
+
_out " <tr>"
|
92
|
+
enum = _args.each
|
93
|
+
count = 0
|
94
|
+
span = 1
|
95
|
+
loop do
|
96
|
+
count += 1
|
97
|
+
arg = enum.next
|
98
|
+
case arg
|
99
|
+
when "image"
|
100
|
+
image = "banner/banner.jpg"
|
101
|
+
_out " <td colspan=#{span}><img src=#{image} height=150></img></td>"
|
102
|
+
when "image:"
|
103
|
+
image = "banner/#{enum.next}"
|
104
|
+
_out " <td colspan=#{span}><img src=#{image} height=150></img></td>"
|
105
|
+
when "text"
|
106
|
+
file = "banner/text.html"
|
107
|
+
_out "<td colspan=#{span}>" + File.read(file) + "</td>"
|
108
|
+
when "text:"
|
109
|
+
file = "banner/#{enum.next}"
|
110
|
+
_out "<td colspan=#{span}>" + File.read(file) + "</td>"
|
111
|
+
when "navbar"
|
112
|
+
file = "navbar/navbar.html"
|
113
|
+
_out "<td colspan=#{span}><div style='text-align: center'>" + File.read(file) + "</div></td>"
|
114
|
+
when "vnavbar"
|
115
|
+
file = "navbar/vnavbar.html"
|
116
|
+
_out "<td colspan=#{span}>" + File.read(file) + "</td>"
|
117
|
+
when "//"
|
118
|
+
span = count - 1
|
119
|
+
_out " </tr>\n <tr>"
|
120
|
+
else
|
121
|
+
_out " '#{arg}' isn't known"
|
114
122
|
end
|
115
|
-
_out " </tr>"
|
116
123
|
end
|
124
|
+
_out " </tr>"
|
117
125
|
_out "</table>"
|
118
126
|
end
|
119
127
|
|
data/lib/runeblog_version.rb
CHANGED
data/runeblog.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runeblog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.56
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hal Fulton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: livetext
|
@@ -65,15 +65,19 @@ files:
|
|
65
65
|
- empty_view/assets/austin-pano.jpg
|
66
66
|
- empty_view/assets/sky2.jpg
|
67
67
|
- empty_view/remote/assets/GIT_IS_DUMB
|
68
|
+
- empty_view/remote/banner/austin-pano.jpg
|
69
|
+
- empty_view/remote/banner/top.html
|
68
70
|
- empty_view/remote/etc/GIT_IS_DUMB
|
69
71
|
- empty_view/remote/navbar/GIT_IS_DUMB
|
70
72
|
- empty_view/remote/permalink/GIT_IS_DUMB
|
71
73
|
- empty_view/themes/standard/README
|
72
74
|
- empty_view/themes/standard/banner/about.lt3
|
75
|
+
- empty_view/themes/standard/banner/austin-pano.jpg
|
73
76
|
- empty_view/themes/standard/banner/blog-banner.jpg
|
74
77
|
- empty_view/themes/standard/banner/contact.lt3
|
75
78
|
- empty_view/themes/standard/banner/faq.lt3
|
76
79
|
- empty_view/themes/standard/banner/navbar.lt3
|
80
|
+
- empty_view/themes/standard/banner/top.html
|
77
81
|
- empty_view/themes/standard/blog/generate.lt3
|
78
82
|
- empty_view/themes/standard/blog/head.lt3
|
79
83
|
- empty_view/themes/standard/blog/index.lt3
|
@@ -218,7 +222,7 @@ homepage: https://github.com/Hal9000/runeblog
|
|
218
222
|
licenses:
|
219
223
|
- Ruby
|
220
224
|
metadata: {}
|
221
|
-
post_install_message:
|
225
|
+
post_install_message: "\n Success! Run 'blog' command and type h for help.\n "
|
222
226
|
rdoc_options: []
|
223
227
|
require_paths:
|
224
228
|
- lib
|