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