pdf2html 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b3da61b55d55cd4bddf89a429c739e2c9f35bd00
4
+ data.tar.gz: 7044515d0e576a34f16727e0b67a0fdfe00350e6
5
+ SHA512:
6
+ metadata.gz: f844cc86497e49100d913f50275cddf73cfb3269adbeb470e8f901957db432c41e05fc8a17b3690c08885f46193e2ff2fa65b3aca9ff582bc84a7db38024aaa1
7
+ data.tar.gz: b792d10792e0b5b1638f11bc40df31af0c2963f27714ec1025de230b98c5a56c67ebc415ef3eb43f6d0444652e1b3e09324f8df9c056785ca6415f8df18717d1
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Aleksandr Schigol
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,68 @@
1
+ # Pdf2html
2
+
3
+ Ruby interface to [pdf2htmlex](https://github.com/coolwanglu/pdf2htmlEX). Will utilize posix_spawn if available.
4
+
5
+ ## Installation
6
+
7
+ You need to have [pdf2htmlex](https://github.com/coolwanglu/pdf2htmlEX) installed on your system in order for this to work.
8
+ On OS X this is easy using Homebrew:
9
+
10
+ brew install pdf2htmlex
11
+
12
+ Install the gem:
13
+
14
+ gem install pdf2html
15
+
16
+ ## Usage
17
+
18
+ Pdf2Html.convert({
19
+ pdf: "/home/dev/meow.pdf",
20
+ dest_dir: "/home/dev/precious_html",
21
+ zoom: 1.5
22
+ })
23
+
24
+ ### All params to date:
25
+
26
+ data_dir: "--data-dir",
27
+ first_page: "--first-page",
28
+ last_page: "--last-page",
29
+ fit_width: "--fit-width",
30
+ fit_height: "--fit-height",
31
+ use_cropbox: "--use-cropbox",
32
+ hdpi: "--hdpi",
33
+ vdpi: "--vdpi",
34
+ embed: "--embed",
35
+ split_pages: "--split-pages",
36
+ css_filename: "--css-filename",
37
+ page_filename: "--page-filename",
38
+ outline_filename: "--outline-filename",
39
+ process_nontext: "--process-nontext",
40
+ process_outline: "--process-outline",
41
+ printing: "--printing",
42
+ fallback: "--fallback",
43
+ embed_external_font: "--embed-external-font",
44
+ font_format: "--font-format",
45
+ decompose_ligature: "--decompose-ligature",
46
+ auto_hint: "--auto-hint",
47
+ external_hint_tool: "--external-hint-tool",
48
+ stretch_narrow_glyph: "--stretch-narrow-glyph",
49
+ squeeze_wide_glyph: "--squeeze-wide-glyph",
50
+ override_fstype: "--override-fstype",
51
+ process_type: "--process-type",
52
+ heps: "--heps",
53
+ veps: "--veps",
54
+ space_threshold: "--space-threshold",
55
+ font_size_multiplier: "--font-size-multiplier",
56
+ space_as_offset: "--space-as-offset",
57
+ tounicode: "--tounicode",
58
+ optimize_text: "--optimize-text",
59
+ bg_format: "--bg-format",
60
+ owner_password: "--owner-password",
61
+ user_password: "--user-password",
62
+ no_drm: "--no-drm",
63
+ clean_tmp: "--clean-tmp",
64
+ debug: "--debug"
65
+
66
+ ## Work harder
67
+
68
+
@@ -0,0 +1,11 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake'
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << "test" << "test/pdf2html"
7
+ t.test_files = FileList['test/*_test.rb', 'test/pdf2html/*_test.rb']
8
+ t.verbose = true
9
+ end
10
+
11
+ task :default => :test
@@ -0,0 +1,8 @@
1
+ require 'pdf2html/version'
2
+ require 'pdf2html/caller'
3
+
4
+ module Pdf2Html
5
+ def self.convert(options = {})
6
+ Caller.new(options).run
7
+ end
8
+ end
@@ -0,0 +1,19 @@
1
+ require 'cocaine'
2
+ require 'pdf2html/option_provider'
3
+
4
+ module Pdf2Html
5
+ PDF2HTMLEX = 'pdf2htmlex'
6
+
7
+ class Caller
8
+ attr_reader :line, :cmd_options
9
+
10
+ def initialize(options)
11
+ @cmd_options = OptionProvider.new(options)
12
+ @line = ::Cocaine::CommandLine.new(PDF2HTMLEX, @cmd_options.to_s)
13
+ end
14
+
15
+ def run
16
+ @line.run(@cmd_options.to_h)
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,81 @@
1
+ module Pdf2Html
2
+ PDF2HTMLEX_OPTIONS = {
3
+ zoom: "--zoom",
4
+ data_dir: "--data-dir",
5
+ dest_dir: "--dest-dir",
6
+ pdf: "",
7
+ first_page: "--first-page",
8
+ last_page: "--last-page",
9
+ fit_width: "--fit-width",
10
+ fit_height: "--fit-height",
11
+ use_cropbox: "--use-cropbox",
12
+ hdpi: "--hdpi",
13
+ vdpi: "--vdpi",
14
+ embed: "--embed",
15
+ split_pages: "--split-pages",
16
+ css_filename: "--css-filename",
17
+ page_filename: "--page-filename",
18
+ outline_filename: "--outline-filename",
19
+ process_nontext: "--process-nontext",
20
+ process_outline: "--process-outline",
21
+ printing: "--printing",
22
+ fallback: "--fallback",
23
+ embed_external_font: "--embed-external-font",
24
+ font_format: "--font-format",
25
+ decompose_ligature: "--decompose-ligature",
26
+ auto_hint: "--auto-hint",
27
+ external_hint_tool: "--external-hint-tool",
28
+ stretch_narrow_glyph: "--stretch-narrow-glyph",
29
+ squeeze_wide_glyph: "--squeeze-wide-glyph",
30
+ override_fstype: "--override-fstype",
31
+ process_type: "--process-type",
32
+ heps: "--heps",
33
+ veps: "--veps",
34
+ space_threshold: "--space-threshold",
35
+ font_size_multiplier: "--font-size-multiplier",
36
+ space_as_offset: "--space-as-offset",
37
+ tounicode: "--tounicode",
38
+ optimize_text: "--optimize-text",
39
+ bg_format: "--bg-format",
40
+ owner_password: "--owner-password",
41
+ user_password: "--user-password",
42
+ no_drm: "--no-drm",
43
+ clean_tmp: "--clean-tmp",
44
+ debug: "--debug"
45
+ }
46
+
47
+ class OptionProvider
48
+ attr_reader :keys#, :switches
49
+
50
+ def initialize(options = {})
51
+ @keys = PDF2HTMLEX_OPTIONS.keys & options.keys
52
+ @options = normalize_options(options)
53
+ end
54
+
55
+ def to_s
56
+ return "" if @keys.empty?
57
+
58
+ @options_string ||= ""
59
+ @options.each do |key, val|
60
+ @options_string = @options_string + "#{PDF2HTMLEX_OPTIONS[key]} #{key.to_sym.inspect.to_s} "
61
+ end
62
+
63
+ @options_string
64
+ end
65
+
66
+ def to_h
67
+ @options
68
+ end
69
+
70
+ private
71
+
72
+ def normalize_options(options)
73
+ return {} if options.nil? || @keys.nil?
74
+
75
+ @keys.inject({}) do |hash, f|
76
+ hash[f] = options[f].to_s unless options[f].nil?
77
+ hash
78
+ end
79
+ end
80
+ end
81
+ end
@@ -0,0 +1,3 @@
1
+ module Pdf2Html
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,28 @@
1
+ # encoding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'pdf2html/version'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = 'pdf2html'
9
+ s.version = Pdf2Html::VERSION.dup
10
+ s.platform = Gem::Platform::RUBY
11
+ s.author = 'Aleksandr Schigol'
12
+ s.email = 'aleksandr@schigol.com'
13
+ s.description = 'Ruby wrapper for the awesome pdf2htmlex'
14
+ s.summary = 'Much pdf2htmlex love'
15
+ s.homepage = 'https://github.com/4oZ/pdf2html'
16
+ s.license = 'MIT'
17
+
18
+ s.files = `git ls-files`.split($/)
19
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
21
+ s.require_paths = ['lib']
22
+
23
+ s.add_runtime_dependency 'cocaine', ['= 0.5.3']
24
+
25
+ s.add_development_dependency 'bundler', '>= 1.3'
26
+ s.add_development_dependency 'rake'
27
+ s.add_development_dependency 'minitest'
28
+ end
@@ -0,0 +1,3 @@
1
+ require 'minitest/autorun'
2
+ require 'minitest/pride'
3
+ require 'pdf2html'
@@ -0,0 +1,5 @@
1
+ require_relative '../../test/helper'
2
+
3
+ describe Pdf2Html::Caller do
4
+ it ""
5
+ end
@@ -0,0 +1,20 @@
1
+ require_relative '../../test/helper'
2
+
3
+ describe Pdf2Html::OptionProvider do
4
+ before do
5
+ @options = { zoom: 1.5, dest_dir: "/dir", pdf: "some.pdf", nonsense: "nonsense" }
6
+ @option_provider = Pdf2Html::OptionProvider.new(@options)
7
+ end
8
+
9
+ it "must include only valid options" do
10
+ @option_provider.keys.wont_include :nonsense
11
+ end
12
+
13
+ it "must stringify options values" do
14
+ @option_provider.to_h[:zoom].class.must_equal String
15
+ end
16
+
17
+ it "must output options string for cocaine" do
18
+ @option_provider.to_s.class.must_equal String
19
+ end
20
+ end
@@ -0,0 +1,7 @@
1
+ require_relative '../../test/helper'
2
+
3
+ describe Pdf2Html do
4
+ it 'better be defined or I\'ll put out my gun' do
5
+ Pdf2Html::VERSION.wont_be_nil
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ require_relative 'helper'
2
+
3
+ describe Pdf2Html do
4
+
5
+ end
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pdf2html
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Aleksandr Schigol
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cocaine
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.5.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.5.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Ruby wrapper for the awesome pdf2htmlex
70
+ email: aleksandr@schigol.com
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - ".gitignore"
76
+ - Gemfile
77
+ - LICENSE.txt
78
+ - README.md
79
+ - Rakefile
80
+ - lib/pdf2html.rb
81
+ - lib/pdf2html/caller.rb
82
+ - lib/pdf2html/option_provider.rb
83
+ - lib/pdf2html/version.rb
84
+ - pdf2html.gemspec
85
+ - test/helper.rb
86
+ - test/pdf2html/caller_test.rb
87
+ - test/pdf2html/option_provider_test.rb
88
+ - test/pdf2html/version_test.rb
89
+ - test/pdf2html_test.rb
90
+ homepage: https://github.com/4oZ/pdf2html
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 2.1.11
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Much pdf2htmlex love
114
+ test_files:
115
+ - test/helper.rb
116
+ - test/pdf2html/caller_test.rb
117
+ - test/pdf2html/option_provider_test.rb
118
+ - test/pdf2html/version_test.rb
119
+ - test/pdf2html_test.rb