Edgewall Software

Changes between Version 3 and Version 4 of TracDev/ApiChanges/0.12


Ignore:
Timestamp:
Jul 31, 2009, 12:08:55 PM (15 years ago)
Author:
Remy Blank
Comment:

Added a section about IWikiPageManipulator.

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/ApiChanges/0.12

    v3 v4  
    2424See also #8204.
    2525
     26==== `IWikiPageManipulator` ^[source:trunk/trac/wiki/api.py@8429:64#L52 (0.12)] [source:branches/0.11-stable/trac/wiki/api.py@8429:69#L57 (0.11)]^ ==== #IWikiPageManipulator
     27This interface has not actually been changed, but the implementation has been fixed so that it actually does what it promises, that is, ''validate a wiki page '''after it's been populated''' from user input''. Previously, `page.text` would contain the old text, and the new text would typically be retrieved with `req.args.get('text')` as a workaround.
     28
     29The `page` now has the new text in `page.text`, and the old text in `page.old_text`.
     30
     31See also #7731.
     32
     33
    2634=== Other Changes to the 0.11 API ===
    2735