FUNCTION Back2BackName$ (a$) IF a$ = "Keyword Reference - Alphabetical" THEN Back2BackName$ = "Alphabetical": EXIT FUNCTION IF a$ = "Keyword Reference - By usage" THEN Back2BackName$ = "By Usage": EXIT FUNCTION IF a$ = "QB64 Help Menu" THEN Back2BackName$ = "Help": EXIT FUNCTION IF a$ = "QB64 FAQ" THEN Back2BackName$ = "FAQ": EXIT FUNCTION Back2BackName$ = a$ END FUNCTION FUNCTION Wiki$ (PageName$) 'Read cached wiki page (download, if not yet cached) IF LEFT$(PageName$, 9) <> "Template:" THEN Help_PageLoaded$ = PageName$ 'Escape all invalid and other critical chars in filenames PageName2$ = "" FOR i = 1 TO LEN(PageName$) c = ASC(PageName$, i) SELECT CASE c CASE 32 ' '(space) PageName2$ = PageName2$ + "_" CASE 34, 36, 38, 42, 43, 47, 58, 60, 62, 63, 92, 124 '("$&*+/:<>?\|) PageName2$ = PageName2$ + "%" + HEX$(c) CASE ELSE PageName2$ = PageName2$ + CHR$(c) END SELECT NEXT PageName3$ = wikiSafeName$(PageName2$) 'case independent name 'Is this page in the cache? IF Help_IgnoreCache = 0 THEN IF _FILEEXISTS(Cache_Folder$ + "/" + PageName3$ + ".txt") THEN fh = FREEFILE OPEN Cache_Folder$ + "/" + PageName3$ + ".txt" FOR BINARY AS #fh a$ = SPACE$(LOF(fh)) GET #fh, , a$ CLOSE #fh Wiki$ = StrReplace$(a$, CHR$(13) + CHR$(10), CHR$(10)) EXIT FUNCTION END IF END IF 'Check for curl IF _SHELLHIDE("curl --version >NUL") <> 0 THEN a$ = CHR$(10) + "{{PageInternalError}}" + CHR$(10) IF PageName$ = "Initialize" THEN a$ = a$ + "To be able to initialize the help system, " ELSEIF PageName$ = "Update All" THEN a$ = a$ + "To be able to update the help pages from the online Wiki, " ELSE a$ = a$ + "The requested help page is not yet cached locally. To download the help page from the online Wiki, " END IF a$ = a$ + "a tool called ''curl'' is required, but it wasn't found on your system." + CHR$(10) + CHR$(10) a$ = a$ + "* To get ''curl'', visit the official [https://curl.se/download.html download page]." + CHR$(10) a$ = a$ + "** Grab the latest ''binary'' archive available for your system." + CHR$(10) a$ = a$ + "** Unpack and drop the ''curl'' executable into the '''qb64pe''' folder." + CHR$(10) a$ = a$ + "** If there's a file named ''curl-ca-bundle.crt'' or similar, drop it into the '''qb64pe''' folder too." + CHR$(10) Wiki$ = a$: EXIT FUNCTION END IF 'Download message (Status Bar) IF Help_Recaching = 0 THEN a$ = "Downloading '" + PageName$ + "' page..." IF LEN(a$) > 60 THEN a$ = LEFT$(a$, 57) + STRING$(3, 250) IF LEN(a$) < 60 THEN a$ = a$ + SPACE$(60 - LEN(a$)) COLOR 0, 3: LOCATE idewy + idesubwindow, 2 PRINT a$; PCOPY 3, 0 END IF 'Url query and output arguments for curl url$ = CHR$(34) + wikiBaseAddress$ + "/index.php?title=" + PageName2$ + "&action=edit" + CHR$(34) outputFile$ = Cache_Folder$ + "/" + PageName3$ + ".txt" 'Wikitext delimiters s1$ = "name=" + CHR$(34) + "wpTextbox1" + CHR$(34) + ">" s2$ = "" 'Download page using curl SHELL _HIDE "curl --silent -o " + CHR$(34) + outputFile$ + CHR$(34) + " " + url$ fh = FREEFILE OPEN outputFile$ FOR BINARY AS #fh 'get new content a$ = SPACE$(LOF(fh)) GET #fh, 1, a$ CLOSE #fh 'Find wikitext in the downloaded page s1 = INSTR(a$, s1$) IF s1 > 0 THEN a$ = MID$(a$, s1 + LEN(s1$)): s2 = INSTR(a$, s2$): ELSE s2 = 0 IF s2 > 0 THEN a$ = LEFT$(a$, s2 - 1) IF s1 > 0 AND s2 > 0 AND a$ <> "" THEN 'If wikitext was found, then substitute stuff & save it '--- first HTML specific entities WHILE INSTR(a$, "&") > 0 ' '& must be first and looped until all a$ = StrReplace$(a$, "&", "&") 'multi-escapes are resolved (eg. &lt; &amp;lt; etc.) WEND a$ = StrReplace$(a$, "<", "<") a$ = StrReplace$(a$, ">", ">") a$ = StrReplace$(a$, """, CHR$(34)) a$ = StrReplace$(a$, "'", "'") '--- then other entities a$ = StrReplace$(a$, "|", "|") a$ = StrReplace$(a$, "π", CHR$(227)) a$ = StrReplace$(a$, "θ", CHR$(233)) a$ = StrReplace$(a$, "¹", CHR$(252)) a$ = StrReplace$(a$, "²", CHR$(253)) a$ = StrReplace$(a$, " ", CHR$(255)) '--- useless styles in blocks a$ = StrReplace$(a$, "Start}}'' ''", "Start}}") a$ = StrReplace$(a$, "Start}} '' ''", "Start}}") a$ = StrReplace$(a$, "Start}}" + CHR$(10) + "'' ''", "Start}}") a$ = StrReplace$(a$, "'' ''" + CHR$(10) + "{{", CHR$(10) + "{{") a$ = StrReplace$(a$, "'' '' " + CHR$(10) + "{{", CHR$(10) + "{{") a$ = StrReplace$(a$, "'' ''" + CHR$(10) + CHR$(10) + "{{", CHR$(10) + "{{") '--- wiki redirects & crlf a$ = StrReplace$(a$, "#REDIRECT", "See page") a$ = StrReplace$(a$, CHR$(13) + CHR$(10), CHR$(10)) '--- put a download date/time entry a$ = "{{QBDLDATE:" + DATE$ + "}}" + CHR$(10) + "{{QBDLTIME:" + TIME$ + "}}" + CHR$(10) + a$ '--- now save it OPEN outputFile$ FOR OUTPUT AS #fh PRINT #fh, a$; CLOSE #fh ELSE 'Delete page, if empty or corrupted (force re-download on next access) KILL outputFile$ a$ = CHR$(10) + "{{PageInternalError}}" + CHR$(10) +_ "* Either the requested page is not yet available in the Wiki," + CHR$(10) +_ "* or the download from Wiki failed and corrupted the page data." + CHR$(10) +_ "** You may try ''Update Current Page'' from the ''Help'' menu." + CHR$(10) END IF Wiki$ = a$ END FUNCTION SUB Help_AddTxt (t$, col, link) 'Add help text, handle word wrap IF t$ = "" THEN EXIT SUB IF t$ = CHR$(13) THEN Help_NewLine: EXIT SUB IF Help_ChkBlank <> 0 THEN Help_CheckBlankLine: Help_ChkBlank = 0 FOR i = 1 TO LEN(t$) c = ASC(t$, i) IF Help_LockParse = 0 AND Help_LockWrap = 0 THEN IF c = 32 THEN IF Help_Pos = Help_ww THEN Help_NewLine: _CONTINUE Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = 32 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = col + Help_BG_Col * 16 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = link AND 255 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = link \ 256 Help_Wrap_Pos = Help_Txt_Len 'pos to backtrack to when wrapping content Help_Pos = Help_Pos + 1: _CONTINUE END IF IF Help_Pos > Help_ww THEN IF Help_Wrap_Pos THEN 'attempt to wrap 'backtrack, insert new line, continue b$ = MID$(Help_Txt$, Help_Wrap_Pos + 1, Help_Txt_Len - Help_Wrap_Pos) Help_Txt_Len = Help_Wrap_Pos Help_NewLine MID$(Help_Txt$, Help_Txt_Len + 1, LEN(b$)) = b$: Help_Txt_Len = Help_Txt_Len + LEN(b$) Help_Pos = Help_Pos + LEN(b$) \ 4 END IF END IF END IF Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = c Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = col + Help_BG_Col * 16 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = link AND 255 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = link \ 256 Help_Pos = Help_Pos + 1 NEXT END SUB SUB Help_NewLine 'Start a new help line, apply indention (if any) IF Help_Pos > help_w THEN help_w = Help_Pos Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = 13 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = Help_BG_Col * 16 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = 0 Help_Txt_Len = Help_Txt_Len + 1: ASC(Help_Txt$, Help_Txt_Len) = 0 help_h = help_h + 1 Help_Line$ = Help_Line$ + MKL$(Help_Txt_Len + 1) Help_Wrap_Pos = 0 IF Help_Underline > 0 THEN w = Help_Pos Help_Pos = 1 IF Help_Underline = 2 THEN 'double/single line? Help_AddTxt STRING$(w - 1, 205), Help_Col_Section, 0 'ΝΝΝ ELSE Help_AddTxt STRING$(w - 1, 196), Help_Col_Section, 0 'ΔΔΔ END IF Help_Underline = 0 'keep before Help_NewLine (recursion) Help_NewLine END IF Help_Pos = 1 IF Help_ChkBlank = 0 THEN 'no indention on blank line checks IF Help_Center > 0 THEN 'center overrides regular indent Help_LIndent$ = "" Help_AddTxt SPACE$(ASC(Help_CIndent$, 1)), Help_Col, 0 Help_CIndent$ = MID$(Help_CIndent$, 2) ELSEIF Help_LIndent$ <> "" THEN Help_AddTxt Help_LIndent$, 11, 0 END IF END IF END SUB SUB Help_CheckFinishLine 'Make sure the current help line is finished IF Help_Txt_Len >= 4 THEN IF ASC(Help_Txt$, Help_Txt_Len - 3) <> 13 THEN Help_NewLine END IF END SUB SUB Help_CheckBlankLine 'Make sure the last help line is a blank line (implies finish current) IF Help_Txt_Len >= 8 THEN IF ASC(Help_Txt$, Help_Txt_Len - 3) <> 13 THEN Help_NewLine IF ASC(Help_Txt$, Help_Txt_Len - 7) <> 13 THEN Help_NewLine END IF END SUB SUB Help_CheckRemoveBlankLine 'If the last help line is blank, then remove it IF Help_Txt_Len >= 8 THEN IF ASC(Help_Txt$, Help_Txt_Len - 3) = 13 THEN Help_Txt_Len = Help_Txt_Len - 4 help_h = help_h - 1 Help_Line$ = LEFT$(Help_Line$, LEN(Help_Line$) - 4) END IF FOR i = Help_Txt_Len - 3 TO 1 STEP -4 IF ASC(Help_Txt$, i) <> 32 THEN Help_Txt_Len = i + 3: EXIT FOR END IF NEXT IF ASC(Help_Txt$, Help_Txt_Len - 3) <> 13 THEN Help_NewLine END IF END SUB FUNCTION Help_Col 'Helps to calculate the default color col = Help_Col_Normal IF Help_Italic THEN col = Help_Col_Italic IF Help_Bold THEN col = Help_Col_Bold 'Bold overrides Italic IF Help_Heading THEN col = Help_Col_Section 'Heading overrides all Help_Col = col END FUNCTION SUB WikiParse (a$) 'Wiki page interpret 'Clear info help_h = 0: help_w = 0: Help_Line$ = "": Help_Link$ = "": Help_LinkN = 0 Help_Txt$ = SPACE$(1000000) Help_Txt_Len = 0 Help_Pos = 1: Help_Wrap_Pos = 0 Help_Line$ = MKL$(1) 'Word wrap locks (lock wrapping only, but continue parsing regularly) Help_LockWrap = 0 'Parser locks (neg: soft lock, zero: unlocked, pos: hard lock) 'hard: 2 = inside code blocks, 1 = inside output blocks 'soft: -1 = inside text blocks, -2 = inside fixed blocks '=> all parser locks also imply a wrapping lock '=> hard locks almost every parsing except utf-8 substitution and line breaks '=> soft allows all elements not disrupting the current block, hence only ' paragraph creating things are locked (eg. headings, lists, rulers etc.), ' but text styles, links and template processing is still possible Help_LockParse = 0 Help_Bold = 0: Help_Italic = 0: Help_Heading = 0 Help_Underline = 0 Help_BG_Col = 0 Help_Center = 0: Help_CIndent$ = "" Help_DList = 0: Help_ChkBlank = 0 link = 0: elink = 0: cb = 0: nl = 1: ah = 0: dl = 0 col = Help_Col 'Syntax Notes: '============= 'everywhere in text '------------------ ' ''' => bold text style ' '' => italic text style ' [url text] => external link to url with text to appear (url ends at 1st found space) ' [[page]] => link to another wikipage ' [[page|text]] => link to another wikipage with alternative text to appear ' {{templatename|param|param|param}} or simply {{templatename}} => predefined styles '--------------------- 'at start of line only '--------------------- ' == or === => start a

or

section heading respectively ' ---- => create a horizontal ruler ' * or # => start a dot list item ' ** or ## => start a sub (ie. further indented) dot list item ' ;def:desc => create a full definition/description list (def = bold, desc indented underneath) ' :desc => start a description only (desc indented as in a full def/desc list) ' ;* def:desc => combined list, list dot always belongs to description ' :* desc => combined, description only 'First find and write the page title and last update d$ = "Page not yet updated, expect visual glitches.": i = INSTR(a$, "{{QBDLDATE:") IF i > 0 THEN d$ = "Last updated: " + MID$(a$, i + 11, INSTR(i + 11, a$, "}}") - i - 11) i = INSTR(a$, "{{QBDLTIME:") IF i > 0 THEN d$ = d$ + ", at " + MID$(a$, i + 11, INSTR(i + 11, a$, "}}") - i - 11) ELSEIF INSTR(a$, "{{PageInternalError}}") > 0 THEN d$ = "Page not found." END IF t$ = Help_PageLoaded$: i = INSTR(a$, "{{DISPLAYTITLE:") IF i > 0 THEN t$ = MID$(a$, i + 15, INSTR(i + 15, a$, "}}") - i - 15) IF LEFT$(t$, 4) = "agp@" THEN d$ = "Auto-generated temporary page." t$ = MID$(t$, 5) END IF i = LEN(d$): ii = LEN(t$) Help_AddTxt " Ϊ" + STRING$(ii + 2, "Δ") + "Ώ", 14, 0: Help_NewLine Help_AddTxt " ³ ", 14, 0: Help_AddTxt t$, 12, 0: Help_AddTxt " ³", 14, 0 i = Help_ww - i - 2 - Help_Pos: IF i < 2 THEN i = 2 Help_AddTxt SPACE$(i) + CHR$(4), 14, 0 IF LEFT$(d$, 4) = "Page" THEN i = 8: ELSE i = 7 Help_LockWrap = 1: Help_AddTxt " " + d$, i, 0: Help_NewLine: Help_LockWrap = 0 Help_AddTxt "ΔΔΑ" + STRING$(ii + 2, "Δ") + "Α" + STRING$(Help_ww - ii - 6, "Δ"), 14, 0: Help_NewLine 'Init prefetch array prefetch = 20 DIM c$(prefetch) FOR ii = 1 TO prefetch c$(ii) = SPACE$(ii) NEXT 'BEGIN_PARSE_LOOP n = LEN(a$) i = 1 DO WHILE i <= n 'Get next char and fill prefetch array c = ASC(a$, i): c$ = CHR$(c) FOR i1 = 1 TO prefetch ii = i FOR i2 = 1 TO i1 IF ii <= n THEN ASC(c$(i1), i2) = ASC(a$, ii) ELSE ASC(c$(i1), i2) = 32 END IF ii = ii + 1 NEXT NEXT 'Wiki specific code handling (no restrictions) s$ = "__NOEDITSECTION__" + CHR$(10): IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone s$ = "__NOEDITSECTION__": IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone s$ = "__NOTOC__" + CHR$(10): IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone s$ = "__NOTOC__": IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone s$ = "": IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone s$ = "": IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone 'Direct HTML code is not handled in Code/Output blocks (hard lock), as all text 'could be part of the code example itself (just imagine a HTML parser/writer demo) IF Help_LockParse <= 0 THEN s$ = "": IF c$(LEN(s$)) = s$ THEN Help_AddTxt "^", col, 0: i = i + LEN(s$) - 1: GOTO charDone s$ = "": IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1: GOTO charDone s$ = "
" 'centered section IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1 wla$ = wikiLookAhead$(a$, i + 1, "
") IF INSTR(wla$, "#toc") > 0 OR INSTR(wla$, "#top") > 0 OR INSTR(wla$, "to Top") > 0 THEN i = i + LEN(wla$) + 9 'ignore TOC/TOP links ELSE Help_Center = 1: Help_CIndent$ = wikiBuildCIndent$(wla$) Help_AddTxt SPACE$(ASC(Help_CIndent$, 1)), col, 0 'center content Help_CIndent$ = MID$(Help_CIndent$, 2) END IF GOTO charDone END IF s$ = "" IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1 Help_Center = 0 Help_NewLine GOTO charDone END IF s$ = "

" THEN wla$ = wikiLookAhead$(a$, ii + 1, "

") IF INSTR(wla$, "#toc") > 0 OR INSTR(wla$, "#top") > 0 OR INSTR(wla$, "to Top") > 0 THEN i = ii + LEN(wla$) + 4 'ignore TOC/TOP links ELSEIF INSTR(MID$(a$, i, ii - i), "center") > 0 THEN Help_Center = 1: Help_CIndent$ = wikiBuildCIndent$(wla$) Help_AddTxt SPACE$(ASC(Help_CIndent$, 1)), col, 0 'center (if in style) Help_CIndent$ = MID$(Help_CIndent$, 2) i = ii END IF EXIT FOR END IF NEXT GOTO charDone END IF s$ = "

" IF c$(LEN(s$)) = s$ THEN i = i + LEN(s$) - 1 Help_Center = 0 Help_NewLine GOTO charDone END IF s$ = " 0 THEN etext$ = RIGHT$(elink$, LEN(elink$) - i2) elink$ = LEFT$(elink$, i2 - 1) END IF Help_LinkN = Help_LinkN + 1 Help_Link$ = Help_Link$ + "EXTL:" + elink$ + Help_Link_Sep$ IF Help_LockParse = 0 THEN Help_AddTxt etext$, Help_Col_Link, Help_LinkN ELSE Help_AddTxt etext$, Help_Col_Italic, Help_LinkN END IF GOTO charDone END IF elink$ = elink$ + c$ GOTO charDone END IF 'Internal links IF c$(2) = "[[" AND link = 0 THEN i = i + 1 link = 1 link$ = "" GOTO charDone END IF END IF 'However, the internal link logic must run always, as it also handles 'the template {{Cb|, {{Cl| and {{KW| links used in code blocks IF link = 1 THEN IF c$(2) = "]]" OR c$(2) = "}}" THEN i = i + 1 link = 0 text$ = link$ i2 = INSTR(link$, "|") 'pipe link? IF i2 > 0 THEN text$ = RIGHT$(link$, LEN(link$) - i2) 'text part link$ = LEFT$(link$, i2 - 1) ' 'link part END IF i2 = INSTR(link$, "#") 'local link? IF i2 > 0 THEN link$ = LEFT$(link$, i2 - 1) 'link to TOP IF link$ = "" THEN IF LEFT$(text$, 1) = "#" THEN text$ = MID$(text$, 2) Help_AddTxt text$, 8, 0 GOTO charDone END IF END IF IF LEFT$(link$, 9) = "Category:" THEN 'ignore category links Help_CheckRemoveBlankLine GOTO charDone END IF Help_LinkN = Help_LinkN + 1 Help_Link$ = Help_Link$ + "PAGE:" + link$ + Help_Link_Sep$ IF Help_LockParse = 0 THEN Help_AddTxt text$, Help_Col_Link, Help_LinkN ELSE Help_AddTxt text$, Help_Col_Italic, Help_LinkN END IF GOTO charDone END IF link$ = link$ + c$ GOTO charDone END IF 'Wiki tables ({|...|}) are not handled in Code/Output blocks (hard lock), 'as everything could be part of the code example itself IF Help_LockParse <= 0 THEN 'Tables (ignored, give info, if not in blocks) IF c$(2) = "{|" THEN wla$ = wikiLookAhead$(a$, i + 2, "|}"): iii = 0 FOR ii = 1 TO LEN(wla$) IF MID$(wla$, ii, 1) = "|" AND MID$(wla$, ii, 2) <> "|-" THEN iii = iii + 1 NEXT i = i + 1 + LEN(wla$) + 2 IF iii > 1 OR INSTR(wla$, "__TOC__") = 0 THEN 'ignore TOC only tables IF Help_LockParse = 0 THEN Help_LinkN = Help_LinkN + 1 Help_Link$ = Help_Link$ + "EXTL:" + wikiBaseAddress$ + "/index.php?title=" + Help_PageLoaded$ + Help_Link_Sep$ Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "ΙΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝ»", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "Ί", 8, 0: Help_AddTxt " The original page has a table here, ", 15, Help_LinkN: Help_AddTxt "Ί", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "Ί", 8, 0: Help_AddTxt " please click inside this box to load ", 15, Help_LinkN: Help_AddTxt "Ί", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "Ί", 8, 0: Help_AddTxt " the page into your standard browser. ", 15, Help_LinkN: Help_AddTxt "Ί", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "ΘΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΌ", 8, 0 END IF END IF GOTO charDone END IF END IF 'Wiki templates are handled always, as these are the basic building blocks of all 'the wiki pages, but look for special conditions inside (Help_LockParse checks) IF c$(5) = "{{Cb|" OR c$(5) = "{{Cl|" OR c$(5) = "{{KW|" THEN 'just nice wrapped links i = i + 4 ' 'KW is deprecated (but kept for existing pages) link = 1 link$ = "" GOTO charDone END IF IF c$(2) = "{{" THEN 'any other templates i = i + 1 cb = 1 cb$ = "" GOTO charDone END IF IF cb > 0 THEN IF c$ = "|" OR c$(2) = "}}" THEN IF c$ = "|" AND cb = 2 THEN wla$ = wikiLookAhead$(a$, i + 1, "}}") cb = 0: i = i + LEN(wla$) + 2 'after 1st, ignore all further template parameters ELSEIF c$(2) = "}}" THEN IF cb$ = "Parameter" THEN Help_Italic = 0: col = Help_Col ELSEIF LCASE$(LEFT$(cb$, 5)) = "small" THEN IF ASC(cb$, 6) = 196 THEN Help_AddTxt " " + STRING$(Help_ww - Help_Pos, 196), 15, 0 Help_BG_Col = 0: col = Help_Col ELSE Help_Center = 0 END IF Help_NewLine: cb$ = "" 'avoid reactivation below END IF cb = 0: i = i + 1 END IF IF c$ = "|" AND cb = 1 THEN cb = 2 IF Help_LockParse = 0 THEN 'no section headings in blocks cbo$ = "" 'Standard section headings (section color, h3 single underline, h2 double underline) 'Recommended order of main page sections (h2) with it's considered sub-sections (h3) IF cb$ = "PageSyntax" THEN cbo$ = "Syntax:" IF cb$ = "PageParameters" OR cb$ = "Parameters" THEN cbo$ = "Parameters:" 'w/o Page prefix is deprecated (but kept for existing pages) IF cb$ = "PageDescription" THEN cbo$ = "Description:" IF cb$ = "PageNotes" THEN cbo$ = "Notes" 'sub-sect IF cb$ = "PageErrors" THEN cbo$ = "Errors" 'sub-sect IF cb$ = "PageAvailability" THEN cbo$ = "Availability:" IF cb$ = "PageExamples" THEN cbo$ = "Examples:" IF cb$ = "PageSeeAlso" THEN cbo$ = "See also:" 'Internally used templates (not available in Wiki) IF cb$ = "PageInternalError" THEN cbo$ = "Sorry, an error occurred:" '---------- IF cbo$ <> "" THEN IF RIGHT$(cbo$, 1) = ":" THEN Help_Underline = 2: ELSE Help_Underline = 1 Help_AddTxt cbo$, Help_Col_Section, 0: ah = 2 END IF END IF 'Code Block IF cb$ = "InlineCode" AND Help_LockParse = 0 THEN Help_Bold = 0: Help_Italic = 0: col = Help_Col Help_BG_Col = 1: Help_LockParse = 2 END IF IF cb$ = "InlineCodeEnd" AND Help_LockParse <> 0 THEN Help_BG_Col = 0: Help_LockParse = 0 Help_Bold = 0: Help_Italic = 0: col = Help_Col END IF IF cb$ = "CodeStart" AND Help_LockParse = 0 THEN Help_CheckBlankLine Help_Bold = 0: Help_Italic = 0: col = Help_Col Help_BG_Col = 1: Help_LockParse = 2 Help_AddTxt STRING$(Help_ww - 15, 196) + " Code Block " + STRING$(3, 196), 15, 0: Help_NewLine IF c$(3) = "}}" + CHR$(10) THEN i = i + 1 END IF IF cb$ = "CodeEnd" AND Help_LockParse <> 0 THEN Help_CheckFinishLine: Help_CheckRemoveBlankLine Help_AddTxt STRING$(Help_ww, 196), 15, 0: Help_NewLine Help_BG_Col = 0: Help_LockParse = 0 Help_Bold = 0: Help_Italic = 0: col = Help_Col END IF 'Output Block IF LEFT$(cb$, 11) = "OutputStart" AND Help_LockParse = 0 THEN 'does also match new OutputStartBGn templates Help_CheckBlankLine Help_Bold = 0: Help_Italic = 0: col = Help_Col Help_BG_Col = 2: Help_LockParse = 1 Help_AddTxt STRING$(Help_ww - 17, 196) + " Output Block " + STRING$(3, 196), 15, 0: Help_NewLine IF c$(3) = "}}" + CHR$(10) THEN i = i + 1 END IF IF cb$ = "OutputEnd" AND Help_LockParse <> 0 THEN Help_CheckFinishLine: Help_CheckRemoveBlankLine Help_AddTxt STRING$((Help_ww - 54) \ 2, 196), 15, 0 Help_AddTxt " This block does not reflect the actual output colors ", 15, 0 Help_AddTxt STRING$(Help_ww - Help_Pos + 1, 196), 15, 0: Help_NewLine Help_BG_Col = 0: Help_LockParse = 0 Help_Bold = 0: Help_Italic = 0: col = Help_Col END IF 'Text Block IF cb$ = "TextStart" AND Help_LockParse = 0 THEN Help_CheckBlankLine Help_Bold = 0: Help_Italic = 0: col = Help_Col Help_BG_Col = 6: Help_LockParse = -1 Help_AddTxt STRING$(Help_ww - 15, 196) + " Text Block " + STRING$(3, 196), 15, 0: Help_NewLine IF c$(3) = "}}" + CHR$(10) THEN i = i + 1 END IF IF cb$ = "TextEnd" AND Help_LockParse <> 0 THEN Help_CheckFinishLine: Help_CheckRemoveBlankLine Help_AddTxt STRING$(Help_ww, 196), 15, 0: Help_NewLine Help_BG_Col = 0: Help_LockParse = 0 Help_Bold = 0: Help_Italic = 0: col = Help_Col END IF 'Fixed Block IF (cb$ = "FixedStart" OR cb$ = "WhiteStart") AND Help_LockParse = 0 THEN 'White is deprecated (but kept for existing pages) Help_CheckBlankLine Help_Bold = 0: Help_Italic = 0: col = Help_Col Help_BG_Col = 6: Help_LockParse = -2 Help_AddTxt STRING$(Help_ww - 16, 196) + " Fixed Block " + STRING$(3, 196), 15, 0: Help_NewLine IF c$(3) = "}}" + CHR$(10) THEN i = i + 1 END IF IF (cb$ = "FixedEnd" OR cb$ = "WhiteEnd") AND Help_LockParse <> 0 THEN 'White is deprecated (but kept for existing pages) Help_CheckFinishLine: Help_CheckRemoveBlankLine Help_AddTxt STRING$(Help_ww, 196), 15, 0: Help_NewLine Help_BG_Col = 0: Help_LockParse = 0 Help_Bold = 0: Help_Italic = 0: col = Help_Col END IF 'Template wrapped plugin IF RIGHT$(cb$, 6) = "Plugin" AND Help_LockParse = 0 THEN 'no plugins in blocks pit$ = Wiki$("Template:" + cb$) IF INSTR(pit$, "{{PageInternalError}}") = 0 THEN a$ = LEFT$(a$, i) + pit$ + RIGHT$(a$, LEN(a$) - i) n = n + LEN(pit$) END IF END IF 'Template wrapped table (try to get a readable plugin first) IF RIGHT$(cb$, 5) = "Table" AND Help_LockParse = 0 THEN 'no table info in blocks pit$ = Wiki$("Template:" + LEFT$(cb$, LEN(cb$) - 5) + "Plugin") IF INSTR(pit$, "{{PageInternalError}}") = 0 THEN a$ = LEFT$(a$, i) + pit$ + RIGHT$(a$, LEN(a$) - i) n = n + LEN(pit$) ELSE Help_LinkN = Help_LinkN + 1 Help_Link$ = Help_Link$ + "EXTL:" + wikiBaseAddress$ + "/index.php?title=Template:" + cb$ + Help_Link_Sep$ Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "ΙΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝ»", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "Ί", 8, 0: Help_AddTxt " The original page has a table here, ", 15, Help_LinkN: Help_AddTxt "Ί", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "Ί", 8, 0: Help_AddTxt " please click inside this box to load ", 15, Help_LinkN: Help_AddTxt "Ί", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "Ί", 8, 0: Help_AddTxt " the table into your standard browser.", 15, Help_LinkN: Help_AddTxt "Ί", 8, 0: Help_NewLine Help_AddTxt SPACE$((Help_ww - 40) \ 2) + "ΘΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΝΌ", 8, 0 END IF END IF 'Parameter template text will be italic IF c$ = "|" AND cb$ = "Parameter" AND Help_LockParse <= 0 THEN 'keep as is in Code/Output blocks Help_Italic = 1: col = Help_Col END IF 'Small template text will be centered (maybe as block note) IF LCASE$(cb$) = "small" AND Help_LockParse <= 0 THEN 'keep as is in Code/Output blocks wla$ = wikiLookAhead$(a$, i + 1, "}}") Help_CIndent$ = wikiBuildCIndent$(wla$): iii = 0 IF i > 31 AND ASC(Help_CIndent$, 1) >= Help_ww / 4 THEN IF INSTR(MID$(a$, i - 30, 30), "{{CodeEnd}}") > 0 THEN iii = -1 IF INSTR(MID$(a$, i - 30, 30), "{{TextEnd}}") > 0 THEN iii = -6 IF INSTR(MID$(a$, i - 31, 31), "{{FixedEnd}}") > 0 THEN iii = -6 IF INSTR(MID$(a$, i - 31, 31), "{{WhiteEnd}}") > 0 THEN iii = -6 END IF IF iii <> 0 THEN FOR ii = Help_Txt_Len - 3 TO 1 STEP -4 IF ASC(Help_Txt$, ii) = 32 AND iii < 0 THEN Help_Pos = Help_Pos - 1 ELSEIF ASC(Help_Txt$, ii) = 13 AND iii < 0 THEN help_h = help_h - 1: Help_Line$ = LEFT$(Help_Line$, LEN(Help_Line$) - 4) ELSEIF ASC(Help_Txt$, ii) = 196 AND iii < 0 THEN iii = -iii ELSEIF ASC(Help_Txt$, ii) = 13 AND iii > 0 THEN Help_Txt_Len = ii + 3: EXIT FOR END IF NEXT Help_BG_Col = iii: cb$ = cb$ + CHR$(196) 'special signal byte Help_AddTxt STRING$(ASC(Help_CIndent$, 1) - 1, 196) + " ", 15, 0 col = 15 'further text color until closing ELSE Help_Center = 1: cb$ = cb$ + CHR$(0) 'no special signal Help_AddTxt SPACE$(ASC(Help_CIndent$, 1)), col, 0 'center content END IF Help_CIndent$ = MID$(Help_CIndent$, 2) END IF GOTO charDone END IF IF cb = 1 THEN cb$ = cb$ + c$ 'reading macro name IF cb = 2 THEN Help_AddTxt CHR$(c), col, 0 'copy macro'd text GOTO charDone END IF 'Wiki headings (==...==}) are not handled in blocks (soft- and hard lock), as it would 'disrupt the block, also in code blocks it could be part of the code example itself IF Help_LockParse = 0 THEN 'Custom section headings (section color, h3 single underline, h2 double underline) ii = 0 IF c$(4) = " ===" AND Help_Heading = 3 THEN ii = 3: Help_Heading = 0: ah = 2 IF c$(3) = "===" AND Help_Heading = 3 THEN ii = 2: Help_Heading = 0: ah = 2 IF c$(3) = "===" AND nl = 1 THEN ii = 2: Help_CheckBlankLine: Help_Heading = 3 IF c$(4) = "=== " AND nl = 1 THEN ii = 3: Help_CheckBlankLine: Help_Heading = 3 IF ii > 0 THEN i = i + ii: col = Help_Col: Help_Underline = 1: GOTO charDone ii = 0 IF c$(3) = " ==" AND Help_Heading = 2 THEN ii = 2: Help_Heading = 0: ah = 2 IF c$(2) = "==" AND Help_Heading = 2 THEN ii = 1: Help_Heading = 0: ah = 2 IF c$(2) = "==" AND nl = 1 THEN ii = 1: Help_CheckBlankLine: Help_Heading = 2 IF c$(3) = "== " AND nl = 1 THEN ii = 2: Help_CheckBlankLine: Help_Heading = 2 IF ii > 0 THEN i = i + ii: col = Help_Col: Help_Underline = 2: GOTO charDone END IF 'Wiki/HTML rulers (----,
) are not handled in blocks (soft- and hard lock), as it would 'disrupt the block, also in code blocks it could be part of the code example itself IF Help_LockParse = 0 THEN 'Rulers IF c$(4) = "----" AND nl = 1 THEN i = i + 3 Help_CheckBlankLine Help_AddTxt STRING$(Help_ww, 196), 8, 0 Help_ChkBlank = 1 GOTO charDone END IF IF c$(4) = "
" OR c$(6) = "
" THEN IF c$(4) = "
" THEN i = i + 3 IF c$(6) = "
" THEN i = i + 5 Help_CheckBlankLine Help_AddTxt STRING$(Help_ww, 196), 8, 0 Help_ChkBlank = 1 GOTO charDone END IF END IF 'Wiki definition lists (;...:...) are not handled in blocks (soft- and hard lock), as it would 'disrupt the block, also in code blocks it could be part of the code example itself IF Help_LockParse = 0 THEN 'Definition lists IF c$ = ";" AND nl = 1 THEN 'definition (new line only) IF c$(2) = "; " THEN i = i + 1 IF ah = 0 AND dl = 0 THEN Help_CheckBlankLine Help_Bold = 1: col = Help_Col: Help_DList = 1 IF c$(3) = ";* " OR c$(3) = ";# " THEN i = i + 2: Help_DList = 3 'list dot belongs to description IF c$(2) = ";*" OR c$(2) = ";#" THEN i = i + 1: Help_DList = 2 'list dot belongs to description IF dl < 3 THEN Help_AddTxt "ή ", 11, 0: dl = 1 Help_LIndent$ = Help_LIndent$ + "ή " END IF GOTO charDone END IF IF c$ = ":" AND Help_DList > 0 THEN 'description (same line) IF c$(2) = ": " THEN i = i + 1 Help_Bold = 0: col = Help_Col: Help_NewLine Help_AddTxt " ", 11, 0: dl = 3 Help_LIndent$ = Help_LIndent$ + " " IF Help_DList > 1 THEN Help_AddTxt CHR$(4) + " ", 14, 0 Help_LIndent$ = Help_LIndent$ + " " END IF Help_DList = 0 GOTO charDone END IF IF c$ = ":" AND nl = 1 THEN 'description w/o definition (new line) IF c$(2) = ": " THEN i = i + 1 IF ah = 0 AND dl = 0 THEN Help_CheckBlankLine IF dl < 3 THEN Help_AddTxt "ή ", 11, 0: dl = 2 Help_LIndent$ = Help_LIndent$ + "ή " END IF IF ASC(c$(2), 2) <> 58 AND ASC(c$(2), 2) <> 59 THEN Help_AddTxt " ", 11, 0: dl = 3 Help_LIndent$ = Help_LIndent$ + " " END IF GOTO charDoneKnl 'keep nl state for possible