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