snoopdave opened a new pull request, #185: URL: https://github.com/apache/roller/pull/185
Fixes the regression Matt Raible reported (-1) on the 6.1.6 RC2 vote thread. The #180 dependency bump moved the `jquery-ui` webjar to `1.14.2+1`, and that literal version was written into the resource URLs in `head.jsp`. The webjar serves its resources under the plus-free path (`META-INF/resources/webjars/jquery-ui/1.14.2/`), so `/webjars/jquery-ui/1.14.2+1/jquery-ui.min.js` and `.css` both 404. That kills the entry editor's date picker and tag autocomplete (`$(...).datepicker is not a function`, `$(...).autocomplete is not a function`) and drops the jQuery UI styling. **Fix:** point the two URLs at `1.14.2`. The pom coordinate stays `1.14.2+1` — that is the real artifact; only the resource path drops the `+N` build suffix. Verified the shipped `jquery-ui-1.14.2+1.jar` stores its files under `META-INF/resources/webjars/jquery-ui/1.14.2/`. Regression from 6.1.5 (which was on jquery-ui 1.14.1). Targeted for 6.1.6 RC3. https://claude.ai/code/session_015X69HHQ5XnjRkJP8ymzwFf -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
