# the Rails convention "open_id_identifier" because that's what
# the specification dictates in order to get browser auto-complete
# working across sites
- def using_open_id?(identifier = nil) #:doc:
+ def using_open_id?(identifier = nil)
identifier ||= open_id_identifier
!identifier.blank? || request.env[Rack::OpenID::RESPONSE]
end
- def authenticate_with_open_id(identifier = nil, options = {}, &block) #:doc:
+ def authenticate_with_open_id(identifier = nil, options = {}, &block)
identifier ||= open_id_identifier
if request.env[Rack::OpenID::RESPONSE]
require File.dirname(__FILE__) + '/string/conversions'
require File.dirname(__FILE__) + '/string/inflections'
-class String #:nodoc:
+# @private
+class String
include Redmine::CoreExtensions::String::Conversions
include Redmine::CoreExtensions::String::Inflections
end
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-module Redmine #:nodoc:
- module CoreExtensions #:nodoc:
- module String #:nodoc:
+module Redmine
+ # @private
+ module CoreExtensions
+ # @private
+ module String
# Custom string conversions
+ # @private
module Conversions
# Parses hours format and returns a float
def to_hours
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-module Redmine #:nodoc:
- module CoreExtensions #:nodoc:
- module String #:nodoc:
+module Redmine
+ # @private
+ module CoreExtensions
+ # @private
+ module String
# Custom string inflections
+ # @private
module Inflections
def with_leading_slash
starts_with?('/') ? self : "/#{ self }"
IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' }
}.freeze
- # :nodoc:
# Some utility methods for the PDF export
+ # @private
class PDF
MaxCharactorsForSubject = 45
TotalWidth = 280
module Redmine
module MenuManager
- class MenuError < StandardError #:nodoc:
+ # @private
+ class MenuError < StandardError
end
module MenuController
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-module Redmine #:nodoc:
+module Redmine
class PluginNotFound < StandardError; end
class PluginRequirementError < StandardError; end
module Redmine
module Scm
module Adapters
- class AbstractAdapter #:nodoc:
+ # @private
+ class AbstractAdapter
include Redmine::Utils::Shell
# raised if scm command exited with error, e.g. unknown revision.
module Redmine
module Scm
module Adapters
- class CommandFailed < StandardError #:nodoc:
+ # @private
+ class CommandFailed < StandardError
end
end
end
require 'rexml/document'
module Redmine
- module VERSION #:nodoc:
+ # @private
+ module VERSION
MAJOR = 3
MINOR = 4
TINY = 5
'doc/RUNNING_TESTS',
'doc/UPGRADING'].join(',')
- t.options += ['--output-dir', './doc/app', '--files', static_files]
+ t.options += ['--no-private', '--output-dir', './doc/app', '--files', static_files]
end
rescue LoadError
protected
- def authenticate_with_open_id(identity_url = params[:openid_url], options = {}) #:doc:
+ def authenticate_with_open_id(identity_url = params[:openid_url], options = {})
if User.find_by_identity_url(identity_url) || identity_url.include?('good')
extension_response_fields = {}