pdf_paradise 0.1.66

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pdf_paradise might be problematic. Click here for more details.

Files changed (110) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +705 -0
  3. data/bin/automatic_pdf_title +7 -0
  4. data/bin/combine_these_pdf_pages +7 -0
  5. data/bin/compress_via_hexapdf +7 -0
  6. data/bin/convert_markdown_to_pdf +7 -0
  7. data/bin/convert_pdf_to_text +7 -0
  8. data/bin/delete_first_page_of_this_pdf_file +7 -0
  9. data/bin/merge_then_open +7 -0
  10. data/bin/n_pages +10 -0
  11. data/bin/open_main_pdf +7 -0
  12. data/bin/pdf_paradise +9 -0
  13. data/bin/set_main_book +7 -0
  14. data/bin/set_title_of_this_pdf_file +15 -0
  15. data/doc/README.gen +662 -0
  16. data/doc/todo/todo.md +7 -0
  17. data/lib/pdf_paradise/base/base.rb +239 -0
  18. data/lib/pdf_paradise/base/colours.rb +36 -0
  19. data/lib/pdf_paradise/commandline/commandline.rb +101 -0
  20. data/lib/pdf_paradise/commandline/help.rb +73 -0
  21. data/lib/pdf_paradise/commandline/menu.rb +142 -0
  22. data/lib/pdf_paradise/compress/compress_via_hexapdf.rb +27 -0
  23. data/lib/pdf_paradise/compress_this_pdf_file.rb +87 -0
  24. data/lib/pdf_paradise/constants/constants.rb +76 -0
  25. data/lib/pdf_paradise/convert_text_to_pdf.rb +94 -0
  26. data/lib/pdf_paradise/css/project.css +17 -0
  27. data/lib/pdf_paradise/djvu_to_pdf.rb +85 -0
  28. data/lib/pdf_paradise/gui/README.md +6 -0
  29. data/lib/pdf_paradise/gui/fox/split_pdf_file.rb +77 -0
  30. data/lib/pdf_paradise/gui/gtk2/delete_the_first_or_the_last_page_of_this_pdf_file/delete_the_first_or_the_last_page_of_this_pdf_file.rb +39 -0
  31. data/lib/pdf_paradise/gui/gtk2/pdf_viewer/pdf_viewer.rb +34 -0
  32. data/lib/pdf_paradise/gui/gtk2/split_pdf_file/split_pdf_file.rb +34 -0
  33. data/lib/pdf_paradise/gui/gtk2/statistics_widget/statistics_widget.rb +34 -0
  34. data/lib/pdf_paradise/gui/gtk2/to_pdf/to_pdf.rb +32 -0
  35. data/lib/pdf_paradise/gui/gtk3/controller/controller.rb +212 -0
  36. data/lib/pdf_paradise/gui/gtk3/convert_pdf_to_text/convert_pdf_to_text.rb +34 -0
  37. data/lib/pdf_paradise/gui/gtk3/delete_the_first_or_the_last_page_of_this_pdf_file/delete_the_first_or_the_last_page_of_this_pdf_file.rb +39 -0
  38. data/lib/pdf_paradise/gui/gtk3/pdf_viewer/pdf_viewer.rb +34 -0
  39. data/lib/pdf_paradise/gui/gtk3/split_pdf_file/split_pdf_file.rb +34 -0
  40. data/lib/pdf_paradise/gui/gtk3/statistics_widget/statistics_widget.rb +34 -0
  41. data/lib/pdf_paradise/gui/gtk3/to_pdf/to_pdf.rb +32 -0
  42. data/lib/pdf_paradise/gui/libui/extract_all_images_from_this_pdf_file/extract_all_images_from_this_pdf_file.rb +223 -0
  43. data/lib/pdf_paradise/gui/libui/statistics_widget/statistics_widget.rb +233 -0
  44. data/lib/pdf_paradise/gui/shared_code/convert_pdf_to_text/convert_pdf_to_text_module.rb +277 -0
  45. data/lib/pdf_paradise/gui/shared_code/delete_the_first_or_the_last_page_of_this_pdf_file/delete_the_first_or_the_last_page_of_this_pdf_file_module.rb +443 -0
  46. data/lib/pdf_paradise/gui/shared_code/pdf_viewer/pdf_viewer.css +5 -0
  47. data/lib/pdf_paradise/gui/shared_code/pdf_viewer/pdf_viewer_module.rb +284 -0
  48. data/lib/pdf_paradise/gui/shared_code/split_pdf_file/split_pdf_file.css +0 -0
  49. data/lib/pdf_paradise/gui/shared_code/split_pdf_file/split_pdf_file_module.rb +294 -0
  50. data/lib/pdf_paradise/gui/shared_code/statistics_widget/statistics_widget_module.rb +349 -0
  51. data/lib/pdf_paradise/gui/shared_code/to_pdf/to_pdf_module.rb +281 -0
  52. data/lib/pdf_paradise/hexapdf/001_rainbow_pattern_example.rb +0 -0
  53. data/lib/pdf_paradise/hexapdf/hexapdf.rb +123 -0
  54. data/lib/pdf_paradise/images/PDF_PARADISE_LOGO.png +0 -0
  55. data/lib/pdf_paradise/main_pdf/main_pdf.rb +444 -0
  56. data/lib/pdf_paradise/merge_pdf/menu.rb +63 -0
  57. data/lib/pdf_paradise/merge_pdf/merge_pdf.rb +306 -0
  58. data/lib/pdf_paradise/merge_pdf_namespace.rb +9 -0
  59. data/lib/pdf_paradise/merge_then_open/merge_then_open.rb +105 -0
  60. data/lib/pdf_paradise/pdf_file_n_total_pages.rb +249 -0
  61. data/lib/pdf_paradise/prawn_addons/README.md +2 -0
  62. data/lib/pdf_paradise/prawn_addons/prawn_addons.rb +17 -0
  63. data/lib/pdf_paradise/project/project.rb +22 -0
  64. data/lib/pdf_paradise/remove_pdf_password.rb +391 -0
  65. data/lib/pdf_paradise/requires/batch_require_toplevel_files.rb +22 -0
  66. data/lib/pdf_paradise/requires/colours.rb +7 -0
  67. data/lib/pdf_paradise/requires/colours_and_esystem_and_save_file_and_fileutils_and_opn.rb +11 -0
  68. data/lib/pdf_paradise/requires/esystem_and_colours.rb +10 -0
  69. data/lib/pdf_paradise/requires/esystem_and_opn_and_colours.rb +8 -0
  70. data/lib/pdf_paradise/requires/require_the_whole_project.rb +28 -0
  71. data/lib/pdf_paradise/requires/require_utility_scripts.rb +9 -0
  72. data/lib/pdf_paradise/set_main_book.rb +156 -0
  73. data/lib/pdf_paradise/set_pdf_title.rb +220 -0
  74. data/lib/pdf_paradise/sinatra/embeddable_interface.rb +318 -0
  75. data/lib/pdf_paradise/toplevel_methods/automatic_pdf_title.rb +55 -0
  76. data/lib/pdf_paradise/toplevel_methods/convert_epub_to_pdf.rb +27 -0
  77. data/lib/pdf_paradise/toplevel_methods/convert_markdown_to_pdf.rb +45 -0
  78. data/lib/pdf_paradise/toplevel_methods/convert_ppt_to_pdf.rb +35 -0
  79. data/lib/pdf_paradise/toplevel_methods/e.rb +16 -0
  80. data/lib/pdf_paradise/toplevel_methods/esystem.rb +19 -0
  81. data/lib/pdf_paradise/toplevel_methods/misc.rb +76 -0
  82. data/lib/pdf_paradise/toplevel_methods/number_pages.rb +38 -0
  83. data/lib/pdf_paradise/toplevel_methods/opened_pdf_files.rb +221 -0
  84. data/lib/pdf_paradise/toplevel_methods/query_pdf_title.rb +191 -0
  85. data/lib/pdf_paradise/toplevel_methods/reduce_size_of_this_pdf_file.rb +46 -0
  86. data/lib/pdf_paradise/toplevel_methods/roebe.rb +17 -0
  87. data/lib/pdf_paradise/toplevel_methods/rotate_pdf_file.rb +143 -0
  88. data/lib/pdf_paradise/toplevel_methods/to_pdf.rb +38 -0
  89. data/lib/pdf_paradise/utility_scripts/README.md +3 -0
  90. data/lib/pdf_paradise/utility_scripts/combine_these_pdf_pages.rb +118 -0
  91. data/lib/pdf_paradise/utility_scripts/convert_pdf_to_text.rb +175 -0
  92. data/lib/pdf_paradise/utility_scripts/delete_first_page_of_this_pdf_file.rb +221 -0
  93. data/lib/pdf_paradise/utility_scripts/delete_last_page_of_this_pdf_file.rb +180 -0
  94. data/lib/pdf_paradise/utility_scripts/delete_this_page_of_this_pdf_file.rb +329 -0
  95. data/lib/pdf_paradise/utility_scripts/extract_all_images_from_this_pdf_file.rb +129 -0
  96. data/lib/pdf_paradise/utility_scripts/extract_pdf_page.rb +283 -0
  97. data/lib/pdf_paradise/utility_scripts/pdf_optimizer.rb +111 -0
  98. data/lib/pdf_paradise/utility_scripts/pdf_statistics.rb +148 -0
  99. data/lib/pdf_paradise/utility_scripts/pdf_to_html.rb +75 -0
  100. data/lib/pdf_paradise/utility_scripts/remove_images.rb +110 -0
  101. data/lib/pdf_paradise/utility_scripts/split_pdf.rb +340 -0
  102. data/lib/pdf_paradise/utility_scripts/to_qdf.rb +82 -0
  103. data/lib/pdf_paradise/version/version.rb +19 -0
  104. data/lib/pdf_paradise/www/README.md +2 -0
  105. data/lib/pdf_paradise/www/sinatra/app.rb +276 -0
  106. data/lib/pdf_paradise/yaml/working_on_these_pdf_files.yml +4 -0
  107. data/lib/pdf_paradise.rb +5 -0
  108. data/pdf_paradise.gemspec +61 -0
  109. data/test/testing_pdf_paradise.rb +9 -0
  110. metadata +219 -0
