flnews_post_proc 1.61 → 1.62
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/bin/flnews_post_proc +12 -4
- data/lib/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06e2f2f46c1d30f65062366e6b02d4e3b84eb21f6e65d1e746ab54b5d964e13a
|
4
|
+
data.tar.gz: 6ab18c57da83155d698b57f0544063e12d1a218eb4da89ac816cc70dcb980da6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a5e692db21786d8689c8b4f2d90a7f7997acc8b1e0561265d36ff46e69bb0ae38ae63cdea1dafebeb09c881aa760c34cec758af9b243b54f483361236ebcbe6
|
7
|
+
data.tar.gz: 2526a34226e03405cd773599964e762437bbc07210b2aa5cdba760001fa0cccef58f2c16e4e8e9d4c0741d1da290a4416a1850249b0768e4bd6844d62279cbfd
|
data/bin/flnews_post_proc
CHANGED
@@ -71,13 +71,21 @@ if (!STDIN.tty?)
|
|
71
71
|
mime = FileMagic.mime.buffer artext
|
72
72
|
debug('mime is ' << mime.split(';')[0])
|
73
73
|
if (['news', 'rfc822'].none? {|m| mime.start_with?('message/' << m) } )
|
74
|
-
#
|
74
|
+
# Not a pure news message
|
75
|
+
# Add more reactions, as you stumble upon them ...
|
75
76
|
warn ("Input is of wrong mime-type " << mime.split(';')[0])
|
77
|
+
|
78
|
+
# Javascript okay
|
76
79
|
if (['javascript'].any? {|m| mime.start_with?('application/' << m)} )
|
77
|
-
warn 'Input contains java-script code!
|
80
|
+
warn 'Input contains java-script code!'
|
81
|
+
# C okay
|
82
|
+
elsif(['x-c'].any? {|m| mime.start_with?('text/' << m)} )
|
83
|
+
warn 'Input contains C- or C++ code!'
|
84
|
+
# Ruby okay
|
85
|
+
elsif(['x-ruby'].any? {|m| mime.start_with?('text/' << m) })
|
86
|
+
warn 'Input contains Ruby-code!'
|
78
87
|
else
|
79
|
-
warn '
|
80
|
-
exit false;
|
88
|
+
warn 'Input contains other things than plain-text, but I cannot say, what.'
|
81
89
|
end
|
82
90
|
end
|
83
91
|
#----------->
|
data/lib/version.rb
CHANGED
@@ -14,9 +14,9 @@
|
|
14
14
|
=end
|
15
15
|
|
16
16
|
PROGNAME = 'flnews_post_proc'
|
17
|
-
PROGVERSION = "1.
|
17
|
+
PROGVERSION = "1.62"
|
18
18
|
AUTHORS = "Michael Uplawski"
|
19
19
|
EMAIL = "michael.uplawski@uplawski.eu"
|
20
20
|
YEARS = "2023 - 2024"
|
21
|
-
SUMMARY = "attenuated reaction to mime-type
|
21
|
+
SUMMARY = "Further attenuated reaction to mime-type, accepting all."
|
22
22
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flnews_post_proc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.62'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Uplawski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diffy
|
@@ -105,5 +105,5 @@ requirements: []
|
|
105
105
|
rubygems_version: 3.5.3
|
106
106
|
signing_key:
|
107
107
|
specification_version: 4
|
108
|
-
summary:
|
108
|
+
summary: Further attenuated reaction to mime-type, accepting all.
|
109
109
|
test_files: []
|