SeasideSt / Seaside

The framework for developing sophisticated web applications in Smalltalk.
MIT License
519 stars 71 forks source link

WAInvalidUrlSyntaxError when parsing valid URL string #1416

Open eMaringolo opened 5 months ago

eMaringolo commented 5 months ago

When using Seaside-REST the following works as expected:

WAUrl absolute: 'view'

But the following fails in the parsing

WAUrl absolute: 'path?field={value}'.

The second should not fail as it's also a valid URL. The WAUrl>>#initializeFromString: method is overly complex in its way of parsing the URL.