-
Notifications
You must be signed in to change notification settings - Fork 71
Coding Conventions
Most of our coding conventions are automatically detected by Code Critics and Slime, a Seaside specific extension to Code Critics. We recommend that you follow Smalltalk Best Practice Pattern by Kent Beck.
Seaside code has to work on many platforms. At the end of the day the porters will make sure the code is portable, just keep this in mind and don't make their life unnecessary hard. The following list shall serve as a guideline. When in doubt ask on the mailing-list. Tests certainly help to document your assumptions about a platform.
- Use
#greaseString
for String conversion. - Do not use any of these methods, they are missing, broken or have different semantics on some platforms:
- Object:
#ifNotNil:
,#ifNotNilDo:
,#in:
, ... - Boolean:
#and:and:and:
,#or:or:or:
, ... - Collection:
#=
,#pairsDo:
,#with:collect:
- String:
#match:
- Stream:
#position
,#position:
,#isEmpty
- Object:
- Don't assume
Symbol
to be a subtype ofString
. - Use
GRPlatform
sparingly and only if there is absolutely no other way. - Non-ASCII Strings and Characters are inherently unportable. Same goes for class look-up, compilation and IO.
Character cr
andCharacter lf
are not the same on all platforms. - Don't use any dialect specific syntax, like byte array literals
#[ ]
, curly braces{ }
, or pragmas<pragma>
. - For portable code subclass
GRObject
. This makes sure your objects will receive an#initialize
message upon creation, see [Object Initialization](Object Initialization) for details. - Instead of
Random
andSemaphore
useGRPlatform current newRandom
andGRPlatform current semaphoreClass
. - Instead of
TimeStamp
useDateAndTime
- Do not do non-local returns in error handler block.
- The receiving block of #on:do: after processing the exception handler of a notification may resume the execution.
- Do not touch the code of
WAProcessMonitor
, here be dragons. - Do not use the return value of
Array
#sort
or#sort:
. - Do not use string literals with NULL characters.
- Do not assume
#value
is part of theObject
protocol - Send
#daysInMonthNumber:forYear:
toDate
. Not#daysInMonth:forYear:
toMonth
orDate
. - Use
#keysAndValuesDo:
instead of#withIndexDo:
. - In Seaside 2.8 and earlier use the class side
#raiseSignal
or#raiseSignal:
to throw exceptions. - In Seaside 3.0 and later use ANSI exceptions, that means instance or class side
#signal
or#signal:
onGRError
andGRNotification
or subclasses. Do not use any other exception classes. - Do not send
#fork
to a block if you want to get a reference to the created process. Use a combination of#newProcess
and#resume
. - The second argument passed to
#on:do:
must be a one argument block. - Starting with Seaside 3.0 conform with the ValuableProtocol.
- Don't send #next to a
ReadStream
that is at end. Instead send #atEnd to check if the stream is at the end. - starting with Seaside 3.0 use #greaseInteger to
- convert
Number
s toInteger
s (ANSI behavior) - convert
String
s toInteger
s - get the code point of a
Character
- convert
- Use
WriteStream on: String new
instead ofString new writeStream
- Do not send #hash to a class (GemStone)
- convert class names to strings using
#greaseString
- use
SequenceableCollection >> #beginsWithSubCollection:
instead ofSequenceableCollection >> #beginsWith:
- use
SequenceableCollection >> #endsWithSubCollection:
instead ofSequenceableCollection >> #endsWith:
- use
(String with: Character cr with: Character lf)
instead ofString crlf
- don't use any of those on a
Collection
#count:
#withIndexCollect:
#anyOne
- don't use
OrderedCollection >> #at:ifAbsentPut:
- don't use
1 / 0
, Smalltak/X has constant folding (evaluates this at compile time) which will raise an error during code loading - don't use
#canPerform:
it's not portable use#respondsTo:
- use
#indexOfSubCollection:startingAt:
(ANSI) instead of#includesSubString:
- use
TestCase >> #assert: false
instead ofTestCase >> #fail
- don't send
first
to an empty collection since the behavior is not portable (ANSI: Answer the element at index 1 in the receiver. The result is undefined if the receiver is empty.)
Making sure all objects are properly initialized can be complex, particularly when dealing with multiple platforms. We have adopted [Object Initialization](Object Initialization) in Seaside to make sure behaviour is consistent.
In Pharo, the class-side #initialize
is run on the first load of code or when
the source of the #initialize
method changes. In VA Smalltalk, the class side #initialize is run on every load of code.
We are picky about formatting so this gets its own section.
- Have a look at existing code to get a feel.
- Always use
:=
for assignments, never the non-portable_
. - Always put a space before and after a binary selector.
- Properly indent your code using tabs, not spaces.
- No unnecessary brackets, don't bracket the receiver of a cascade if not necessary.
- No unnecessary blank lines, expect after the method comment.
- Do not send yourself, if you don't use the result.
- Use
each
as an argument name of iteration blocks. - Add a space at the beginning and end of a temporary variable declarations and blocks.
- Avoid unnecessary statement separators.
- Close multiple blocks on one line.
- The first comment of a method should state the use and the expected arguments of public methods. Keep it short, but ensure that these are valid sentences starting with an uppercase letter and end with a full stop.
- Avoid comments within the method body.
- Avoid using a pretty printer.
- The complete ancestry must be in the Monticello repository.
- Commit small changes (a single method is fine), big changes make merging hard.
- Avoid the use of
#style
and#script
if possible. - Refrain from using IDs and use CSS classes instead.
- Use your author initials as author initials, not your name.
- Follow the [Package Naming](Package Naming).
- If you change the package structure also update the scripts that generate the dependency graphs and Universe.
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