-
Notifications
You must be signed in to change notification settings - Fork 71
Seaside28Changelog
Philippe Marschall edited this page Jul 16, 2015
·
3 revisions
Seaside 2.8 is released as of 28 October 2007.
- rendering speed improvements mostly because of a new encoding architecture
- memory usage reduction due to less continuations and new backtracking system
- runs on two new platforms:
- comments, more and better tests, documentation
- tool modularization
- new style and homepage
- Dropped the old WAHtmlRenderer API
- Squeak 3.7 support dropped (needs SeasideSqueak37 compatibility package)
- improved response streaming (WATask and WABasicAthentication work)
Backtracking is no longer done by sending #registerObjectForBacktracking: or #registerForBacktracking but by implementing the #states selector. This allowed us to simplify and improve a lot of code. It’s also very similar to the existing #children. You can have a look the implementors to see examples.
In Detail
- improved and simplified WAAnchor (uses URL objects now)
- improved and simplified WAPopupAnchor
- made WAImageTag protocol compatible to WAAnchorTag
- added #optionGroup
- added WAComponent >> #chooseFrom: convenience method (mostly for tutorials)
- select tag supports disabled elements
- two new elements (ins and del)
- WAHtmlBuilder to conveniently render html from outside of #renderContentOn:
- set accept-charset of forms to the character set of the session
- bug with multipart forms fixed in WAKomEncoded
- included Andreas’ utf-8 fastpath into WAKomEncoded
- WAUrl has different encoding as text content or url attribute value
- fixed WideString bug in WAFile
- fixed WABrowser bugs
- fixed bug in the profiler that showed a non-printable character -> this bug existed since the beginning of time
- lots of AJAX related fixes
- removed WAModLisp, use fast_cgi instead -> we do not depend on KomServices anymore
- removed all references to ScriptingSystem, use Form >> #storeString instead
- removed WAChangePassword, WAEditDialog, WAEditDialog, WAGridDialog, WALoginDialog, WANoteDialog
- Sushi Store is now its own package at
Seaside-Examples
- WARedirectHandler subclasses can be used to handle session expiry
- the error walkback displays a list of possible causes
- lots of small fixes especially related to i10n
- lots of small improvements
- lots of xhtml validation related fixes
- clean up, remove lots of old unused stuff
- better portability
- Seaside 2.6 to 2.7
- stop your server (e.g.
WAKom
) and evaluateWADispatcher resetAll
- migrate to
WARenderCanvas
- backtrack state by implementing
#states
(check all senders of#registerObjectForBacktracking:
and#registerForBacktracking
),WAStateHolders
do not do any backtracking anymore - move to new header api, modify
#updateRoot:
.#linkToStyle
becomes#stylesheet
#url
,#linkToScript
becomes#javascript
#url:
, check all implementors of#updateRoot:
- use
WAAnchorTag >> #with:
instead ofWAAnchorTag >> #text:
- replace users of
WAChangePassword
,WAEditDialog
,WAEmailConfirmation
,WAGridDialog
,WALoginDialog
,WANoteDialog
- every component that implements
#initialize
must send this message also to super (use SLint) - if you use Squeak 3.7 load SeasideSqueak37 after Seaside
- if you use Squeak do not load into an image that has an earlier version of Seaside already loaded
- For
WAImageTag
use the composed#document:mimeType:fileName:
selector (or a short version of it) instead of a cascade of selector parts - if you loaded an intermediate version of Seaside 2.8 Seaside2.8a1-lr.404 removes
WACookieSession
, you should go back to subclassingWASession
- migrate from
WAScriptLibrary
andWAStyleLibrary
toWAFileLibrary
(check class comment ofWAFileLibrary
) - the "base path" configuration option has been replaced by "Server Path"
- use
#heading level:
; with: instead of#heading:level:
- check for deprecated message sends
- remove the implementors of
#rendererClass
that returnWAHtmlCanvas
- use
WAValueHolder
if you just need an object that wraps a value instead ofValueHolder
orWAStateHolder
-
WAUrl >> #scheme:
expects aString
and no longer aSymbol
Boris Popov has some rewrite rules to ease migration Moving from 2.7 to 2.8
Changelogs
- (newer changelogs, see https://github.com/SeasideSt/Seaside/releases)
- 3.4.0
- 3.3.0
- 3.2.4
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.11
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 2.8
- 2.7
- Past Releases
Development
Documentation
- Configuration and Preferences
- Embedding Subcomponents
- Maintaining State
- Generating HTML
- CSS and Javascript
- Debugging Seaside Applications
- Links, Forms and Callbacks
- Development Tools
- Call and Answer
- Naming URLs
- Security Features
- Securing Seaside Applications
- Seaside-REST
- Add-On Libraries
- Persistence
- Gettext
- FileLibrary
- The Render Tree
- PDF Generation
- Long-Term Issues
- Ajaxification
- Web Components
- Big Issues
Sprints