Ralph Ocdol

Results 32 issues of Ralph Ocdol

### Description Hi, thanks for the project. I'd like to suggest adding `parameters: ` like the one from `extensions` mainly to make it clean and easier to make a custom-api....

roadmap
feature request

### Description After the request for custom-api parameters https://github.com/glanceapp/glance/issues/356, I ended up making an API that needs array parameters to fetch the disk usage of each VMs. ```yml url: ${WEBSERVER_URL}/api/get-drive-stats?host=test1.local:22&host=test2.local:22&host=test3.local:22&row=2...

roadmap
feature request

### Description Some self-hosted services defaults to HTTPS self signed, I had to modify the Glance's entrypoint to install and run `ca-certificates` (which installs them every restart). One of which...

work completed
feature request

### Description This is mostly to use with length, I'd imagine something like this: ```go {{ len (.JSON.ArrayFilter "student" (ge "age" 20)) }} ``` I did ask something similar before...

feature request
already available

### Description Will it be possible for parameters for type `custom-api` or `extension` to have their parameters use some functions from https://github.com/glanceapp/glance/blob/main/docs/custom-api.md#functions. I remember that there will be more functions...

feature request

```html {{ $description := "I think Ruth's dog1 is cuter than your dog2!" }} Raw Data: {{ $description }} String: {{ replaceAll "dog" "ferret" $description }} Regex: {{ replaceAll "dog\\d"...

### Description I noticed this in the README https://github.com/glanceapp/glance/blob/9c77b87435ceb25bea92a001c8a4faf8b79f4f86/README.md?plain=1#L409 So I'll make one now (wrong order but still) This will be very useful in doing regex replace when you need...

feature request

See Issue https://github.com/glanceapp/glance/issues/550 ### Configuration Single files are prioritized for backwards compatibility and familiarity with the existing `custom-css-file` ```yml document: custom-js-file: /assets/single.js # defer and async are not possible custom-js-files:...

### Description I've noticed for a while now that adding CSS via the `custom-css-file: ` in `theme: ` config applies cache busting which appends `?v=server-start-time` https://github.com/glanceapp/glance/blob/9da79671582c91f17508662bc936c3f673595ada/internal/glance/templates/page.html#L20 but I'm not seeing...

feature request

For https://github.com/glanceapp/glance/issues/568 #### Config example: ```yaml - type: custom-api url: https:${WEBSERVER_URL}/data # Replaces the value of the key timestamp inside file data.json with the current timestamp method: post # Notice...