import { template as _$template } from "r-dom"; import { createComponent as _$createComponent } from "r-dom"; import { insert as _$insert } from "r-dom"; const _tmpl$ = /*#__PURE__*/ _$template(`Hello `, 2), _tmpl$2 = /*#__PURE__*/ _$template(` John`, 2), _tmpl$3 = /*#__PURE__*/ _$template(`Hello John`, 2), _tmpl$4 = /*#__PURE__*/ _$template(` `, 2), _tmpl$5 = /*#__PURE__*/ _$template(` `, 4), _tmpl$6 = /*#__PURE__*/ _$template(` `, 3), _tmpl$7 = /*#__PURE__*/ _$template(`Hello`, 2), _tmpl$8 = /*#__PURE__*/ _$template(` <Hi> `, 2), _tmpl$9 = /*#__PURE__*/ _$template( `Hi<script>alert();</script>`, 2 ), _tmpl$10 = /*#__PURE__*/ _$template(`Hello World!`, 2), _tmpl$11 = /*#__PURE__*/ _$template(`4 + 5 = 9`, 2), _tmpl$12 = /*#__PURE__*/ _$template( `
d
`, 2 ), _tmpl$13 = /*#__PURE__*/ _$template(`
`, 2); const trailing = _tmpl$.cloneNode(true); const leading = _tmpl$2.cloneNode(true); /* prettier-ignore */ const extraSpaces = _tmpl$3.cloneNode(true); const trailingExpr = (() => { const _el$4 = _tmpl$.cloneNode(true), _el$5 = _el$4.firstChild; _$insert(_el$4, name, null); return _el$4; })(); const leadingExpr = (() => { const _el$6 = _tmpl$2.cloneNode(true), _el$7 = _el$6.firstChild; _$insert(_el$6, greeting, _el$7); return _el$6; })(); /* prettier-ignore */ const multiExpr = (() => { const _el$8 = _tmpl$4.cloneNode(true), _el$9 = _el$8.firstChild; _$insert(_el$8, greeting, _el$9); _$insert(_el$8, name, null); return _el$8; })(); /* prettier-ignore */ const multiExprSpaced = (() => { const _el$10 = _tmpl$5.cloneNode(true), _el$11 = _el$10.firstChild, _el$14 = _el$11.nextSibling, _el$12 = _el$14.nextSibling, _el$15 = _el$12.nextSibling, _el$13 = _el$15.nextSibling; _$insert(_el$10, greeting, _el$14); _$insert(_el$10, name, _el$15); return _el$10; })(); /* prettier-ignore */ const multiExprTogether = (() => { const _el$16 = _tmpl$6.cloneNode(true), _el$17 = _el$16.firstChild, _el$19 = _el$17.nextSibling, _el$18 = _el$19.nextSibling; _$insert(_el$16, greeting, _el$19); _$insert(_el$16, name, _el$19); return _el$16; })(); /* prettier-ignore */ const multiLine = _tmpl$7.cloneNode(true); /* prettier-ignore */ const multiLineTrailingSpace = _tmpl$3.cloneNode(true); /* prettier-ignore */ const multiLineNoTrailingSpace = _tmpl$3.cloneNode(true); /* prettier-ignore */ const escape = _tmpl$8.cloneNode(true); /* prettier-ignore */ const escape2 = _$createComponent(Comp, { children: "\xA0\xA0" }); /* prettier-ignore */ const escape3 = "\xA0\xA0"; const injection = _tmpl$9.cloneNode(true); let value = "World"; const evaluated = _tmpl$10.cloneNode(true); let number = 4 + 5; const evaluatedNonString = _tmpl$11.cloneNode(true); const newLineLiteral = (() => { const _el$27 = _tmpl$12.cloneNode(true), _el$28 = _el$27.firstChild; _$insert(_el$27, s, _el$28); return _el$27; })(); const trailingSpace = (() => { const _el$29 = _tmpl$13.cloneNode(true); _$insert(_el$29, expr); return _el$29; })(); const trailingSpaceComp = _$createComponent(Comp, { children: expr, }); const trailingSpaceFrag = expr; =1'>Expand)AuthorFilesLines 2018-02-09Update German translationGravatar stratmaster 2-10/+18 2018-02-08Improve error handling for HTTP clientGravatar Frédéric Guillot 5-7/+62 2018-02-08Add missing German stringGravatar stratmaster 2-4/+6 2018-02-07Strip invalid XML characters to avoid parsing errorsGravatar Frédéric Guillot 1-1/+26 2018-02-07Remove period for feed errorsGravatar Frédéric Guillot 4-23/+23 2018-02-07Improve error handling when the response is emptyGravatar Frédéric Guillot 5-6/+28 2018-02-07Add missing French translationGravatar stratmaster 2-2/+4 2018-02-05Update ChangeLog2.0.2Gravatar Frédéric Guillot 1-0/+14 2018-02-04Add support for Let's Encrypt http-01 challengeGravatar Frédéric Guillot 32-286/+2042 2018-02-04Move template functions outside engine (refactoring)Gravatar Frédéric Guillot 9-214/+254 2018-02-04Take timezone into consideration when calculating relative timeGravatar Frédéric Guillot 16-58/+91 2018-02-03Add support for HTTP Strict Transport Security headerGravatar Frédéric Guillot 4-3/+33 2018-02-03Add support for base URLs with subfoldersGravatar Frédéric Guillot 10-23/+105 2018-02-01Update German translationGravatar stratmaster 2-4/+12 2018-01-31Add missing about menu in settingsGravatar Frédéric Guillot 5-5/+29 2018-01-31Show API URL endpoints in user interfaceGravatar Frédéric Guillot 11-14/+99 2018-01-29Do not update entry date while refreshing a feedGravatar Frédéric Guillot 1-4/+5 2018-01-29Enable debug mode for integration testsGravatar Frédéric Guillot 1-1/+1 2018-01-29Add the possiblity to enable debug mode with an environment variableGravatar Frédéric Guillot 2-1/+6 2018-01-29Keep code base tidyGravatar Frédéric Guillot 5-18/+16 2018-01-29Add flag to enable debug loggingGravatar Rogier Lommers 2-7/+64 2018-01-25Improve unread counter updatesGravatar Mahendra Kalkura 1-6/+35