diff options
author | Guido van Rossum <guido@python.org> | 1995-09-01 20:33:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-09-01 20:33:32 (GMT) |
commit | fd504d9f09466ded3cbadbdf43e7fd3e43cc57f4 (patch) | |
tree | f0a83b321d9c29ab25b34160635bb4d87ce3ff8f /Lib/htmllib.py | |
parent | a89b1bade562cf4ed5e03a67d151ce49c16a172a (diff) | |
download | cpython-fd504d9f09466ded3cbadbdf43e7fd3e43cc57f4.zip cpython-fd504d9f09466ded3cbadbdf43e7fd3e43cc57f4.tar.gz cpython-fd504d9f09466ded3cbadbdf43e7fd3e43cc57f4.tar.bz2 |
took out forms support (in favor a Grail extension)
Diffstat (limited to 'Lib/htmllib.py')
-rw-r--r-- | Lib/htmllib.py | 97 |
1 files changed, 3 insertions, 94 deletions
diff --git a/Lib/htmllib.py b/Lib/htmllib.py index 5591429..2d82c77 100644 --- a/Lib/htmllib.py +++ b/Lib/htmllib.py @@ -48,7 +48,9 @@ class HTMLParser(SGMLParser): def save_end(self): data = self.savedata self.savedata = None - return string.join(string.split(data)) + if not self.nofill: + data = string.join(string.split(data)) + return data # --- Hooks for anchors; should probably be overridden @@ -67,36 +69,6 @@ class HTMLParser(SGMLParser): def handle_image(self, src, alt): self.handle_data(alt) - # --- Hooks for forms; should probably be overridden - - def form_bgn(self, action, method, enctype): - self.do_p([]) - self.handle_data("<FORM>") - - def form_end(self): - self.handle_data("</FORM>") - self.do_p([]) - - def handle_input(self, type, options): - self.handle_data("<INPUT>") - - def select_bgn(self, name, size, multiple): - self.handle_data("<SELECT>") - - def select_end(self): - self.handle_data("</SELECT>") - - def handle_option(self, value, selected): - self.handle_data("<OPTION>") - - def textarea_bgn(self, name, rows, cols): - self.handle_data("<TEXTAREA>") - self.start_pre([]) - - def textarea_end(self): - self.end_pre() - self.handle_data("</TEXTAREA>") - # --------- Top level elememts def start_html(self, attrs): pass @@ -387,69 +359,6 @@ class HTMLParser(SGMLParser): src = value self.handle_image(src, alt) - # ------ Forms - - def start_form(self, attrs): - action = '' - method = '' - enctype = '' - for a, v in attrs: - if a == 'action': action = v - if a == 'method': method = v - if a == 'enctype': enctype = v - self.form_bgn(action, method, enctype) - - def end_form(self): - self.form_end() - - def do_input(self, attrs): - type = '' - options = {} - for a, v in attrs: - if a == 'type': type = string.lower(v) - else: options[a] = v - self.handle_input(type, options) - - def start_select(self, attrs): - name = '' - size = 0 - multiple = 0 - for a, v in attrs: - if a == 'multiple': multiple = 1 - if a == 'name': name = v - if a == 'size': - try: size = string.atoi(size) - except: pass - self.select_bgn(name, size, multiple) - - def end_select(self): - self.select_end() - - def do_option(self, attrs): - value = '' - selected = 1 - for a, v in attrs: - if a == 'value': value = v - if a == 'selected': selected = 1 - self.handle_option(value, selected) - - def start_textarea(self, attrs): - name = '' - rows = 0 - cols = 0 - for a, v in attrs: - if a == 'name': name = v - if a == 'rows': - try: rows = string.atoi(v) - except: pass - if a == 'cols': - try: cols = string.atoi(v) - except: pass - self.textarea_bgn(name, rows, cols) - - def end_textarea(self): - self.textarea_end() - # --- Really Old Unofficial Deprecated Stuff def do_plaintext(self, attrs): |