Skip to content

Commit

Permalink
Merge from trunk:
Browse files Browse the repository at this point in the history
 Log message for revision 70828:
  Fixed encoding of newlines, carriage returns, and tabs when
  encoding attributes for widgets so we're consistent under all
  Python 2.4.x versions (including 2.4.4, which failed tests before).
  • Loading branch information
baijum committed Oct 20, 2006
1 parent df5408b commit 26de795
Show file tree
Hide file tree
Showing 2 changed files with 513 additions and 2 deletions.
3 changes: 1 addition & 2 deletions browser/textwidgets.py
Expand Up @@ -256,8 +256,7 @@ class TextAreaWidget(SimpleInputWidget):
id="field.foo"
name="field.foo"
type="hidden"
value="Hello\r
world!"
value="Hello
world!"
/>
Calling `setRenderedValue` will change what gets output:
Expand Down

0 comments on commit 26de795

Please sign in to comment.