Sha256: b12d0fb4f15e37d16e1db4a8563fd19aa493fcb23f4207a3020b87fc11702803
Contents?: true
Size: 1.86 KB
Versions: 2
Compression:
Stored size: 1.86 KB
Contents
module Apipie module Helpers def markup_to_html(text) return "" if text.nil? if Apipie.configuration.markup.respond_to? :to_html Apipie.configuration.markup.to_html(text.strip_heredoc) else text.strip_heredoc end end attr_accessor :url_prefix def request_script_name Thread.current[:apipie_req_script_name] || "" end def request_script_name=(script_name) Thread.current[:apipie_req_script_name] = script_name end def full_url(path) unless @url_prefix @url_prefix = "" @url_prefix << request_script_name @url_prefix << Apipie.configuration.doc_base_url end path = path.sub(%r{^/},"") ret = "#{@url_prefix}/#{path}" ret.insert(0,"/") unless %r{\A[./]}.match?(ret) ret.sub!(%r{/*\Z},"") ret end def include_javascripts %w[ bundled/jquery.js bundled/bootstrap-collapse.js bundled/prettify.js apipie.js ].map do |file| "<script type='text/javascript' src='#{Apipie.full_url("javascripts/#{file}")}'></script>" end.join("\n").html_safe end def include_stylesheets %w[ bundled/bootstrap.min.css bundled/prettify.css bundled/bootstrap-responsive.min.css ].map do |file| "<link type='text/css' rel='stylesheet' href='#{Apipie.full_url("stylesheets/#{file}")}'/>" end.join("\n").html_safe end def label_class_for_error(err) case err[:code] when 200 'label label-info' when 201 'label label-success' when 204 'label label-info2' when 401 'label label-warning' when 403 'label label-warning2' when 422 'label label-important' when 404 'label label-inverse' else 'label' end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
apipie-rails-1.4.2 | lib/apipie/helpers.rb |
apipie-rails-1.4.1 | lib/apipie/helpers.rb |