mirror of
https://github.com/redmine/redmine.git
synced 2025-11-10 07:16:03 +01:00
Remove RDoc tags (#28943).
Patch by Sho HASHIMOTO. git-svn-id: http://svn.redmine.org/redmine/trunk@17370 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -109,12 +109,12 @@ module OpenIdAuthentication
|
|||||||
# the Rails convention "open_id_identifier" because that's what
|
# the Rails convention "open_id_identifier" because that's what
|
||||||
# the specification dictates in order to get browser auto-complete
|
# the specification dictates in order to get browser auto-complete
|
||||||
# working across sites
|
# working across sites
|
||||||
def using_open_id?(identifier = nil) #:doc:
|
def using_open_id?(identifier = nil)
|
||||||
identifier ||= open_id_identifier
|
identifier ||= open_id_identifier
|
||||||
!identifier.blank? || request.env[Rack::OpenID::RESPONSE]
|
!identifier.blank? || request.env[Rack::OpenID::RESPONSE]
|
||||||
end
|
end
|
||||||
|
|
||||||
def authenticate_with_open_id(identifier = nil, options = {}, &block) #:doc:
|
def authenticate_with_open_id(identifier = nil, options = {}, &block)
|
||||||
identifier ||= open_id_identifier
|
identifier ||= open_id_identifier
|
||||||
|
|
||||||
if request.env[Rack::OpenID::RESPONSE]
|
if request.env[Rack::OpenID::RESPONSE]
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
require File.dirname(__FILE__) + '/string/conversions'
|
require File.dirname(__FILE__) + '/string/conversions'
|
||||||
require File.dirname(__FILE__) + '/string/inflections'
|
require File.dirname(__FILE__) + '/string/inflections'
|
||||||
|
|
||||||
class String #:nodoc:
|
# @private
|
||||||
|
class String
|
||||||
include Redmine::CoreExtensions::String::Conversions
|
include Redmine::CoreExtensions::String::Conversions
|
||||||
include Redmine::CoreExtensions::String::Inflections
|
include Redmine::CoreExtensions::String::Inflections
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -15,10 +15,13 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
module Redmine #:nodoc:
|
module Redmine
|
||||||
module CoreExtensions #:nodoc:
|
# @private
|
||||||
module String #:nodoc:
|
module CoreExtensions
|
||||||
|
# @private
|
||||||
|
module String
|
||||||
# Custom string conversions
|
# Custom string conversions
|
||||||
|
# @private
|
||||||
module Conversions
|
module Conversions
|
||||||
# Parses hours format and returns a float
|
# Parses hours format and returns a float
|
||||||
def to_hours
|
def to_hours
|
||||||
|
|||||||
@@ -15,10 +15,13 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
module Redmine #:nodoc:
|
module Redmine
|
||||||
module CoreExtensions #:nodoc:
|
# @private
|
||||||
module String #:nodoc:
|
module CoreExtensions
|
||||||
|
# @private
|
||||||
|
module String
|
||||||
# Custom string inflections
|
# Custom string inflections
|
||||||
|
# @private
|
||||||
module Inflections
|
module Inflections
|
||||||
def with_leading_slash
|
def with_leading_slash
|
||||||
starts_with?('/') ? self : "/#{ self }"
|
starts_with?('/') ? self : "/#{ self }"
|
||||||
|
|||||||
@@ -32,8 +32,8 @@ module Redmine
|
|||||||
IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' }
|
IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' }
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
# :nodoc:
|
|
||||||
# Some utility methods for the PDF export
|
# Some utility methods for the PDF export
|
||||||
|
# @private
|
||||||
class PDF
|
class PDF
|
||||||
MaxCharactorsForSubject = 45
|
MaxCharactorsForSubject = 45
|
||||||
TotalWidth = 280
|
TotalWidth = 280
|
||||||
|
|||||||
@@ -17,7 +17,8 @@
|
|||||||
|
|
||||||
module Redmine
|
module Redmine
|
||||||
module MenuManager
|
module MenuManager
|
||||||
class MenuError < StandardError #:nodoc:
|
# @private
|
||||||
|
class MenuError < StandardError
|
||||||
end
|
end
|
||||||
|
|
||||||
module MenuController
|
module MenuController
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
module Redmine #:nodoc:
|
module Redmine
|
||||||
|
|
||||||
class PluginNotFound < StandardError; end
|
class PluginNotFound < StandardError; end
|
||||||
class PluginRequirementError < StandardError; end
|
class PluginRequirementError < StandardError; end
|
||||||
|
|||||||
@@ -21,7 +21,8 @@ require 'redmine/scm/adapters'
|
|||||||
module Redmine
|
module Redmine
|
||||||
module Scm
|
module Scm
|
||||||
module Adapters
|
module Adapters
|
||||||
class AbstractAdapter #:nodoc:
|
# @private
|
||||||
|
class AbstractAdapter
|
||||||
include Redmine::Utils::Shell
|
include Redmine::Utils::Shell
|
||||||
|
|
||||||
# raised if scm command exited with error, e.g. unknown revision.
|
# raised if scm command exited with error, e.g. unknown revision.
|
||||||
|
|||||||
@@ -18,7 +18,8 @@
|
|||||||
module Redmine
|
module Redmine
|
||||||
module Scm
|
module Scm
|
||||||
module Adapters
|
module Adapters
|
||||||
class CommandFailed < StandardError #:nodoc:
|
# @private
|
||||||
|
class CommandFailed < StandardError
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
require 'rexml/document'
|
require 'rexml/document'
|
||||||
|
|
||||||
module Redmine
|
module Redmine
|
||||||
module VERSION #:nodoc:
|
# @private
|
||||||
|
module VERSION
|
||||||
MAJOR = 3
|
MAJOR = 3
|
||||||
MINOR = 4
|
MINOR = 4
|
||||||
TINY = 5
|
TINY = 5
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ begin
|
|||||||
'doc/RUNNING_TESTS',
|
'doc/RUNNING_TESTS',
|
||||||
'doc/UPGRADING'].join(',')
|
'doc/UPGRADING'].join(',')
|
||||||
|
|
||||||
t.options += ['--output-dir', './doc/app', '--files', static_files]
|
t.options += ['--no-private', '--output-dir', './doc/app', '--files', static_files]
|
||||||
end
|
end
|
||||||
|
|
||||||
rescue LoadError
|
rescue LoadError
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ module OpenIdAuthentication
|
|||||||
|
|
||||||
protected
|
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')
|
if User.find_by_identity_url(identity_url) || identity_url.include?('good')
|
||||||
extension_response_fields = {}
|
extension_response_fields = {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user