Róbert Mihály

Results 72 comments of Róbert Mihály

I've generated the page now with the following: ``` rm -rf public HUGO_BASEURL="http://localhost:1313/compose/example" hugo -d public/compose/example ``` And then started serving this with Python: ``` cd public python -m http.server...

I think one of the problems is here where we load svgs from the rootURL: https://github.com/onweru/compose/blob/master/assets/js/functions.js#L177 ``` function loadSvg(file, parent, path = iconsPath) { const link = new URL(`${path}${file}.svg`, rootURL).href;...

This seems to be the reason why search is not working either: https://github.com/onweru/compose/blob/master/assets/js/search.js#L196 ``` window.addEventListener('load', function() { fetch(new URL("index.json", rootURL).href) ``` https://github.com/onweru/compose/blob/master/assets/js/search.js#L112 ``` if(searchTerm.length) { window.location.href = new URL(`search/?query=${searchTerm}`, rootURL).href;...

And `rootURL` is defined as: https://github.com/onweru/compose/blob/master/assets/js/variables.js#L7 ``` const rootURL = window.location.protocol + "//" + window.location.host; ```

I've tested an easy fix this works for me in `variables.js` ``` // rootURL must end with '/' for relative URLs to work properly const rootURL = '{{ strings.TrimSuffix "/"...

I've created a pull request with my proposal https://github.com/onweru/compose/pull/75

Just wanted to add that I have a very easy workaround, I can override the `variables.js` in my local site as well for now. PS: I am new to Hugo,...

We are seeing the same problem which is a result of #1524 and the switch to `scheduleWithFixedDelay` We are sending `counter` metrics every minute to Graphite, Carbon Aggregator and we...

I just ran into the same thing and there is a comment in the script saying that switching the line number in the original file does not work when using...

I suspect that this might be related to https://github.com/flyway/flyway/issues/2895 which was released in Flyway 9.1.2 The release notes say the following: > Use transactional locks in PostgreSQL by default, which...