示例#1
0
 def location(self):
     location = self.internal
     location = filterIgnoreUrlParts(location)
     return location
示例#2
0
 def location(self):
     location = self.internal
     location = filterIgnoreUrlParts(location)
     return location
示例#3
0
 def href(self):
     href = self.internal.getAttribute("href")
     href = filterIgnoreUrlParts(href)
     return href
示例#4
0
 def action(self):
     action = self.internal.getActionAttribute()
     action = filterIgnoreUrlParts(action)
     return action
示例#5
0
 def action(self):
     action = self.internal.getActionAttribute()
     action = filterIgnoreUrlParts(action)
     return action
示例#6
0
 def query(self):
     query = self.webrequest.getUrl().getQuery()
     query = filterIgnoreUrlParts(query)
     return query if query else None
示例#7
0
 def href(self):
     href = self.internal.getAttribute("href")
     href = filterIgnoreUrlParts(href)
     return href