Mercurial > libervia-web
view src/browser/sat_browser/strings.py @ 828:0c824ebe9d87
server (blog): implemented tag/category filtering:
- the tag=[quoted tag] query is used to use the filtering
- MAM data use request.mam_extra instead of request.extra_dict to avoid using it with item_ids
- getDefaultQueryData function is used to keep query data (link MAM category filtering) between links
- filtering is help when displaying a blog post, this way it's easy to navigate between thematic posts
- filtering can be removed by clicking on user avatar/nick (with default theme)
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 08 Jan 2016 19:58:08 +0100 |
parents | f8a7a046ff9c |
children | 73cc4658f431 |
line wrap: on
line source
#!/usr/bin/python # -*- coding: utf-8 -*- # SAT helpers methods for plugins # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import re from __pyjamas__ import JS def getURLParams(url): """This comes from pyjamas.Location.makeUrlDict with a small change to also parse full URLs, and parameters with no value specified (in that case the default value "" is used). @param url: any URL with or without parameters @return: a dictionary of the parameters, if any was given, or {} """ dict_ = {} if "/" in url: # keep the part after the last "/" url = url[url.rindex("/") + 1:] if url.startswith("?"): # remove the first "?" url = url[1:] pairs = url.split("&") for pair in pairs: if len(pair) < 3: continue kv = pair.split("=", 1) dict_[kv[0]] = kv[1] if len(kv) > 1 else "" return dict_ def addURLToText(text): """Workaround for a pyjamas bug with regex In some case, Pyjamas' re module get crazy and freeze browsers (tested with Iceweasel and Chromium). we use javascript as a workaround This method is inspired from https://stackoverflow.com/questions/1500260/detect-urls-in-text-with-javascript """ JS("""var urlRegex = /(https?:\/\/[^\s]+)/g; return text.replace(urlRegex, function(url) { return '<a href="' + url + '">' + url + '</a>'; })""") def addURLToImage(string): """Check a XHTML text for what looks like an imageURL and make it clickable""" def repl(match): url = match.group(1) return '<a href="%s" target="_blank">%s</a>' % (url, match.group(0)) pattern = r"""<img[^>]* src="([^"]+)"[^>]*>""" return re.sub(pattern, repl, string)