Class: Puppet::Application::Doc
Constant Summary
DOCPATTERN
Constants included
from Util
Util::ALNUM, Util::ALPHA, Util::AbsolutePathPosix, Util::AbsolutePathWindows, Util::DEFAULT_POSIX_MODE, Util::DEFAULT_WINDOWS_MODE, Util::ESCAPED, Util::HEX, Util::HttpProxy, Util::PUPPET_STACK_INSERTION_FRAME, Util::RESERVED, Util::RFC_3986_URI_REGEX, Util::UNRESERVED, Util::UNSAFE
Constants included
from Util::POSIX
Util::POSIX::LOCALE_ENV_VARS, Util::POSIX::USER_ENV_VARS
Util::SymbolicFileMode::SetGIDBit, Util::SymbolicFileMode::SetUIDBit, Util::SymbolicFileMode::StickyBit, Util::SymbolicFileMode::SymbolicMode, Util::SymbolicFileMode::SymbolicSpecialToBit
Instance Attribute Summary collapse
#command_line, #options
Instance Method Summary
collapse
[], #app_defaults, available_application_names, banner, clear!, clear?, clear_everything_for_tests, #configure_indirector_routes, controlled_run, #deprecate, #deprecated?, environment_mode, exit, find, get_environment_mode, #handle_logdest_arg, #handlearg, #initialize, #initialize_app_defaults, interrupted?, #log_runtime_environment, #main, #name, option, option_parser_commands, #parse_options, restart!, restart_requested?, #run, run_mode, #set_log_level, #setup_logs, stop!, stop_requested?, try_load_class
Methods included from Util
absolute_path?, benchmark, chuser, clear_environment, create_erb, default_env, deterministic_rand, deterministic_rand_int, exit_on_fail, format_backtrace_array, format_puppetstack_frame, get_env, get_environment, logmethods, merge_environment, path_to_uri, pretty_backtrace, replace_file, resolve_stackframe, rfc2396_escape, safe_posix_fork, set_env, skip_external_facts, symbolizehash, thinmark, uri_encode, uri_query_encode, uri_to_path, uri_unescape, which, withenv, withumask
#get_posix_field, #gid, groups_of, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid
#display_mode, #normalize_symbolic_mode, #symbolic_mode_to_int, #valid_symbolic_mode?
Instance Attribute Details
7
8
9
|
# File 'lib/puppet/application/doc.rb', line 7
def manifest
@manifest
end
|
#unknown_args ⇒ Object
7
8
9
|
# File 'lib/puppet/application/doc.rb', line 7
def unknown_args
@unknown_args
end
|
Instance Method Details
#handle_unknown(opt, arg) ⇒ Object
118
119
120
121
|
# File 'lib/puppet/application/doc.rb', line 118
def handle_unknown( opt, arg )
@unknown_args << {:opt => opt, :arg => arg }
true
end
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# File 'lib/puppet/application/doc.rb', line 57
def help
"\npuppet-doc(8) -- \#{summary}\n========\n\nSYNOPSIS\n--------\nGenerates a reference for all Puppet types. Largely meant for internal\nPuppet Inc. use. (Deprecated)\n\n\nUSAGE\n-----\npuppet doc [-h|--help] [-l|--list]\n[-r|--reference <reference-name>]\n\n\nDESCRIPTION\n-----------\nThis deprecated command generates a Markdown document to stdout\ndescribing all installed Puppet types or all allowable arguments to\npuppet executables. It is largely meant for internal use and is used to\ngenerate the reference document available on the Puppet Inc. web site.\n\nFor Puppet module documentation (and all other use cases) this command\nhas been superseded by the \"puppet-strings\"\nmodule - see https://github.com/puppetlabs/puppetlabs-strings for more information.\n\nThis command (puppet-doc) will be removed once the\npuppetlabs internal documentation processing pipeline is completely based\non puppet-strings.\n\nOPTIONS\n-------\n\n* --help:\nPrint this help message\n\n* --reference:\nBuild a particular reference. Get a list of references by running\n'puppet doc --list'.\n\n\nEXAMPLE\n-------\n $ puppet doc -r type > /tmp/type_reference.markdown\n\n\nAUTHOR\n------\nLuke Kanies\n\n\nCOPYRIGHT\n---------\nCopyright (c) 2011 Puppet Inc., LLC Licensed under the Apache 2.0 License\n\n"
end
|
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
# File 'lib/puppet/application/doc.rb', line 154
def other
text = String.new
with_contents = options[:references].length <= 1
exit_code = 0
require_relative '../../puppet/util/reference'
options[:references].sort_by(&:to_s).each do |name|
section = Puppet::Util::Reference.reference(name)
raise _("Could not find reference %{name}") % { name: name } unless section
begin
text += section.send(options[:format], with_contents)
rescue => detail
Puppet.log_exception(detail, _("Could not generate reference %{name}: %{detail}") % { name: name, detail: detail })
exit_code = 1
next
end
end
text += Puppet::Util::Reference. unless with_contents
if options[:mode] == :pdf
Puppet::Util::Reference.pdf(text)
else
puts text
end
exit exit_code
end
|
9
10
11
12
13
14
15
|
# File 'lib/puppet/application/doc.rb', line 9
def preinit
{:references => [], :mode => :text, :format => :to_markdown }.each do |name,value|
options[name] = value
end
@unknown_args = []
@manifest = false
end
|
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
# File 'lib/puppet/application/doc.rb', line 127
def rdoc
exit_code = 0
files = []
unless @manifest
env = Puppet.lookup(:current_environment)
files += env.modulepath
files << ::File.dirname(env.manifest) if env.manifest != Puppet::Node::Environment::NO_MANIFEST
end
files += command_line.args
Puppet.info _("scanning: %{files}") % { files: files.inspect }
Puppet.settings[:document_all] = options[:all] || false
begin
require_relative '../../puppet/util/rdoc'
if @manifest
Puppet::Util::RDoc.manifestdoc(files)
else
options[:outputdir] = "doc" unless options[:outputdir]
Puppet::Util::RDoc.rdoc(options[:outputdir], files, options[:charset])
end
rescue => detail
Puppet.log_exception(detail, _("Could not generate documentation: %{detail}") % { detail: detail })
exit_code = 1
end
exit exit_code
end
|
#run_command ⇒ Object
123
124
125
|
# File 'lib/puppet/application/doc.rb', line 123
def run_command
return [:rdoc].include?(options[:mode]) ? send(options[:mode]) : other
end
|
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
# File 'lib/puppet/application/doc.rb', line 184
def setup
if command_line.args.size > 0
options[:mode] = :rdoc
@manifest = true
end
if options[:mode] == :rdoc
setup_rdoc
else
setup_reference
end
setup_logging
end
|
#setup_logging ⇒ Object
227
228
229
230
231
232
233
|
# File 'lib/puppet/application/doc.rb', line 227
def setup_logging
Puppet::Util::Log.level = :warning
set_log_level
Puppet::Util::Log.newdestination(:console)
end
|
#setup_rdoc ⇒ Object
213
214
215
216
217
218
219
220
221
222
223
224
225
|
# File 'lib/puppet/application/doc.rb', line 213
def setup_rdoc
if @unknown_args.size > 0
@unknown_args.each do |option|
if option[:opt]=="--modulepath"
option[:arg] = option[:arg].split(::File::PATH_SEPARATOR).collect { |p| ::File.expand_path(p) }.join(::File::PATH_SEPARATOR)
end
Puppet.settings.handlearg(option[:opt], option[:arg])
end
end
end
|
#setup_reference ⇒ Object
200
201
202
203
204
205
206
207
208
209
210
211
|
# File 'lib/puppet/application/doc.rb', line 200
def setup_reference
if options[:all]
require_relative '../../puppet/util/reference'
refs = Puppet::Util::Reference.references(Puppet.lookup(:current_environment))
options[:references] = refs.reject do |ref|
Puppet::Util::Reference.reference(ref).dynamic?
end
end
options[:references] << :type if options[:references].empty?
end
|
53
54
55
|
# File 'lib/puppet/application/doc.rb', line 53
def summary
_("Generate Puppet references")
end
|