diff options
author | Ralph Amissah <ralph@amissah.com> | 2010-05-26 19:16:02 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2010-05-26 19:16:02 -0400 |
commit | 752cfd30e986d8a77bfcef51ee4a15ba3c044059 (patch) | |
tree | 648c5a2076a0c9eaea66d21e0ab2511490be2347 /lib/sisu/v2/xml_format.rb | |
parent | dal syntax, doc_str, http: matches to include https: (diff) |
general extension of regex matches for http: to include https:
Diffstat (limited to 'lib/sisu/v2/xml_format.rb')
-rw-r--r-- | lib/sisu/v2/xml_format.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sisu/v2/xml_format.rb b/lib/sisu/v2/xml_format.rb index ccef9b19..1558315c 100644 --- a/lib/sisu/v2/xml_format.rb +++ b/lib/sisu/v2/xml_format.rb @@ -665,7 +665,7 @@ WOK end end def links_guide_vertical_open #??? - url=(((defined? @vz.url_hp) && @vz.url_hp =~/^http:\/\/\S+$/) ? @vz.url_hp : @vz.url_home) + url=(((defined? @vz.url_hp) && @vz.url_hp =~/^https?:\/\/\S+$/) ? @vz.url_hp : @vz.url_home) %{ <div id="vertical_links"> <ul id="vertical"> @@ -685,7 +685,7 @@ WOK <!- quick ref -!>} end def links_guide_horizontal_open #??? - url=(((defined? @vz.url_hp) && @vz.url_hp =~/^http:\/\/\S+$/) ? @vz.url_hp : @vz.url_home) + url=(((defined? @vz.url_hp) && @vz.url_hp =~/^https?:\/\/\S+$/) ? @vz.url_hp : @vz.url_home) %{ <div id="horizontal_links"> <ul id="horizontal"> |