Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: cms/sources.py

Issue 29376948: Noissue - Adding support for tel link scheme in Source.resolve_link of CMS (Closed) Base URL: https://hg.adblockplus.org/cms
Patch Set: Created Feb. 23, 2017, 3:50 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cms/sources.py
===================================================================
--- a/cms/sources.py
+++ b/cms/sources.py
@@ -24,17 +24,18 @@
import zipfile
import logging
class Source:
def resolve_link(self, url, locale):
parsed = urlparse.urlparse(url)
page = parsed.path
- if parsed.scheme != '' or page.startswith('/') or page.startswith('.'):
+ # manually testing tel scheme because it is not recoginzed by urlparse
Vasily Kuznetsov 2017/02/23 19:03:29 I think it would be better to make this special ca
+ if parsed.scheme != '' or url.startswith('tel:') or page.startswith('/') or page.startswith('.'):
# Not a page link
return None, None
if page == '' and url != '':
# Page-relative link
return None, None
config = self.read_config()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld