⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uri.py

📁 Network Administration Visualized 网络管理可视化源码
💻 PY
字号:
# -*- coding: ISO8859-1 -*-## $Id: URI.py 3425 2006-06-08 13:07:54Z mortenv $## Copyright 2003 Norwegian University of Science and Technology## This file is part of Network Administration Visualized (NAV)## NAV is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## NAV 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 General Public License for more details.## You should have received a copy of the GNU General Public License# along with NAV; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA### Authors: Sigurd Gartmann <sigurd-nav@brogar.org>#import re,stringfrom urllib import unquote_plus as unquotefrom urlparse import urlsplitclass URI:    """    An object representing a uri, that may replace parts of itself.    """        def __init__(self,uri):        """        Constructor of the URI class. Sets the original uri.        - uri : the original uri that will be used        """                parsed_uri = urlsplit(uri)        args_array = parsed_uri[3].split("&")        if args_array:            args = {}            for arg in args_array:                if arg:                    keyvallist = arg.split("=")                    if keyvallist[0]:                        args[keyvallist[0]] = keyvallist[1]            self.args = args        else:            self.args = []                self.path = parsed_uri[2]                def setArguments(self,fields,string):        """        Replaces the values of the arguments in the uri that has one of the keys listed in fields with string.        - fields : a list of keys that will be removed or where the values will be replaced        - string : the string used to override the old values        """                path = self.path        if fields:            count = 0                        for field in fields:                if self.args.has_key(field):                    count += 1                    self.args[field] = string            if not count:                self.args[fields[0]] = string    def make(self):        uri = self.path        args = []        for arg,val in self.args.items():            args.append(arg+"="+val)        args = string.join(args,"&")        if args:            uri += "?"+args        return uri    def get(self,var):        if self.args.has_key(var):            return unquote(self.args[var])        else:            return

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -