Searched refs:lang (Results 1 - 8 of 8) sorted by relevance
/httpd/docs/manual/style/css/ |
H A D | prettify.css | 57 pre.lang-config{ 64 .lang-config .tag { color: #821; font-weight: bold } /* enclosures */ 65 .lang-config .kwd { color: #128; font-weight: bold } /* directives */ 66 .lang-config .com { color: #c46d34 } /* comments */ 67 .lang-config .lit { color: #077 } /* miscellaneous types: Options arguments, handler names etc */ 72 pre.lang-c{ 80 .lang-c .com { color: #c46d34 } /* a comment */ 81 .lang-c .lit { color: #088 } /* a literal */ 82 .lang-c .str { color: #009606 } /* string content */ 83 .lang [all...] |
/httpd/modules/mappers/ |
H A D | mod_negotiation.c | 97 const char *lang) 106 *langp = lang; 208 apr_array_header_t *content_languages; /* list of lang. for this variant */ 252 float default_lang_quality; /* fiddle lang q for variants with no lang */ 1451 static int find_lang_index(apr_array_header_t *accept_langs, char *lang) argument 1456 if (!lang || !accept_langs) { 1463 if (!strncmp(lang, *alang, strlen(*alang))) { 1577 char *lang, *p; local 1588 /* lang i 96 set_language_priority(cmd_parms *cmd, void *n_, const char *lang) argument 1709 char *lang = ((char **) (variant->content_languages->elts))[j]; local 2246 variant_has_language(var_rec *variant, const char *lang) argument 2455 char *lang; local [all...] |
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 144 char *lang; local 149 for (lang = lang_line;*lang;lang++) { 150 if ((*lang == ',') || (*lang == ';')) { 151 *lang = '\0'; 155 lang = derive_codepage_from_lang(r->pool, lang_line); 157 if (lang && (apr_xlate_open(&convset, to_charset, lang, 1885 char *lang; local [all...] |
/httpd/modules/dav/fs/ |
H A D | dbm.c | 272 ** This introduced the xml:lang value into the property value's 349 const char *lang = value; local 351 /* skip past the xml:lang value */ 352 value += strlen(lang) + 1; 364 else if (*lang != '\0') { 367 s = apr_psprintf(pool, "<%s xml:lang=\"%s\">%s</%s>" DEBUG_CR, 368 name+1, lang, value, name+1); 371 s = apr_psprintf(pool, "<ns%s xml:lang=\"%s\">%s</ns%s>" DEBUG_CR, 372 name, lang, value, name); 626 /* generate a text blob for the xml:lang plu [all...] |
/httpd/docs/manual/style/scripts/ |
H A D | prettify.js | 27 * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class. 42 * language, as in {@code <pre class="prettyprint lang-java">}. Any class that 43 * starts with "lang-" followed by a file extension, specifies the file type. 44 * See the "lang-*.js" files in this directory for code that implements 636 * form 'lang-FOO', where FOO is a language extension describing the 638 * E.g., if style is 'lang-lisp', and group 1 contains the text 644 * something like ['lang-js', /<[s]cript>(.+?)<\/script>/]. This may match 749 isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5); 774 var lang = style.substring(5); 784 langHandlerForExtension(lang, embeddedSourc [all...] |
H A D | prettify.min.js | 55 isEmbedded=style.length>=5&&'lang-'===style.substring(0,5);if(isEmbedded&&!(match&&typeof match[1]==='string')){isEmbedded=false;style=PR_SOURCE;} 58 var lang=style.substring(5);appendDecorations(basePos+tokenStart,token.substring(0,embeddedSourceStart),decorate,decorations);appendDecorations(basePos+tokenStart+embeddedSourceStart,embeddedSource,langHandlerForExtension(lang,embeddedSource),decorations);appendDecorations(basePos+tokenStart+embeddedSourceEnd,token.substring(embeddedSourceEnd),decorate,decorations);}} 69 +'/');fallthroughStylePatterns.push(['lang-regex',new RegExp('^'+REGEXP_PRECEDER_PATTERN+'('+REGEX_LITERAL+')')]);} 109 registerLangHandler(decorateSource,['default-code']);registerLangHandler(createSimpleLexer([],[[PR_PLAIN,/^[^<?]+/],[PR_DECLARATION,/^<!\w[^>]*(?:>|$)/],[PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],['lang-',/^<\?([\s\S]+?)(?:\?>|$)/],['lang-',/^<%([\s\S]+?)(?:%>|$)/],[PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],['lang-',/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],['lang-js',/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],['lang-css',/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],['lang [all...] |
/httpd/modules/dav/main/ |
H A D | props.c | 54 ** The first string is the xml:lang value for the property. An empty 55 ** string signifies that a lang value was not in context for the value. 108 ** We do store the xml:lang value (if any) that applies to the context 109 ** of the <propname1> element. Whether the xml:lang attribute is on 399 const char *lang; local 404 if ((lang = apr_table_get(propdb->subreq->headers_out, 406 value = lang;
|
/httpd/modules/metadata/ |
H A D | mod_mime_magic.c | 2343 char **lang = ((char **)r->content_languages->elts) + n; local 2344 *lang = apr_pstrdup(r->pool, *lang);
|
Completed in 1930 milliseconds