flnews_post_proc 1.60 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/flnews_post_proc +46 -32
  3. data/lib/version.rb +2 -2
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 501b73b0978b60f22ec85311eb7b9f66df77802e963eec5ed9bf7e86066604fc
4
- data.tar.gz: 985d92d55cf867f297f4ec3ceb337091495918d869b48d105b38452412835ff0
3
+ metadata.gz: 06e2f2f46c1d30f65062366e6b02d4e3b84eb21f6e65d1e746ab54b5d964e13a
4
+ data.tar.gz: 6ab18c57da83155d698b57f0544063e12d1a218eb4da89ac816cc70dcb980da6
5
5
  SHA512:
6
- metadata.gz: 2a5d65c1484b211db45f9af9b98f31eabb928cce5707fa7b661166ac02593d52bb76a00aef5e0fe36657b24c13e14faf3b3ce86192c4a8e23a96689f488ec7da
7
- data.tar.gz: 33563ad93400d39082bf888618a8b43801a98b486bb678a458bb16a09797480c52f3d310d61ce4549ba7dc0c4d1b68fa7cb7921802513440a5ef494c81f94469
6
+ metadata.gz: 8a5e692db21786d8689c8b4f2d90a7f7997acc8b1e0561265d36ff46e69bb0ae38ae63cdea1dafebeb09c881aa760c34cec758af9b243b54f483361236ebcbe6
7
+ data.tar.gz: 2526a34226e03405cd773599964e762437bbc07210b2aa5cdba760001fa0cccef58f2c16e4e8e9d4c0741d1da290a4416a1850249b0768e4bd6844d62279cbfd
data/bin/flnews_post_proc CHANGED
@@ -64,46 +64,60 @@ if (!STDIN.tty?)
64
64
  # read from STDIN
65
65
  artext = ARGF.read
66
66
 
67
- # There is content, create the post-processor.
67
+ # There is content, create the post-processor.
68
68
  if !artext.strip.empty?
69
69
  # Be sure to know what you are doing.
70
70
  # Ask around in case of doubt.
71
71
  mime = FileMagic.mime.buffer artext
72
- debug('mime is ' << mime)
73
- if ['news', 'rfc822'].any? {|m| mime.start_with?('message/' << m) }
74
- #----------->
75
- # Allow to override the configuration,
76
- # if not disabled (default is true)
77
- if config.OVERRIDE_CONFIG != false
78
- cdlg = OverrideDlg.new
79
- discarded = cdlg.show
80
- if discarded && !discarded.empty?
81
- debug('options overriden ' << discarded)
82
- OverrideDlg.cvars.each do |v|
83
- if discarded.include?(v.to_s)
84
- debug('removing ' << v.to_s)
85
- config.set(v, nil)
86
- end
72
+ debug('mime is ' << mime.split(';')[0])
73
+ if (['news', 'rfc822'].none? {|m| mime.start_with?('message/' << m) } )
74
+ # Not a pure news message
75
+ # Add more reactions, as you stumble upon them ...
76
+ warn ("Input is of wrong mime-type " << mime.split(';')[0])
77
+
78
+ # Javascript okay
79
+ if (['javascript'].any? {|m| mime.start_with?('application/' << m)} )
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!'
87
+ else
88
+ warn 'Input contains other things than plain-text, but I cannot say, what.'
89
+ end
90
+ end
91
+ #----------->
92
+ # Allow to override the configuration,
93
+ # if not disabled (default is true)
94
+ if config.OVERRIDE_CONFIG != false
95
+ cdlg = OverrideDlg.new
96
+ discarded = cdlg.show
97
+ if discarded && !discarded.empty?
98
+ debug('options overriden ' << discarded)
99
+ OverrideDlg.cvars.each do |v|
100
+ if discarded.include?(v.to_s)
101
+ debug('removing ' << v.to_s)
102
+ config.set(v, nil)
87
103
  end
88
104
  end
89
- debug('new config: ' << config.inspect)
90
105
  end
91
- #<--------------
92
- # Do it:
93
- pp = PostProcessor.new(artext)
94
- # and get a result.
95
- article = pp.article
96
- if article
97
- # -------------> The main objective <------
98
- puts article
99
- # <------------- over and out ------>
100
- exit true
101
- end
102
- # whatever.
103
- exit false
104
- else
105
- error ("Input is of wrong mime-type " << mime)
106
+ debug('new config: ' << config.inspect)
107
+ end
108
+ #<--------------
109
+ # Do it:
110
+ pp = PostProcessor.new(artext)
111
+ # and get a result.
112
+ article = pp.article
113
+ if article
114
+ # -------------> The main objective <------
115
+ puts article
116
+ # <------------- over and out ------>
117
+ exit true
106
118
  end
119
+ # whatever.
120
+ exit false
107
121
  else
108
122
  error( "Cannot read the article, no content" )
109
123
  end
data/lib/version.rb CHANGED
@@ -14,9 +14,9 @@
14
14
  =end
15
15
 
16
16
  PROGNAME = 'flnews_post_proc'
17
- PROGVERSION = "1.60"
17
+ PROGVERSION = "1.62"
18
18
  AUTHORS = "Michael Uplawski"
19
19
  EMAIL = "michael.uplawski@uplawski.eu"
20
20
  YEARS = "2023 - 2024"
21
- SUMMARY = "Word wrapping with indenting for reference-lists"
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.60'
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-08-10 00:00:00.000000000 Z
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: Word wrapping with indenting for reference-lists
108
+ summary: Further attenuated reaction to mime-type, accepting all.
109
109
  test_files: []