Home
last modified time | relevance | path

Searched refs:htmlstr (Results 1 – 24 of 24) sorted by relevance

/dports/deskutils/foliate/foliate-2.6.3/src/assets/KindleUnpack/
H A Dmobiml2xhtml.py161 htmlstr = ''
176 htmlstr += text
272 htmlstr += '\n'
276 htmlstr += '\n'
278 htmlstr += self.meta
283 htmlstr += '\n'
289 htmlstr = '<body>\n' + htmlstr + '</body>\n'
295 htmlstr = headstr + htmlstr
297 htmlstr = '<html>\n' + htmlstr + '</html>\n'
306 return (htmlstr, css, self.cssname)
[all …]
/dports/www/p5-HTML-Stream/HTML-Stream-1.60/examples/
H A Dgiggles74 my $htmlstr = "<I>Hi</I> &amp; 360&#176;\n";
75 print "Raw: ", $htmlstr;
76 print "Unescaped: ", html_unescape($htmlstr);
77 print "Unmarkedup: ", html_unmarkup($htmlstr);
/dports/graphics/klatexformula/klatexformula-4.0.0/src/
H A Dklflib_p.h80 { QTextStream htmlstr(&data, QIODevice::WriteOnly); in encodeMime()
82 htmlstr in encodeMime()
101 htmlstr << entryList[k].toString(KLFLibEntry::ToStringUseHtml); in encodeMime()
104 htmlstr << "\n" in encodeMime()
/dports/www/py-nevow/Nevow-0.14.0/nevow/test/
H A Dtest_loaders.py65 df = loaders.htmlstr(doc)
196 loader = loaders.htmlstr(self.doc)
199 loader = loaders.htmlstr(self.doc, pattern='1')
202 l1 = loaders.htmlstr(self.doc, pattern='1')
203 l2 = loaders.htmlstr(self.doc, pattern='1')
206 l1 = loaders.htmlstr(self.doc, pattern='1')
207 l2 = loaders.htmlstr(self.doc, pattern='2')
382 self._withAndWithout(loaders.htmlstr(doc))
H A Dtest_disktemplate.py46 r = rend.Page(docFactory=loaders.htmlstr(self.xhtml))
250 doc = flat.flatten(loaders.htmlstr(t).load())
253 precompiled = loaders.htmlstr(t).load()
H A Dtest_rend.py53 r = rend.Page(docFactory=loaders.htmlstr(xhtml))
66 docFactory = loaders.htmlstr(xhtml)
83 docFactory = loaders.htmlstr(xhtml)
101 docFactory = loaders.htmlstr('<p nevow:render="foo"></p>')
117 docFactory = loaders.htmlstr(xhtml)
139 docFactory = loaders.htmlstr(xhtml)
266 loaders.htmlstr('<p>fi</p>'),
/dports/www/py-nevow/Nevow-0.14.0/doc/old/
H A Dnevow.doc24 …should be set to one of the predefined DocFactory types: stan, xmlstr, xmlfile, htmlstr, htmlfile.
26 - xmlstr and htmlstr take a string as an argument to render, e.g.:
44 …tions use the SAX XML parser, which absolutely requires valid XML input. htmlstr/htmlfile use the …
48 docFactory = rend.htmlstr("""
/dports/graphics/graphviz/graphviz-2.44.1/lib/common/
H A Dhtmlparse.c1322 htmlstrlen (const char *htmlstr) in htmlstrlen() argument
1325 for (htmllen = 0; htmlstr[htmllen]; htmllen++) in htmlstrlen()
1361 htmltnamerr (char *htmlres, const char *htmlstr) in htmltnamerr() argument
1363 if (*htmlstr == '"') in htmltnamerr()
1366 char const *htmlp = htmlstr; in htmltnamerr()
1394 return htmlstrlen (htmlstr); in htmltnamerr()
1396 return htmlstpcpy (htmlres, htmlstr) - htmlres; in htmltnamerr()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java138 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
140 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
142 return htmlstr; in replaceDocRootDir()
144 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
146 return htmlstr; in replaceDocRootDir()
153 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
155 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
164 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
168 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java138 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
140 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
142 return htmlstr; in replaceDocRootDir()
144 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
146 return htmlstr; in replaceDocRootDir()
153 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
155 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
164 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
168 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java227 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
229 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
231 return htmlstr; in replaceDocRootDir()
233 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
235 return htmlstr; in replaceDocRootDir()
242 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
244 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
253 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
257 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java229 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
231 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
233 return htmlstr; in replaceDocRootDir()
235 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
237 return htmlstr; in replaceDocRootDir()
244 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
246 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
255 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
259 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java254 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
256 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
258 return htmlstr; in replaceDocRootDir()
260 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
262 return htmlstr; in replaceDocRootDir()
269 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
271 if (options.docrootParent().length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
280 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
284 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java227 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
229 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
231 return htmlstr; in replaceDocRootDir()
233 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
235 return htmlstr; in replaceDocRootDir()
242 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
244 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
253 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
257 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java250 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
252 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
254 return htmlstr; in replaceDocRootDir()
256 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
258 return htmlstr; in replaceDocRootDir()
265 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
267 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
276 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
280 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java245 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
247 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
249 return htmlstr; in replaceDocRootDir()
251 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
253 return htmlstr; in replaceDocRootDir()
260 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
262 if (configuration.docrootparent.length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
271 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
275 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java253 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
255 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
257 return htmlstr; in replaceDocRootDir()
259 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
261 return htmlstr; in replaceDocRootDir()
268 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
270 if (options.docrootParent().length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
279 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
283 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/www/py-nevow/Nevow-0.14.0/examples/tree/
H A Dtree.py34 docFactory = loaders.htmlstr("""
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DHtmlDocletWriter.java257 public String replaceDocRootDir(String htmlstr) { in replaceDocRootDir() argument
259 int index = htmlstr.indexOf("{@"); in replaceDocRootDir()
261 return htmlstr; in replaceDocRootDir()
263 Matcher docrootMatcher = docrootPattern.matcher(htmlstr); in replaceDocRootDir()
265 return htmlstr; in replaceDocRootDir()
272 buf.append(htmlstr.substring(prevEnd, match)); in replaceDocRootDir()
274 if (options.docrootParent().length() > 0 && htmlstr.startsWith("/..", prevEnd)) { in replaceDocRootDir()
283 if (prevEnd < htmlstr.length() && htmlstr.charAt(prevEnd) != '/') { in replaceDocRootDir()
287 buf.append(htmlstr.substring(prevEnd)); in replaceDocRootDir()
/dports/www/py-nevow/Nevow-0.14.0/nevow/
H A Dloaders.py65 class htmlstr(object): class
/dports/www/py-nevow/Nevow-0.14.0/doc/howto/
H A Dxmltemplates.rst303 xmlstr, htmlfile, and htmlstr
309 htmlfile and htmlstr should generally be avoided. They are similar to
/dports/science/afni/afni-AFNI_21.3.16/src/python_scripts/scripts/
H A Dafni_proc.py3296 htmlstr = ''
3298 htmlstr = '\n' + self.run_html_review(istr=' ')
3318 % (self.ssr_basic, self.ssr_basic, self.ssr_b_out, htmlstr)
/dports/www/py-nevow/Nevow-0.14.0/
H A DChangeLog116 * nevow/loaders.py: Deprecated htmlfile/htmlstr
/dports/graphics/swftools/swftools-0.9.2/src/
H A Dswfc.c4096 const char*htmlstr = lu(args, "html"); in c_edittext() local
4109 if(!strcmp(htmlstr, "html")) flags |= ET_HTML; in c_edittext()