santosh-d3vpl3x commented on PR #37571:
URL: https://github.com/apache/spark/pull/37571#issuecomment-1219552995
> Hm, are they 'mustache templates'? they seem like plain old HTML files.
Thats how they are treated at present even though couple of them don't
really contain any templatised variables.
```js
var apps =
$(Mustache.render($(template).filter("#history-summary-template").html(),data));
```
```js
tasksSummary.append(Mustache.render($(template).filter("#stages-summary-template").html()));
```
```js
executorsSummary.append(Mustache.render($(template).filter("#executors-summary-template").html(),
data));
```
>I don't have a specific concern, but concerned about changing the extension
breaking something else that won't know to interpret this as HTML? probalby not
an issue
I static handler part in spark on server side and the renderer on client,
couldn't find anything concerning.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]