diff options
| author | Ralph Amissah <ralph@amissah.com> | 2010-05-26 19:12:44 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2010-05-26 19:12:46 -0400 | 
| commit | 1084e67511a39928d8f9c7a0af6ae36bcdb08b80 (patch) | |
| tree | 4e6f8368911dda3581fcd73f51320bc286368527 | |
| parent | texpdf_format, https: url match with tilde, fix (diff) | |
dal syntax, doc_str, http: matches to include https:
also dal_syntax fix, no auto-bold or italics on relative or internal links
| -rw-r--r-- | lib/sisu/v2/dal_doc_str.rb | 2 | ||||
| -rw-r--r-- | lib/sisu/v2/dal_syntax.rb | 8 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/lib/sisu/v2/dal_doc_str.rb b/lib/sisu/v2/dal_doc_str.rb index e35baf5a..1dc6076e 100644 --- a/lib/sisu/v2/dal_doc_str.rb +++ b/lib/sisu/v2/dal_doc_str.rb @@ -87,7 +87,7 @@ module SiSU_document_structure_extract        end      end      def image_test(str) -      boolean=(str=~/\{\s*\S+?\.png.+?\}http:\/\/\S+/ ? true : false) +      boolean=(str=~/\{\s*\S+?\.png.+?\}https?:\/\/\S+/ ? true : false)      end      def bullet_test(str)        bool=((str=~/\*/) ? true : false) diff --git a/lib/sisu/v2/dal_syntax.rb b/lib/sisu/v2/dal_syntax.rb index 07186d67..0b7c6541 100644 --- a/lib/sisu/v2/dal_syntax.rb +++ b/lib/sisu/v2/dal_syntax.rb @@ -87,7 +87,7 @@ module SiSU_Syntax          {:o =>Mx[:fa_underscore_o], :c =>Mx[:fa_underscore_c] }        else p __LINE__.to_s + '::' + __FILE__        end -      @http_m=%r{\{.+?\}https?://\S+|https?:\S+|\.\.\/\S+|\S+?\.png\b|[*]~\S+|^#{Mx[:meta_o]}.+|#{Mx[:gr_o]}(?:code|group|alt|verse)(?:-end)?#{Mx[:gr_c]}|#{Mx[:fa_o]}:br#{Mx[:fa_c]}} +      @http_m=%r{\{.+?\}https?://\S+|https?:\S+|:\S+|\.\.\/\S+|#\S+|\S+?\.png\b|[*]~\S+|^#{Mx[:meta_o]}.+|#{Mx[:gr_o]}(?:code|group|alt|verse)(?:-end)?#{Mx[:gr_c]}|#{Mx[:fa_o]}:br#{Mx[:fa_c]}}        @manmkp_ital=emph_italics \        ? '[i/*]\\{.+?\\}[i/*]' \        : '[i/]\\{.+?\\}[i/]' @@ -166,9 +166,9 @@ module SiSU_Syntax        dob      end      def embolden(given) -      given.gsub!(/^!_\s+((?:\{|#{Mx[:lnk_o]})(?:~^ )?.+?(?:\}|#{Mx[:lnk_o]})http:\/\/\S+.*?)(<br>|[#{Mx[:br_line]}#{Mx[:br_paragraph]}#{Mx[:br_nl]}])/, +      given.gsub!(/^!_\s+((?:\{|#{Mx[:lnk_o]})(?:~^ )?.+?(?:\}|#{Mx[:lnk_o]})https?:\/\/\S+.*?)(<br>|[#{Mx[:br_line]}#{Mx[:br_paragraph]}#{Mx[:br_nl]}])/,          "#{Mx[:fa_bold_o]} \\1 #{Mx[:fa_bold_c]}\\2") -      given.gsub!(/^!_\s+((?:\{|#{Mx[:lnk_o]})(?:~^ )?.+?(?:\}|#{Mx[:lnk_o]})http:\/\/\S+.*)/, +      given.gsub!(/^!_\s+((?:\{|#{Mx[:lnk_o]})(?:~^ )?.+?(?:\}|#{Mx[:lnk_o]})https?:\/\/\S+.*)/,          "#{Mx[:fa_bold_o]} \\1 #{Mx[:fa_bold_c]}")        given.gsub!(/(?:^!_|^#{Mx[:lv_o]}[7-9]:\S*?#{Mx[:lv_c]})\s*(.+?)(<br>|[#{Mx[:br_line]}#{Mx[:br_paragraph]}#{Mx[:br_nl]}])/,          "#{Mx[:fa_bold_o]}\\1#{Mx[:fa_bold_c]}\\2") @@ -267,7 +267,7 @@ module SiSU_Syntax          word=dob.obj.scan(/\S+|\n/) #unless line =~/^(?:#{Mx[:meta_o]}|%+\s)/ #visit          if word            word.each do |w| # _ - / # | : ! ^ ~ -            unless w =~/~\{|\}~|~\[|\]~|^\^~|~\^|\*~\S+|~#|\{t?~|\{table|http:\/\/\S+/             # do something earlier about table!! +            unless w =~/~\{|\}~|~\[|\]~|^\^~|~\^|\*~\S+|~#|\{t?~|\{table|https?:\/\/\S+/             # do something earlier about table!!                w.gsub!(/\\?~/,"#{Mx[:gl_o]}#126#{Mx[:gl_c]}")                                       #escaped special character              end              w.gsub!(/^\<$/,"#{Mx[:gl_o]}#lt#{Mx[:gl_c]}")                                          #escaped special character | 