@@ -0,0 +1,220 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # === PdfParadise::SetPdfTitle
6
+ #
7
+ # This class can be used to set a new title to any given .pdf file.
8
+ #
9
+ # A module-method also exists, on module PdfParadise.
10
+ #
11
+ # We will make use of the excellent perl library called "exiftool"
12
+ # for now. Perhaps at a later time, we will change to use something
13
+ # else rather than perl. But for now, I simply wanted to have one
14
+ # tool that works and move on.
15
+ #
16
+ # A typical usage example would be like this:
17
+ #
18
+ # exiftool -overwrite_original -Title="This is the Title now!" DONE_VO_06_Cell_Biology_Methods_Crystallography_How_to_make_a_car.pdf
19
+ #
20
+ # Usage example:
21
+ #
22
+ # PdfParadise::SetPdfTitle.new(ARGV)
23
+ #
24
+ # =========================================================================== #
25
+ # require 'pdf_paradise/set_pdf_title.rb'
26
+ # =========================================================================== #
27
+ require 'pdf_paradise/base/base.rb'
28
+
29
+ module PdfParadise
30
+
31
+ class SetPdfTitle < Base # === PdfParadise::SetPdfTitle
32
+
33
+ # ========================================================================= #
34
+ # === SHALL_WE_DELETE_THE_ORIGINAL_FILE
35
+ # ========================================================================= #
36
+ SHALL_WE_DELETE_THE_ORIGINAL_FILE = true
37
+
38
+ # ========================================================================= #
39
+ # === initialize
40
+ # ========================================================================= #
41
+ def initialize(
42
+ name_of_the_pdf_file = nil,
43
+ new_title_to_use = 'Default title',
44
+ run_already = true
45
+ )
46
+ reset
47
+ if name_of_the_pdf_file.is_a?(Array) and (name_of_the_pdf_file.size > 1)
48
+ new_title_to_use = name_of_the_pdf_file.last
49
+ if new_title_to_use.include? '--'
50
+ # =================================================================== #
51
+ # Assume this to be a commandline instruction then.
52
+ # =================================================================== #
53
+ case new_title_to_use # case tag
54
+ # =================================================================== #
55
+ # === --set-title=03 Stickstoff und Aminosäuren
56
+ # =================================================================== #
57
+ when /-?-?set(-|_)?title=(.+)$/
58
+ new_title_to_use = $2.to_s.dup
59
+ end
60
+ end
61
+ name_of_the_pdf_file = name_of_the_pdf_file.first
62
+ end
63
+ set_pdf_file(
64
+ name_of_the_pdf_file
65
+ )
66
+ set_title(new_title_to_use)
67
+ run if run_already
68
+ end
69
+
70
+ # ========================================================================= #
71
+ # === reset (reset tag)
72
+ # ========================================================================= #
73
+ def reset
74
+ set_title # Set a default, being nil in this case.
75
+ # ======================================================================= #
76
+ # === @commandline_to_use
77
+ # ======================================================================= #
78
+ @commandline_to_use = 'exiftool'.dup # This will be our commandline.
79
+ # ======================================================================= #
80
+ # === Designate the charset that is to be used next
81
+ #
82
+ # Next, append the charset to be used. This is usually UTF-8.
83
+ # exiftool claims that iso-8859-1 is an invalid encoding, but latin
84
+ # is valid, according to exiftool..
85
+ # ======================================================================= #
86
+ @commandline_to_use << ' -charset UTF8'
87
+ # @commandline_to_use << ' -charset latin' # <- It works with latin.
88
+ end
89
+
90
+ # ========================================================================= #
91
+ # === set_title (title tag)
92
+ #
93
+ # Assign the title that we will use for the given .pdf file at hand.
94
+ # ========================================================================= #
95
+ def set_title(i = :default)
96
+ if i == :default
97
+ i = nil
98
+ else
99
+ i = i.to_s
100
+ i = i.dup if i.frozen?
101
+ end
102
+ i = "-Title=\"#{i}\"" if i
103
+ @title = i
104
+ end
105
+
106
+ # ========================================================================= #
107
+ # === set_pdf_file
108
+ # ========================================================================= #
109
+ def set_pdf_file(i)
110
+ i = i.first if i.is_a? Array
111
+ i = i.to_s # We need a String past this point.
112
+ i = i.dup if i.frozen?
113
+ @pdf_file = i
114
+ end
115
+
116
+ # ========================================================================= #
117
+ # === set_input
118
+ # ========================================================================= #
119
+ def set_input(i = '')
120
+ i = i.first if i.is_a? Array
121
+ i = i.to_s.dup
122
+ @input = i
123
+ end
124
+
125
+ # ========================================================================= #
126
+ # === input?
127
+ # ========================================================================= #
128
+ def input?
129
+ @input
130
+ end
131
+
132
+ # ========================================================================= #
133
+ # === build_up_commandline_command
134
+ #
135
+ # Build up the main commandline to use here.
136
+ # ========================================================================= #
137
+ def build_up_commandline_command
138
+ if SHALL_WE_DELETE_THE_ORIGINAL_FILE
139
+ @commandline_to_use << ' -overwrite_original'
140
+ end
141
+ add_title_to_the_commandline
142
+ add_pdf_file_to_the_commandline
143
+ end
144
+
145
+ # ========================================================================= #
146
+ # === add_pdf_file_to_the_commandline
147
+ # ========================================================================= #
148
+ def add_pdf_file_to_the_commandline
149
+ @commandline_to_use << " #{@pdf_file}"
150
+ end
151
+
152
+ # ========================================================================= #
153
+ # === pdf_file?
154
+ # ========================================================================= #
155
+ def pdf_file?
156
+ @pdf_file
157
+ end; alias this_file? pdf_file? # === this_file?
158
+
159
+ # ========================================================================= #
160
+ # === add_title_to_the_commandline
161
+ # ========================================================================= #
162
+ def add_title_to_the_commandline
163
+ @commandline_to_use << " #{@title}"
164
+ end
165
+
166
+ # ========================================================================= #
167
+ # === run_commandline_command
168
+ # ========================================================================= #
169
+ def run_commandline_command
170
+ # The following clause can lead to an infinite loop, so it was disabled
171
+ # as of May 2022. It may have to be re-evaluated at a later point.
172
+ # if is_on_roebe? and return_pwd.include?('/home/x/books')
173
+ # unless PdfParadise.respond_to? :automatic_pdf_title
174
+ # require 'pdf_paradise/toplevel_methods/automatic_pdf_title.rb'
175
+ # end
176
+ # PdfParadise.autotitle(this_file?)
177
+ # end
178
+ esystem(@commandline_to_use)
179
+ end
180
+
181
+ # ========================================================================= #
182
+ # === run (run tag)
183
+ # ========================================================================= #
184
+ def run
185
+ build_up_commandline_command
186
+ run_commandline_command
187
+ end
188
+
189
+ # ========================================================================= #
190
+ # === PdfParadise::SetPdfTitle[]
191
+ # ========================================================================= #
192
+ def self.[](i = '')
193
+ new(i)
194
+ end
195
+
196
+ end
197
+
198
+ # =========================================================================== #
199
+ # === PdfParadise.set_title_of_this_pdf_file
200
+ #
201
+ # You need to pass in two arguments to this module-method.
202
+ #
203
+ # The first argument is the path to the .pdf file in question that
204
+ # you want to manipulate - that is, to change the title of said
205
+ # .pdf file.
206
+ #
207
+ # The second argument is the new title of this .pdf file.
208
+ # =========================================================================== #
209
+ def self.set_title_of_this_pdf_file(
210
+ this_pdf_file,
211
+ this_title = ''
212
+ )
213
+ SetPdfTitle.new(this_pdf_file, this_title)
214
+ end; self.instance_eval { alias set_pdf_title set_title_of_this_pdf_file } # === PdfParadise.set_pdf_title
215
+
216
+ end
217
+
218
+ if __FILE__ == $PROGRAM_NAME
219
+ PdfParadise::SetPdfTitle.new(ARGV)
220
+ end # pdf_title foo.pdf "This is the new title"
@@ -0,0 +1,318 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # === PdfParadise::EmbeddableInterface
6
+ #
7
+ # The code in this file can be used to "embed" the functionality of
8
+ # PdfParadise in web-applications, in particular in sinatra.
9
+ #
10
+ # This depends on the cyberweb project.
11
+ # =========================================================================== #
12
+ # require 'pdf_paradise/sinatra/embeddable_interface.rb'
13
+ # include PdfParadise::EmbeddableInterface
14
+ # PdfParadise::EmbeddableInterface.route_name?
15
+ # =========================================================================== #
16
+ module PdfParadise
17
+
18
+ module EmbeddableInterface # === PdfParadise::EmbeddableInterface
19
+
20
+ require 'pdf_paradise/constants/constants.rb'
21
+
22
+ begin
23
+ require 'cyberweb/sinatra/custom_extensions.rb'
24
+ include Cyberweb::Sinatra::CustomExtensions
25
+ rescue LoadError; end
26
+
27
+ begin
28
+ require 'cyberweb/web_images/web_images.rb'
29
+ rescue LoadError; end
30
+
31
+ begin
32
+ require 'html_tags'
33
+ include HtmlTags::BaseModule
34
+ rescue LoadError; end
35
+
36
+ # ========================================================================= #
37
+ # Designate a uniform CSS style to use:
38
+ # ========================================================================= #
39
+ USE_THIS_UNIFORM_CSS_STYLE = 'margin-left:3.5em; font-weight: bold;'
40
+
41
+ # ========================================================================= #
42
+ # === RARROW
43
+ # ========================================================================= #
44
+ RARROW = '→'
45
+
46
+ # ========================================================================= #
47
+ # === USE_THIS_PORT
48
+ #
49
+ # Note that this constant, for the port, is only in use when we run
50
+ # the sinatra-specific part of PdfParadise in a standalone manner.
51
+ #
52
+ # When we run from the main controller, which is part of the Roebe
53
+ # project, then this port is not relevant, as that main controller
54
+ # already handles that case.
55
+ # ========================================================================= #
56
+ USE_THIS_PORT = '5200'
57
+
58
+ # ========================================================================= #
59
+ # === @route_name
60
+ # ========================================================================= #
61
+ @route_name = ''.dup
62
+
63
+ # ========================================================================= #
64
+ # === PdfParadise::EmbeddableInterface.set_route_name
65
+ # ========================================================================= #
66
+ def self.set_route_name(i)
67
+ @route_name = i
68
+ end
69
+
70
+ # ========================================================================= #
71
+ # === PdfParadise::EmbeddableInterface.route_name?
72
+ # ========================================================================= #
73
+ def self.route_name?
74
+ @route_name
75
+ end
76
+
77
+ # ========================================================================= #
78
+ # === route_name?
79
+ # ========================================================================= #
80
+ def route_name?
81
+ ::PdfParadise::EmbeddableInterface.route_name?
82
+ end
83
+
84
+ # ========================================================================= #
85
+ # === sub_routes?
86
+ # ========================================================================= #
87
+ def sub_routes?
88
+ ::PdfParadise::EmbeddableInterface.sub_routes?
89
+ end
90
+
91
+ # ========================================================================= #
92
+ # === PdfParadise::EmbeddableInterface.sub_routes?
93
+ #
94
+ # List the available sub-routes that depend on the main route_name?
95
+ # defined above. All sub-routes must be defined here, because we
96
+ # may expose this Hash to other applications.
97
+ # ========================================================================= #
98
+ def self.sub_routes?
99
+ {
100
+ view: route_name?+'/view',
101
+ n_pdf_pages: route_name?+'/n_pdf_pages'
102
+ }
103
+ end
104
+
105
+ # ========================================================================= #
106
+ # === input_type_user_input
107
+ # ========================================================================= #
108
+ def input_type_user_input
109
+ '<input type="text" name="user_input" style="border:3px solid slateblue; padding: 4px">'
110
+ end
111
+
112
+ # ========================================================================= #
113
+ # === input_type_submit
114
+ # ========================================================================= #
115
+ def input_type_submit(
116
+ text_to_use = 'Search'
117
+ )
118
+ '<input type="submit" name="user_input_submit" value="'+text_to_use+'" class="default_submit">'
119
+ end
120
+
121
+ # ========================================================================= #
122
+ # === html_start_then_title
123
+ # ========================================================================= #
124
+ def html_start_then_title
125
+ html_start+
126
+ default_title
127
+ end; alias html_then_title html_start_then_title # === html_then_title
128
+
129
+ # ========================================================================= #
130
+ # === open_body
131
+ # ========================================================================= #
132
+ def open_body
133
+ '<body style="font-size:larger">'
134
+ end
135
+
136
+ require 'pdf_paradise/version/version.rb'
137
+ # ========================================================================= #
138
+ # === return_paragraph_of_hyperlinks
139
+ # ========================================================================= #
140
+ def return_paragraph_of_hyperlinks
141
+ p(
142
+ 'The following entry-points are available for the '\
143
+ '<b>PdfParadise project</b>: (Version: '+PdfParadise::VERSION+',
144
+ Last Update: '+PdfParadise::LAST_UPDATE+')
145
+ <br><br>'+
146
+ return_index_of_hyperlinks
147
+ )
148
+ end; alias footer return_paragraph_of_hyperlinks # === footer (footer tag)
149
+
150
+ # ========================================================================= #
151
+ # === return_link_to_root
152
+ # ========================================================================= #
153
+ def return_link_to_root
154
+ abr(
155
+ '/',
156
+ content: :self,
157
+ css_style: USE_THIS_UNIFORM_CSS_STYLE
158
+ )
159
+ end
160
+
161
+ # ========================================================================= #
162
+ # === return_view_string
163
+ # ========================================================================= #
164
+ def return_view_string
165
+ hash = PdfParadise::EmbeddableInterface.sub_routes?
166
+ h1('Pdf Options:', css_style: 'margin-left:0.25em;')+
167
+ p(
168
+ "The next link is to view all .pdf files at <b>"\
169
+ "#{PdfParadise.main_directory?}</b>"
170
+ )+
171
+ abr(hash[:view])
172
+ end; alias view? return_view_string # === view?
173
+
174
+ # ========================================================================= #
175
+ # === return_index_of_hyperlinks
176
+ #
177
+ # This method will bundle together the different indices containing the
178
+ # hyperlinks that will be shown on the root-directory.
179
+ # ========================================================================= #
180
+ def return_index_of_hyperlinks
181
+ # ======================================================================= #
182
+ # Obtain the hash that keeps track of all routes.
183
+ # ======================================================================= #
184
+ hash = PdfParadise::EmbeddableInterface.sub_routes?
185
+
186
+ if Object.const_defined? :WebObject
187
+ cat_image = Cyberweb.base64_image(:cat)
188
+ else
189
+ cat_image = ''
190
+ end
191
+ a('/', content: cat_image+' /',
192
+ css_style: USE_THIS_UNIFORM_CSS_STYLE)+
193
+ '<br>'+
194
+ a(hash[:view], content: cat_image+' /view',
195
+ css_style: USE_THIS_UNIFORM_CSS_STYLE)+
196
+ '<br>'+
197
+ a(hash[:n_pdf_pages], content: cat_image+' /n_pdf_pages',
198
+ css_style: USE_THIS_UNIFORM_CSS_STYLE)+
199
+ '<br>'+
200
+ a('/title', content: cat_image+' /title',
201
+ css_style: USE_THIS_UNIFORM_CSS_STYLE)+
202
+ '<br>'+
203
+ # ======================================================================= #
204
+ # Explain the autoconvert option a little bit:
205
+ # ======================================================================= #
206
+ p(
207
+ 'Click on the <b>following link</b> to autoconvert all .pdf files '\
208
+ 'in the directory called '\
209
+ '<b>'+PdfParadise.main_directory?.to_s+'</b>'
210
+ )+
211
+ a('/autoconvert', css_style: USE_THIS_UNIFORM_CSS_STYLE)+
212
+ '<br>'+
213
+ return_div_for_manual_pdf_conversion
214
+ end; alias return_the_hyperlinks return_index_of_hyperlinks # === return_the_hyperlinks
215
+
216
+ # ========================================================================= #
217
+ # === return_div_for_manual_pdf_conversion
218
+ # ========================================================================= #
219
+ def return_div_for_manual_pdf_conversion
220
+ # ======================================================================= #
221
+ # Determine the main route for the upcoming action:
222
+ # ======================================================================= #
223
+ route_to_this_action = '/convert_single_pdf_file/'
224
+ # ======================================================================= #
225
+ # Add the <div> that contains the manual conversion functionality:
226
+ # ======================================================================= #
227
+ # ======================================================================= #
228
+ # Explain how to convert just an individual file instead:
229
+ # ======================================================================= #
230
+ p('If you merely wish to convert a single .pdf file, you can use '\
231
+ 'the following form for this:')+
232
+ div(css_style: 'padding: 0.2em') {
233
+ p(
234
+ '<b>Enter the name of the .pdf file that you wish to convert:</b>', css_style: 'padding:0.75em'
235
+ )+
236
+ form(action: route_to_this_action,
237
+ id: 'convert_single_pdf_file',
238
+ css_style: 'margin-left:2em; margin-top:2px') {
239
+ '<input type="text" name="user_input" style="border:3px solid slateblue; padding: 4px"><br>'\
240
+ '<b>Select a file</b>: <input type="file" name="this_file"><br>'\
241
+ '<input type="submit" name="user_input_submit" '\
242
+ 'value="Click here to convert the .pdf file" style="2px dotted royalblue; '\
243
+ 'color: white; background-color: olive; font-size: 1.50em;
244
+ margin:4px; padding: 4px; border: 1px solid black">'
245
+ }
246
+ }
247
+ end
248
+
249
+ # ========================================================================= #
250
+ # === close_html
251
+ # ========================================================================= #
252
+ def close_html
253
+ '</html>'
254
+ end
255
+
256
+ # ========================================================================= #
257
+ # === open_html
258
+ # ========================================================================= #
259
+ def open_html
260
+ '<html>'
261
+ end; alias html_start open_html # === html_start
262
+
263
+ # ========================================================================= #
264
+ # === return_full_title
265
+ # ========================================================================= #
266
+ def return_full_title
267
+ '<title>PDF-based operations</title>'
268
+ end; alias default_title return_full_title # === default_title
269
+
270
+ # ========================================================================= #
271
+ # === close_body
272
+ # ========================================================================= #
273
+ def close_body
274
+ '</body>'
275
+ end
276
+
277
+ # ========================================================================= #
278
+ # === return_root_string
279
+ # ========================================================================= #
280
+ def return_root_string
281
+ html_then_title+
282
+ open_body+
283
+ return_paragraph_of_hyperlinks+
284
+ close_body+
285
+ close_html
286
+ end
287
+
288
+ # =========================================================================== #
289
+ # === return_n_pdf_pages
290
+ # =========================================================================== #
291
+ def return_n_pdf_pages
292
+ route_to_this_action = sub_routes?[:n_pdf_pages]
293
+ html_start_then_title+
294
+ p('Provide the path to a .pdf file:')+
295
+ form(action: route_to_this_action,
296
+ id: route_to_this_action.delete('/'),
297
+ css_style: 'margin-left:2em; margin-top:2px') {
298
+ input_type_user_input+
299
+ br+
300
+ input_type_submit('Submit')
301
+ }
302
+ end
303
+
304
+ end
305
+
306
+ # =========================================================================== #
307
+ # === PdfParadise.embeddable_interface
308
+ #
309
+ # This method can be used to "embed" a fake-object that implements the
310
+ # module defined above.
311
+ # =========================================================================== #
312
+ def self.embeddable_interface
313
+ object = Object.new
314
+ object.extend(PdfParadise::EmbeddableInterface)
315
+ return object
316
+ end
317
+
318
+ end
@@ -0,0 +1,55 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'pdf_paradise/toplevel_methods/automatic_pdf_title.rb'
6
+ # PdfParadise.autotitle(ARGV)
7
+ # =========================================================================== #
8
+ module PdfParadise
9
+
10
+ begin
11
+ require 'colours'
12
+ rescue LoadError; end
13
+
14
+ require 'pdf_paradise/toplevel_methods/e.rb'
15
+ require 'pdf_paradise/set_pdf_title.rb'
16
+
17
+ # ========================================================================= #
18
+ # === PdfParadise.automatic_pdf_title
19
+ #
20
+ # This method will automatically set the title of a .pdf file to its
21
+ # filename, with all '_' tokens replaced by ' ' tokens.
22
+ #
23
+ # The input to this method should be .pdf files that are existing locally.
24
+ # ========================================================================= #
25
+ def self.automatic_pdf_title(i)
26
+ i = [i].flatten.compact
27
+ i.each {|this_pdf_file|
28
+ if File.exist? this_pdf_file
29
+ new_pdf_title = File.basename(this_pdf_file).sub(/#{File.extname(this_pdf_file)}$/,'').tr('_',' ')
30
+ # =================================================================== #
31
+ # Remove leading 'DONE_' substrings:
32
+ # =================================================================== #
33
+ if new_pdf_title.start_with? 'DONE'
34
+ new_pdf_title.sub!(/^DONE_/,'') if new_pdf_title.include? 'DONE_'
35
+ new_pdf_title.sub!(/^DONE /,'') if new_pdf_title.include? 'DONE '
36
+ end
37
+ e "#{Colours.rev}Setting the title of the .pdf file "\
38
+ "#{Colours.sfile(this_pdf_file)} to:"
39
+ e
40
+ e " #{new_pdf_title}"
41
+ e
42
+ set_pdf_title(
43
+ this_pdf_file, new_pdf_title # First comes the file, then the title.
44
+ )
45
+ else
46
+ e 'No .pdf file exists at `'+sfile(this_pdf_file)+'`.'
47
+ end
48
+ }
49
+ end; self.instance_eval { alias autotitle automatic_pdf_title } # === PdfParadise.autotitle
50
+
51
+ end
52
+
53
+ if __FILE__ == $PROGRAM_NAME
54
+ PdfParadise.automatic_pdf_title(ARGV)
55
+ end # apdf
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ module PdfParadise
6
+
7
+ require 'pdf_paradise/toplevel_methods/esystem.rb'
8
+
9
+ # ========================================================================= #
10
+ # === PdfParadise.convert_epub_to_pdf
11
+ #
12
+ # This method allows us to convert an .epub file to .pdf format, if
13
+ # pandoc is available.
14
+ # ========================================================================= #
15
+ def self.convert_epub_to_pdf(i)
16
+ i = [i].flatten.compact
17
+ i.each {|entry|
18
+ _ = 'pandoc -s -t latex --toc --chapters --latex-engine=lualatex '+entry+' -o '+entry+'.pdf'
19
+ esystem _
20
+ }
21
+ end
22
+
23
+ end
24
+
25
+ if __FILE__ == $PROGRAM_NAME
26
+ PdfParadise.convert_epub_to_pdf(ARGV)
27
+ end
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'pdf_paradise/toplevel_methods/convert_markdown_to_pdf.rb'
6
+ # =========================================================================== #
7
+ module PdfParadise
8
+
9
+ require 'pdf_paradise/toplevel_methods/e.rb'
10
+
11
+ # ========================================================================= #
12
+ # === PdfParadise.convert_markdown_to_pdf
13
+ #
14
+ # This method can be used to convert a markdown .md file into a .pdf
15
+ # file.
16
+ #
17
+ # This functionality depends on kramdown, and kramdown-pdf-converter.
18
+ # ========================================================================= #
19
+ def self.convert_markdown_to_pdf(
20
+ this_markdown_file
21
+ )
22
+ require 'kramdown'
23
+ require 'kramdown/converter/pdf'
24
+ begin
25
+ require 'save_file'
26
+ rescue LoadError; end
27
+ require 'colours'
28
+ [this_markdown_file].flatten.compact.each {|markdown_file|
29
+ if File.exist? markdown_file
30
+ text = File.read(markdown_file)
31
+ dataset = Kramdown::Document.new(text).to_pdf
32
+ target = markdown_file.sub(/#{File.extname(markdown_file)}$/,'')+'.pdf'
33
+ e 'Storing into the file `'+Colours.sfile(target)+'`.'
34
+ SaveFile.write_what_into(dataset, target)
35
+ else
36
+ e 'No file exists at '+Colours.sfile(markdown_file)+'.'
37
+ end
38
+ }
39
+ end
40
+
41
+ end
42
+
43
+ if __FILE__ == $PROGRAM_NAME
44
+ PdfParadise.convert_markdown_to_pdf(ARGV)
45
+ end # convert_markdown_to_pdf