Module: LinksHelper (Redmine::WikiFormatting)

Overview
Module Structure
Class Hierarchy
Constants
LinksHelper::AUTO_LINK_RE
Instance Methods
LinksHelper#auto_link! / 1
LinksHelper#auto_mailto! / 1
is a submodule of
module: WikiFormatting ( Redmine )
is included by
class: Formatter ( Redmine::WikiFormatting::NullFormatter )
class: Formatter ( Redmine::WikiFormatting::Textile )
has properties
constant: AUTO_LINK_RE   
method: auto_link! / 1   
method: auto_mailto! / 1   
is defined at
#83 in lib/redmine/wiki_formatting.rb  

Overview

Module Structure

  module: <Toplevel Module>
  module: Redmine
  module: WikiFormatting
✗ module: LinksHelper
  module: NullFormatter
class: Formatter     
  module: Textile
class: Formatter     

Constants

LinksHelper::AUTO_LINK_RE

#84 in lib/redmine/wiki_formatting.rb

AUTO_LINK_RE = %r{ ( # leading text <\w+.*?>| # leading HTML tag, or [^=<>!:'"/]| # leading punctuation, or ^ # beginning of line ) ( (?:https?://)| # protocol spec, or (?:s?ftps?://)| (?:www\.) # www.* ) ( (\S+?) # url (\/)? # slash ) ((?:&gt;)?|[^\w\=\/;\(\)]*?) # post (?=<|\s|$) }x unless const_defined?(:AUTO_LINK_RE)   

Instance Methods

LinksHelper#auto_link! / 1

#104 in lib/redmine/wiki_formatting.rb

auto_link! ( text )

LinksHelper#auto_mailto! / 1

#125 in lib/redmine/wiki_formatting.rb

auto_mailto! ( text )