Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: JRuby-extras
-
Labels:None
-
Number of attachments :
Description
This bug has a painful workaround: only use single quotes, no >, < and &.
The config.ru used in samples is escaped twice, so elements like:
:environment => "production"
give:
:environment => "production"
This is actually an artifact of a fix in Warbler to escape all web.xml parameters automatically. Thus, you no longer need to manually CGI-escape the contents. The Sinatra example in JRuby-Rack has been updated to reflect this.