Ivo Roefs
Ivo Roefs
Add aLogin database class == SQLite3Platform ifTrue: [ ^ Smalltalk at: #SQLite3Driver ]. The entry for UDBCSQLite3Platform might be kept for backward compatibility?
I think `DatabasePlatform>>#convertToNumber:for:` contains a bug, `Dialect doesPrecisionOf: aNumber equal: aType precision` should be: `Dialect doesPrecisionOf: aNumber equal: aType scale`. If you take a look at `Dialect class>>#doesPrecisionOf:equal:` you can...
I have a page which is almost blank. I mainly want to print the linked references. This works, but not all references appear. Any ideas?
It seems that the version of Ring isn't in sync with Calypso/Syc or something? 
I noticed there's a problem with opening a webbrowser (tested on Win10&11, Pharo10,11&12, 2 separate machines) WebBrowser openOn: 'http://pharo.org/' The string doesn't get properly encoded (or something), resulting in the...
testSerializeNestedDictionary self assertAllWithInstantiationBlock: [ | d | d := Dictionary new. d at: 'a' put: 'abc'. d at: 'b' put: Dictionary new. d ] literal: '{"class":"Dictionary","instance":{"a":"abc","b":{"class":"Dictionary","instance":{}}}}' testEq: false "#assertEquivalent: doesn't...
SpMorphicSearchInputFieldAdapter>>#clearText should use setText: instead of setTextWith:
A possible resolution might be following method change. **SpMorphicSliderAdapter>>#buildWidget** ... self presenter whenValueChangedDo: [ :newValue | preWidget value: self absoluteValue ]. ... In other words, the preWidget value should be...