mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-02-17 07:29:49 +00:00
Compare commits
51 Commits
testing-st
...
improve-ge
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
521b99d9ef | ||
|
|
a9c57a756b | ||
|
|
4534b52d9f | ||
|
|
0451a8aa8d | ||
|
|
aa6412e435 | ||
|
|
5af26067b6 | ||
|
|
f494daa8dd | ||
|
|
8a47eb2d03 | ||
|
|
7ea66e44e0 | ||
|
|
6795831122 | ||
|
|
8030e2784e | ||
|
|
b435e0b6a1 | ||
|
|
3e6c794562 | ||
|
|
61da3a41eb | ||
|
|
cf63cabd8e | ||
|
|
b6d10b88c1 | ||
|
|
cea9618298 | ||
|
|
5f151e2925 | ||
|
|
20611cc875 | ||
|
|
fc197e1bfa | ||
|
|
1e6d7b030f | ||
|
|
3a9d375fb2 | ||
|
|
459cae2817 | ||
|
|
de15b08b81 | ||
|
|
52cb5763c8 | ||
|
|
ab09d17499 | ||
|
|
53e1cad0d6 | ||
|
|
501cb7beaa | ||
|
|
c64e94fdc2 | ||
|
|
ecbbbe39da | ||
|
|
6abfbc3987 | ||
|
|
38f7e792bc | ||
|
|
a687bfe928 | ||
|
|
054be1af4e | ||
|
|
0c1d478e19 | ||
|
|
232cffb0a1 | ||
|
|
feec6ef18f | ||
|
|
19336dc437 | ||
|
|
30bb563ffe | ||
|
|
8d9407aad7 | ||
|
|
813a574921 | ||
|
|
93543ba213 | ||
|
|
4327d58c1b | ||
|
|
dc7f8cb0af | ||
|
|
149bba62d2 | ||
|
|
2af23a6ca5 | ||
|
|
487f5f5251 | ||
|
|
dafe7884e8 | ||
|
|
a0be1d63ef | ||
|
|
6b4f0bea98 | ||
|
|
220156edee |
@@ -231,10 +231,7 @@ rules:
|
|||||||
prefer-spread: 'off'
|
prefer-spread: 'off'
|
||||||
prefer-template: 'off'
|
prefer-template: 'off'
|
||||||
quote-props: 'off'
|
quote-props: 'off'
|
||||||
quotes:
|
quotes: 'off'
|
||||||
- error
|
|
||||||
- double
|
|
||||||
- avoidEscape: true
|
|
||||||
radix: 'off'
|
radix: 'off'
|
||||||
require-atomic-updates: error
|
require-atomic-updates: error
|
||||||
require-await: error
|
require-await: error
|
||||||
|
|||||||
2
.github/workflows/cla-check.yml
vendored
2
.github/workflows/cla-check.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
if: ${{ (github.event.pull_request.user.login != github.repository_owner) }}
|
if: ${{ (github.event.pull_request.user.login != github.repository_owner) }}
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
if ! curl -s https://raw.githubusercontent.com/Jermolene/TiddlyWiki5/tiddlywiki-com/licenses/cla-individual.md | grep -o "@$USER,"; then
|
if ! curl -s https://raw.githubusercontent.com/Jermolene/TiddlyWiki5/tiddlywiki-com/licenses/cla-individual.md | grep -io "@$USER,"; then
|
||||||
echo "CLA not signed"
|
echo "CLA not signed"
|
||||||
gh pr comment "$NUMBER" -b "@$USER It appears that this is your first contribution to the project, welcome.
|
gh pr comment "$NUMBER" -b "@$USER It appears that this is your first contribution to the project, welcome.
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/cla-signed.yml
vendored
4
.github/workflows/cla-signed.yml
vendored
@@ -23,8 +23,8 @@ jobs:
|
|||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
if ! $BRANCH == "tiddlywiki-com"; then
|
if [[ "$BRANCH" != "tiddlywiki-com" ]]; then
|
||||||
echo "This CLA signature targets the wrong branch"
|
echo "This CLA signature targets the wrong branch: $BRANCH"
|
||||||
gh pr comment "$NUMBER" -b "@$AUTHOR Signatures to the CLA must target the 'tiddlywiki-com' branch."
|
gh pr comment "$NUMBER" -b "@$AUTHOR Signatures to the CLA must target the 'tiddlywiki-com' branch."
|
||||||
fi
|
fi
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
# Default to the current version number for building the plugin library
|
# Default to the current version number for building the plugin library
|
||||||
|
|
||||||
if [ -z "$TW5_BUILD_VERSION" ]; then
|
if [ -z "$TW5_BUILD_VERSION" ]; then
|
||||||
TW5_BUILD_VERSION=v5.3.6
|
TW5_BUILD_VERSION=v5.3.5
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Using TW5_BUILD_VERSION as [$TW5_BUILD_VERSION]"
|
echo "Using TW5_BUILD_VERSION as [$TW5_BUILD_VERSION]"
|
||||||
@@ -164,20 +164,6 @@ node $TW5_BUILD_TIDDLYWIKI \
|
|||||||
--rendertiddler $:/core/save/all tour.html text/plain \
|
--rendertiddler $:/core/save/all tour.html text/plain \
|
||||||
|| exit 1
|
|| exit 1
|
||||||
|
|
||||||
# /dev/index.html Developer docs
|
|
||||||
# /dev/favicon.ico Favicon for dev site
|
|
||||||
# /dev/static.html Static rendering of default tiddlers
|
|
||||||
# /dev/alltiddlers.html Static rendering of all tiddlers
|
|
||||||
# /dev/static/* Static single tiddlers
|
|
||||||
# /dev/static/static.css Static stylesheet
|
|
||||||
node $TW5_BUILD_TIDDLYWIKI \
|
|
||||||
./editions/dev \
|
|
||||||
--verbose \
|
|
||||||
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
||||||
--output $TW5_BUILD_OUTPUT/dev \
|
|
||||||
--build index favicon static \
|
|
||||||
|| exit 1
|
|
||||||
|
|
||||||
# /share.html Custom edition for sharing via the URL
|
# /share.html Custom edition for sharing via the URL
|
||||||
node $TW5_BUILD_TIDDLYWIKI \
|
node $TW5_BUILD_TIDDLYWIKI \
|
||||||
./editions/share \
|
./editions/share \
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ $tw.boot = $tw.boot || Object.create(null);
|
|||||||
|
|
||||||
// Detect platforms
|
// Detect platforms
|
||||||
if(!("browser" in $tw)) {
|
if(!("browser" in $tw)) {
|
||||||
$tw.browser = typeof(window) !== "undefined" && typeof(document) !== "undefined" ? {} : null;
|
$tw.browser = typeof(window) !== "undefined" ? {} : null;
|
||||||
}
|
}
|
||||||
if(!("node" in $tw)) {
|
if(!("node" in $tw)) {
|
||||||
$tw.node = typeof(process) === "object" ? {} : null;
|
$tw.node = typeof(process) === "object" ? {} : null;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,5 +0,0 @@
|
|||||||
title: $:/core/images/discord
|
|
||||||
tags: $:/tags/Image
|
|
||||||
|
|
||||||
\parameters (size:"22pt")
|
|
||||||
<svg width=<<size>> height=<<size>> class="tc-image-discord tc-image-button" viewBox="0 -28.5 256 256"><path d="M216.856 16.597A208.502 208.502 0 0 0 164.042 0c-2.275 4.113-4.933 9.645-6.766 14.046-19.692-2.961-39.203-2.961-58.533 0-1.832-4.4-4.55-9.933-6.846-14.046a207.809 207.809 0 0 0-52.855 16.638C5.618 67.147-3.443 116.4 1.087 164.956c22.169 16.555 43.653 26.612 64.775 33.193A161.094 161.094 0 0 0 79.735 175.3a136.413 136.413 0 0 1-21.846-10.632 108.636 108.636 0 0 0 5.356-4.237c42.122 19.702 87.89 19.702 129.51 0a131.66 131.66 0 0 0 5.355 4.237 136.07 136.07 0 0 1-21.886 10.653c4.006 8.02 8.638 15.67 13.873 22.848 21.142-6.58 42.646-16.637 64.815-33.213 5.316-56.288-9.08-105.09-38.056-148.36ZM85.474 135.095c-12.645 0-23.015-11.805-23.015-26.18s10.149-26.2 23.015-26.2c12.867 0 23.236 11.804 23.015 26.2.02 14.375-10.148 26.18-23.015 26.18Zm85.051 0c-12.645 0-23.014-11.805-23.014-26.18s10.148-26.2 23.014-26.2c12.867 0 23.236 11.804 23.015 26.2 0 14.375-10.148 26.18-23.015 26.18Z"/></svg>
|
|
||||||
@@ -80,7 +80,6 @@ NewMarkdown/Caption: new Markdown tiddler
|
|||||||
NewMarkdown/Hint: Create a new Markdown tiddler
|
NewMarkdown/Hint: Create a new Markdown tiddler
|
||||||
NewTiddler/Caption: new tiddler
|
NewTiddler/Caption: new tiddler
|
||||||
NewTiddler/Hint: Create a new tiddler
|
NewTiddler/Hint: Create a new tiddler
|
||||||
OpenControlPanel/Hint: Open control panel
|
|
||||||
OpenWindow/Caption: open in new window
|
OpenWindow/Caption: open in new window
|
||||||
OpenWindow/Hint: Open tiddler in new window
|
OpenWindow/Hint: Open tiddler in new window
|
||||||
Palette/Caption: palette
|
Palette/Caption: palette
|
||||||
@@ -133,7 +132,6 @@ Excise/Caption/Replace/Link: link
|
|||||||
Excise/Caption/Replace/Transclusion: transclusion
|
Excise/Caption/Replace/Transclusion: transclusion
|
||||||
Excise/Caption/Tag: Tag new tiddler with the title of this tiddler
|
Excise/Caption/Tag: Tag new tiddler with the title of this tiddler
|
||||||
Excise/Caption/TiddlerExists: Warning: tiddler already exists
|
Excise/Caption/TiddlerExists: Warning: tiddler already exists
|
||||||
Excise/DefaultTitle: New Excision
|
|
||||||
Excise/Hint: Excise the selected text into a new tiddler
|
Excise/Hint: Excise the selected text into a new tiddler
|
||||||
Heading1/Caption: heading 1
|
Heading1/Caption: heading 1
|
||||||
Heading1/Hint: Apply heading level 1 formatting to lines containing selection
|
Heading1/Hint: Apply heading level 1 formatting to lines containing selection
|
||||||
|
|||||||
@@ -198,12 +198,6 @@ Settings/TitleLinks/Yes/Description: Display tiddler titles as links
|
|||||||
Settings/MissingLinks/Caption: Wiki Links
|
Settings/MissingLinks/Caption: Wiki Links
|
||||||
Settings/MissingLinks/Hint: Choose whether to link to tiddlers that do not exist yet
|
Settings/MissingLinks/Hint: Choose whether to link to tiddlers that do not exist yet
|
||||||
Settings/MissingLinks/Description: Enable links to missing tiddlers
|
Settings/MissingLinks/Description: Enable links to missing tiddlers
|
||||||
SocialCard/Caption: Social Media Card
|
|
||||||
SocialCard/Domain/Prompt: Domain name to display for the link (for example, ''tiddlywiki.com'')
|
|
||||||
SocialCard/Hint: This information is used by social and messaging services to display a preview card for links to this TiddlyWiki when hosted online
|
|
||||||
SocialCard/PreviewUrl/Prompt: Full URL to preview image for this TiddlyWiki
|
|
||||||
SocialCard/PreviewUrl/Preview: Preview image:
|
|
||||||
SocialCard/Url/Prompt: Full URL of this TiddlyWiki
|
|
||||||
StoryTiddler/Caption: Story Tiddler
|
StoryTiddler/Caption: Story Tiddler
|
||||||
StoryTiddler/Hint: This rule cascade is used to dynamically choose the template for displaying a tiddler in the story river.
|
StoryTiddler/Hint: This rule cascade is used to dynamically choose the template for displaying a tiddler in the story river.
|
||||||
StoryView/Caption: Story View
|
StoryView/Caption: Story View
|
||||||
@@ -241,7 +235,3 @@ ViewTemplateBody/Caption: View Template Body
|
|||||||
ViewTemplateBody/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the body of a tiddler.
|
ViewTemplateBody/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the body of a tiddler.
|
||||||
ViewTemplateTitle/Caption: View Template Title
|
ViewTemplateTitle/Caption: View Template Title
|
||||||
ViewTemplateTitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the title of a tiddler.
|
ViewTemplateTitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the title of a tiddler.
|
||||||
ViewTemplateSubtitle/Caption: View Template Subtitle
|
|
||||||
ViewTemplateSubtitle/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the subtitle of a tiddler.
|
|
||||||
ViewTemplateTags/Caption: View Template Tags
|
|
||||||
ViewTemplateTags/Hint: This rule cascade is used by the default view template to dynamically choose the template for displaying the tags area of a tiddler.
|
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
title: $:/language/Snippets/FunctionDefinition
|
|
||||||
tags: $:/tags/TextEditor/Snippet
|
|
||||||
caption: Function definition
|
|
||||||
|
|
||||||
\function f.name(param1,param2:"default value") [<param1>!is[blank]else<param2>]
|
|
||||||
|
|
||||||
<<f.name>>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
title: $:/language/Snippets/ProcedureDefinition
|
|
||||||
tags: $:/tags/TextEditor/Snippet
|
|
||||||
caption: Procedure definition
|
|
||||||
|
|
||||||
\procedure procName(param1:"default value",param2)
|
|
||||||
Your text comes here.
|
|
||||||
\end
|
|
||||||
5
core/language/en-GB/Types/image_x-icon.tid
Normal file
5
core/language/en-GB/Types/image_x-icon.tid
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
title: $:/language/Docs/Types/image/x-icon
|
||||||
|
description: ICO icon
|
||||||
|
name: image/x-icon
|
||||||
|
group: Image
|
||||||
|
group-sort: 1
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
title: $:/language/Docs/Types/text/vnd.tiddlywiki-multiple
|
|
||||||
description: Compound tiddler
|
|
||||||
name: text/vnd.tiddlywiki-multiple
|
|
||||||
group: Developer
|
|
||||||
group-sort: 2
|
|
||||||
@@ -45,9 +45,7 @@ Render individual tiddlers and save the results to the specified files
|
|||||||
variableList = variableList.slice(2);
|
variableList = variableList.slice(2);
|
||||||
}
|
}
|
||||||
$tw.utils.each(tiddlers,function(title) {
|
$tw.utils.each(tiddlers,function(title) {
|
||||||
var filenameResults = wiki.filterTiddlers(filenameFilter,$tw.rootWidget,wiki.makeTiddlerIterator([title]));
|
var filepath = path.resolve(self.commander.outputPath,wiki.filterTiddlers(filenameFilter,$tw.rootWidget,wiki.makeTiddlerIterator([title]))[0]);
|
||||||
if(filenameResults.length > 0) {
|
|
||||||
var filepath = path.resolve(self.commander.outputPath,filenameResults[0]);
|
|
||||||
if(self.commander.verbose) {
|
if(self.commander.verbose) {
|
||||||
console.log("Rendering \"" + title + "\" to \"" + filepath + "\"");
|
console.log("Rendering \"" + title + "\" to \"" + filepath + "\"");
|
||||||
}
|
}
|
||||||
@@ -58,9 +56,6 @@ Render individual tiddlers and save the results to the specified files
|
|||||||
var text = type === "text/html" ? container.innerHTML : container.textContent;
|
var text = type === "text/html" ? container.innerHTML : container.textContent;
|
||||||
$tw.utils.createFileDirectories(filepath);
|
$tw.utils.createFileDirectories(filepath);
|
||||||
fs.writeFileSync(filepath,text,"utf8");
|
fs.writeFileSync(filepath,text,"utf8");
|
||||||
} else {
|
|
||||||
console.log("Not rendering \"" + title + "\" because the filename filter returned an empty result");
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ exports.textPrimitives.wikiLink = exports.textPrimitives.upperLetter + "+" +
|
|||||||
exports.textPrimitives.upperLetter +
|
exports.textPrimitives.upperLetter +
|
||||||
exports.textPrimitives.anyLetter + "*";
|
exports.textPrimitives.anyLetter + "*";
|
||||||
|
|
||||||
exports.htmlEntities = {quot:34, dollar:36, amp:38, apos:39, lt:60, gt:62, nbsp:160, iexcl:161, cent:162, pound:163, curren:164, yen:165, brvbar:166, sect:167, uml:168, copy:169, ordf:170, laquo:171, not:172, shy:173, reg:174, macr:175, deg:176, plusmn:177, sup2:178, sup3:179, acute:180, micro:181, para:182, middot:183, cedil:184, sup1:185, ordm:186, raquo:187, frac14:188, frac12:189, frac34:190, iquest:191, Agrave:192, Aacute:193, Acirc:194, Atilde:195, Auml:196, Aring:197, AElig:198, Ccedil:199, Egrave:200, Eacute:201, Ecirc:202, Euml:203, Igrave:204, Iacute:205, Icirc:206, Iuml:207, ETH:208, Ntilde:209, Ograve:210, Oacute:211, Ocirc:212, Otilde:213, Ouml:214, times:215, Oslash:216, Ugrave:217, Uacute:218, Ucirc:219, Uuml:220, Yacute:221, THORN:222, szlig:223, agrave:224, aacute:225, acirc:226, atilde:227, auml:228, aring:229, aelig:230, ccedil:231, egrave:232, eacute:233, ecirc:234, euml:235, igrave:236, iacute:237, icirc:238, iuml:239, eth:240, ntilde:241, ograve:242, oacute:243, ocirc:244, otilde:245, ouml:246, divide:247, oslash:248, ugrave:249, uacute:250, ucirc:251, uuml:252, yacute:253, thorn:254, yuml:255, OElig:338, oelig:339, Scaron:352, scaron:353, Yuml:376, fnof:402, circ:710, tilde:732, Alpha:913, Beta:914, Gamma:915, Delta:916, Epsilon:917, Zeta:918, Eta:919, Theta:920, Iota:921, Kappa:922, Lambda:923, Mu:924, Nu:925, Xi:926, Omicron:927, Pi:928, Rho:929, Sigma:931, Tau:932, Upsilon:933, Phi:934, Chi:935, Psi:936, Omega:937, alpha:945, beta:946, gamma:947, delta:948, epsilon:949, zeta:950, eta:951, theta:952, iota:953, kappa:954, lambda:955, mu:956, nu:957, xi:958, omicron:959, pi:960, rho:961, sigmaf:962, sigma:963, tau:964, upsilon:965, phi:966, chi:967, psi:968, omega:969, thetasym:977, upsih:978, piv:982, ensp:8194, emsp:8195, thinsp:8201, zwnj:8204, zwj:8205, lrm:8206, rlm:8207, ndash:8211, mdash:8212, lsquo:8216, rsquo:8217, sbquo:8218, ldquo:8220, rdquo:8221, bdquo:8222, dagger:8224, Dagger:8225, bull:8226, hellip:8230, permil:8240, prime:8242, Prime:8243, lsaquo:8249, rsaquo:8250, oline:8254, frasl:8260, nobreak:8288, NoBreak:8288, euro:8364, image:8465, weierp:8472, real:8476, trade:8482, alefsym:8501, larr:8592, uarr:8593, rarr:8594, darr:8595, harr:8596, crarr:8629, lArr:8656, uArr:8657, rArr:8658, dArr:8659, hArr:8660, forall:8704, part:8706, exist:8707, empty:8709, nabla:8711, isin:8712, notin:8713, ni:8715, prod:8719, sum:8721, minus:8722, lowast:8727, radic:8730, prop:8733, infin:8734, ang:8736, and:8743, or:8744, cap:8745, cup:8746, int:8747, there4:8756, sim:8764, cong:8773, asymp:8776, ne:8800, equiv:8801, le:8804, ge:8805, sub:8834, sup:8835, nsub:8836, sube:8838, supe:8839, oplus:8853, otimes:8855, perp:8869, sdot:8901, lceil:8968, rceil:8969, lfloor:8970, rfloor:8971, lang:9001, rang:9002, loz:9674, spades:9824, clubs:9827, hearts:9829, diams:9830 };
|
exports.htmlEntities = {quot:34, dollar:36, amp:38, apos:39, lt:60, gt:62, nbsp:160, iexcl:161, cent:162, pound:163, curren:164, yen:165, brvbar:166, sect:167, uml:168, copy:169, ordf:170, laquo:171, not:172, shy:173, reg:174, macr:175, deg:176, plusmn:177, sup2:178, sup3:179, acute:180, micro:181, para:182, middot:183, cedil:184, sup1:185, ordm:186, raquo:187, frac14:188, frac12:189, frac34:190, iquest:191, Agrave:192, Aacute:193, Acirc:194, Atilde:195, Auml:196, Aring:197, AElig:198, Ccedil:199, Egrave:200, Eacute:201, Ecirc:202, Euml:203, Igrave:204, Iacute:205, Icirc:206, Iuml:207, ETH:208, Ntilde:209, Ograve:210, Oacute:211, Ocirc:212, Otilde:213, Ouml:214, times:215, Oslash:216, Ugrave:217, Uacute:218, Ucirc:219, Uuml:220, Yacute:221, THORN:222, szlig:223, agrave:224, aacute:225, acirc:226, atilde:227, auml:228, aring:229, aelig:230, ccedil:231, egrave:232, eacute:233, ecirc:234, euml:235, igrave:236, iacute:237, icirc:238, iuml:239, eth:240, ntilde:241, ograve:242, oacute:243, ocirc:244, otilde:245, ouml:246, divide:247, oslash:248, ugrave:249, uacute:250, ucirc:251, uuml:252, yacute:253, thorn:254, yuml:255, OElig:338, oelig:339, Scaron:352, scaron:353, Yuml:376, fnof:402, circ:710, tilde:732, Alpha:913, Beta:914, Gamma:915, Delta:916, Epsilon:917, Zeta:918, Eta:919, Theta:920, Iota:921, Kappa:922, Lambda:923, Mu:924, Nu:925, Xi:926, Omicron:927, Pi:928, Rho:929, Sigma:931, Tau:932, Upsilon:933, Phi:934, Chi:935, Psi:936, Omega:937, alpha:945, beta:946, gamma:947, delta:948, epsilon:949, zeta:950, eta:951, theta:952, iota:953, kappa:954, lambda:955, mu:956, nu:957, xi:958, omicron:959, pi:960, rho:961, sigmaf:962, sigma:963, tau:964, upsilon:965, phi:966, chi:967, psi:968, omega:969, thetasym:977, upsih:978, piv:982, ensp:8194, emsp:8195, thinsp:8201, zwnj:8204, zwj:8205, lrm:8206, rlm:8207, ndash:8211, mdash:8212, lsquo:8216, rsquo:8217, sbquo:8218, ldquo:8220, rdquo:8221, bdquo:8222, dagger:8224, Dagger:8225, bull:8226, hellip:8230, permil:8240, prime:8242, Prime:8243, lsaquo:8249, rsaquo:8250, oline:8254, frasl:8260, euro:8364, image:8465, weierp:8472, real:8476, trade:8482, alefsym:8501, larr:8592, uarr:8593, rarr:8594, darr:8595, harr:8596, crarr:8629, lArr:8656, uArr:8657, rArr:8658, dArr:8659, hArr:8660, forall:8704, part:8706, exist:8707, empty:8709, nabla:8711, isin:8712, notin:8713, ni:8715, prod:8719, sum:8721, minus:8722, lowast:8727, radic:8730, prop:8733, infin:8734, ang:8736, and:8743, or:8744, cap:8745, cup:8746, int:8747, there4:8756, sim:8764, cong:8773, asymp:8776, ne:8800, equiv:8801, le:8804, ge:8805, sub:8834, sup:8835, nsub:8836, sube:8838, supe:8839, oplus:8853, otimes:8855, perp:8869, sdot:8901, lceil:8968, rceil:8969, lfloor:8970, rfloor:8971, lang:9001, rang:9002, loz:9674, spades:9824, clubs:9827, hearts:9829, diams:9830 };
|
||||||
|
|
||||||
exports.htmlVoidElements = "area,base,br,col,command,embed,hr,img,input,keygen,link,meta,param,source,track,wbr".split(",");
|
exports.htmlVoidElements = "area,base,br,col,command,embed,hr,img,input,keygen,link,meta,param,source,track,wbr".split(",");
|
||||||
|
|
||||||
|
|||||||
@@ -14,12 +14,11 @@ Text editor operation to excise the selection to a new tiddler
|
|||||||
|
|
||||||
exports["excise"] = function(event,operation) {
|
exports["excise"] = function(event,operation) {
|
||||||
var editTiddler = this.wiki.getTiddler(this.editTitle),
|
var editTiddler = this.wiki.getTiddler(this.editTitle),
|
||||||
editTiddlerTitle = this.editTitle,
|
editTiddlerTitle = this.editTitle;
|
||||||
excisionBaseTitle = $tw.language.getString("Buttons/Excise/DefaultTitle");
|
|
||||||
if(editTiddler && editTiddler.fields["draft.of"]) {
|
if(editTiddler && editTiddler.fields["draft.of"]) {
|
||||||
editTiddlerTitle = editTiddler.fields["draft.of"];
|
editTiddlerTitle = editTiddler.fields["draft.of"];
|
||||||
}
|
}
|
||||||
var excisionTitle = event.paramObject.title || this.wiki.generateNewTitle(excisionBaseTitle);
|
var excisionTitle = event.paramObject.title || this.wiki.generateNewTitle("New Excision");
|
||||||
this.wiki.addTiddler(new $tw.Tiddler(
|
this.wiki.addTiddler(new $tw.Tiddler(
|
||||||
this.wiki.getCreationFields(),
|
this.wiki.getCreationFields(),
|
||||||
this.wiki.getModificationFields(),
|
this.wiki.getModificationFields(),
|
||||||
|
|||||||
@@ -93,12 +93,11 @@ var processRow = function(prevColumns) {
|
|||||||
}
|
}
|
||||||
// Check whether this is a heading cell
|
// Check whether this is a heading cell
|
||||||
var cell;
|
var cell;
|
||||||
var start = this.parser.pos;
|
|
||||||
if(chr === "!") {
|
if(chr === "!") {
|
||||||
this.parser.pos++;
|
this.parser.pos++;
|
||||||
cell = {type: "element", tag: "th", start: start, children: []};
|
cell = {type: "element", tag: "th", children: []};
|
||||||
} else {
|
} else {
|
||||||
cell = {type: "element", tag: "td", start: start, children: []};
|
cell = {type: "element", tag: "td", children: []};
|
||||||
}
|
}
|
||||||
tree.push(cell);
|
tree.push(cell);
|
||||||
// Record information about this cell
|
// Record information about this cell
|
||||||
@@ -122,7 +121,6 @@ var processRow = function(prevColumns) {
|
|||||||
}
|
}
|
||||||
// Move back to the closing `|`
|
// Move back to the closing `|`
|
||||||
this.parser.pos--;
|
this.parser.pos--;
|
||||||
cell.end = this.parser.pos;
|
|
||||||
}
|
}
|
||||||
col++;
|
col++;
|
||||||
cellRegExp.lastIndex = this.parser.pos;
|
cellRegExp.lastIndex = this.parser.pos;
|
||||||
@@ -171,13 +169,12 @@ exports.parse = function() {
|
|||||||
rowContainer.children = this.parser.parseInlineRun(rowTermRegExp,{eatTerminator: true});
|
rowContainer.children = this.parser.parseInlineRun(rowTermRegExp,{eatTerminator: true});
|
||||||
} else {
|
} else {
|
||||||
// Create the row
|
// Create the row
|
||||||
var theRow = {type: "element", tag: "tr", children: [], start: rowMatch.index};
|
var theRow = {type: "element", tag: "tr", children: []};
|
||||||
$tw.utils.addClassToParseTreeNode(theRow,rowCount%2 ? "oddRow" : "evenRow");
|
$tw.utils.addClassToParseTreeNode(theRow,rowCount%2 ? "oddRow" : "evenRow");
|
||||||
rowContainer.children.push(theRow);
|
rowContainer.children.push(theRow);
|
||||||
// Process the row
|
// Process the row
|
||||||
theRow.children = processRow.call(this,prevColumns);
|
theRow.children = processRow.call(this,prevColumns);
|
||||||
this.parser.pos = rowMatch.index + rowMatch[0].length;
|
this.parser.pos = rowMatch.index + rowMatch[0].length;
|
||||||
theRow.end = this.parser.pos;
|
|
||||||
// Increment the row count
|
// Increment the row count
|
||||||
rowCount++;
|
rowCount++;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,14 +48,14 @@ var PutSaver = function(wiki) {
|
|||||||
var self = this;
|
var self = this;
|
||||||
var uri = this.uri();
|
var uri = this.uri();
|
||||||
// Async server probe. Until probe finishes, save will fail fast
|
// Async server probe. Until probe finishes, save will fail fast
|
||||||
// See also https://github.com/TiddlyWiki/TiddlyWiki5/issues/2276
|
// See also https://github.com/Jermolene/TiddlyWiki5/issues/2276
|
||||||
$tw.utils.httpRequest({
|
$tw.utils.httpRequest({
|
||||||
url: uri,
|
url: uri,
|
||||||
type: "OPTIONS",
|
type: "OPTIONS",
|
||||||
callback: function(err,data,xhr) {
|
callback: function(err,data,xhr) {
|
||||||
// Check DAV header http://www.webdav.org/specs/rfc2518.html#rfc.section.9.1
|
// Check DAV header http://www.webdav.org/specs/rfc2518.html#rfc.section.9.1
|
||||||
if(!err) {
|
if(!err) {
|
||||||
self.serverAcceptsPuts = xhr.status >= 200 && xhr.status < 300 && !!xhr.getResponseHeader("dav");
|
self.serverAcceptsPuts = xhr.status === 200 && !!xhr.getResponseHeader("dav");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -30,8 +30,12 @@ ClassicStoryView.prototype.navigateTo = function(historyInfo) {
|
|||||||
if(!targetElement || targetElement.nodeType === Node.TEXT_NODE) {
|
if(!targetElement || targetElement.nodeType === Node.TEXT_NODE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(duration) {
|
||||||
// Scroll the node into view
|
// Scroll the node into view
|
||||||
this.listWidget.dispatchEvent({type: "tm-scroll", target: targetElement});
|
this.listWidget.dispatchEvent({type: "tm-scroll", target: targetElement});
|
||||||
|
} else {
|
||||||
|
targetElement.scrollIntoView();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
ClassicStoryView.prototype.insert = function(widget) {
|
ClassicStoryView.prototype.insert = function(widget) {
|
||||||
@@ -78,10 +82,6 @@ ClassicStoryView.prototype.remove = function(widget) {
|
|||||||
removeElement = function() {
|
removeElement = function() {
|
||||||
widget.removeChildDomNodes();
|
widget.removeChildDomNodes();
|
||||||
};
|
};
|
||||||
// Blur the focus if it is within the descendents of the node we are removing
|
|
||||||
if($tw.utils.domContains(targetElement,targetElement.ownerDocument.activeElement)) {
|
|
||||||
targetElement.ownerDocument.activeElement.blur();
|
|
||||||
}
|
|
||||||
// Abandon if the list entry isn't a DOM element (it might be a text node)
|
// Abandon if the list entry isn't a DOM element (it might be a text node)
|
||||||
if(!targetElement || targetElement.nodeType === Node.TEXT_NODE) {
|
if(!targetElement || targetElement.nodeType === Node.TEXT_NODE) {
|
||||||
removeElement();
|
removeElement();
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ Upgrader module that suppresses certain system tiddlers that shouldn't be import
|
|||||||
/*global $tw: false */
|
/*global $tw: false */
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var DONT_IMPORT_LIST = ["$:/Import", "$:/build"],
|
var DONT_IMPORT_LIST = ["$:/Import"],
|
||||||
UNSELECT_PREFIX_LIST = ["$:/temp/","$:/state/","$:/StoryList","$:/HistoryList"],
|
UNSELECT_PREFIX_LIST = ["$:/temp/","$:/state/","$:/StoryList","$:/HistoryList"],
|
||||||
WARN_IMPORT_PREFIX_LIST = ["$:/core/modules/"];
|
WARN_IMPORT_PREFIX_LIST = ["$:/core/modules/"];
|
||||||
|
|
||||||
|
|||||||
@@ -270,7 +270,6 @@ Copy plain text to the clipboard on browsers that support it
|
|||||||
*/
|
*/
|
||||||
exports.copyToClipboard = function(text,options) {
|
exports.copyToClipboard = function(text,options) {
|
||||||
options = options || {};
|
options = options || {};
|
||||||
text = text || "";
|
|
||||||
var textArea = document.createElement("textarea");
|
var textArea = document.createElement("textarea");
|
||||||
textArea.style.position = "fixed";
|
textArea.style.position = "fixed";
|
||||||
textArea.style.top = 0;
|
textArea.style.top = 0;
|
||||||
|
|||||||
@@ -29,11 +29,8 @@ exports.getEditionInfo = function() {
|
|||||||
for(var entryIndex=0; entryIndex<entries.length; entryIndex++) {
|
for(var entryIndex=0; entryIndex<entries.length; entryIndex++) {
|
||||||
var entry = entries[entryIndex];
|
var entry = entries[entryIndex];
|
||||||
// Check if directories have a valid tiddlywiki.info
|
// Check if directories have a valid tiddlywiki.info
|
||||||
// Check if the entry is a hidden directory
|
if(!editionInfo[entry] && $tw.utils.isDirectory(path.resolve(editionPath,entry))) {
|
||||||
if((entry.charAt(0) !== ".") && !editionInfo[entry] && $tw.utils.isDirectory(path.resolve(editionPath,entry))) {
|
var info = $tw.utils.parseJSONSafe(fs.readFileSync(path.resolve(editionPath,entry,"tiddlywiki.info"),"utf8"),null);
|
||||||
var file=path.resolve(editionPath,entry,"tiddlywiki.info");
|
|
||||||
if(fs.existsSync(file)) {
|
|
||||||
var info = $tw.utils.parseJSONSafe(fs.readFileSync(file,"utf8"),null);
|
|
||||||
if(info) {
|
if(info) {
|
||||||
editionInfo[entry] = info;
|
editionInfo[entry] = info;
|
||||||
}
|
}
|
||||||
@@ -41,7 +38,6 @@ exports.getEditionInfo = function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return editionInfo;
|
return editionInfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -238,7 +238,7 @@ exports.generateTiddlerFileInfo = function(tiddler,options) {
|
|||||||
} else {
|
} else {
|
||||||
// Save as a .tid or a text/binary file plus a .meta file
|
// Save as a .tid or a text/binary file plus a .meta file
|
||||||
var tiddlerType = tiddler.fields.type || "text/vnd.tiddlywiki";
|
var tiddlerType = tiddler.fields.type || "text/vnd.tiddlywiki";
|
||||||
if(tiddlerType === "text/vnd.tiddlywiki" || tiddlerType === "text/vnd.tiddlywiki-multiple" || tiddler.hasField("_canonical_uri")) {
|
if(tiddlerType === "text/vnd.tiddlywiki" || tiddler.hasField("_canonical_uri")) {
|
||||||
// Save as a .tid file
|
// Save as a .tid file
|
||||||
fileInfo.type = "application/x-tiddler";
|
fileInfo.type = "application/x-tiddler";
|
||||||
fileInfo.hasMetaFile = false;
|
fileInfo.hasMetaFile = false;
|
||||||
|
|||||||
@@ -924,7 +924,7 @@ exports.transliterate = function(str) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
exports.transliterateToSafeASCII = function(str) {
|
exports.transliterateToSafeASCII = function(str) {
|
||||||
return str.replace(/[^\x20-\x7F]/g,function(ch) {
|
return str.replace(/[^\x00-\x7F]/g,function(ch) {
|
||||||
return exports.transliterationPairs[ch] || ""
|
return exports.transliterationPairs[ch] || ""
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -75,9 +75,7 @@ DataWidget.prototype.computeDataTiddlerValues = function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Deal with $tiddler, $filter or $compound-tiddler attributes
|
// Deal with $tiddler, $filter or $compound-tiddler attributes
|
||||||
var tiddlers = [],
|
var tiddlers = [],title;
|
||||||
compoundTiddlers,
|
|
||||||
title;
|
|
||||||
if(this.hasAttribute("$tiddler")) {
|
if(this.hasAttribute("$tiddler")) {
|
||||||
title = this.getAttribute("$tiddler");
|
title = this.getAttribute("$tiddler");
|
||||||
if(title) {
|
if(title) {
|
||||||
@@ -105,17 +103,8 @@ DataWidget.prototype.computeDataTiddlerValues = function() {
|
|||||||
tiddlers.push.apply(tiddlers,this.extractCompoundTiddler(title));
|
tiddlers.push.apply(tiddlers,this.extractCompoundTiddler(title));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(this.hasAttribute("$compound-filter")) {
|
|
||||||
filter = this.getAttribute("$compound-filter");
|
|
||||||
if(filter) {
|
|
||||||
compoundTiddlers = this.wiki.filterTiddlers(filter);
|
|
||||||
$tw.utils.each(compoundTiddlers, function(title){
|
|
||||||
tiddlers.push.apply(tiddlers,self.extractCompoundTiddler(title));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Return the literal item if none of the special attributes were used
|
// Return the literal item if none of the special attributes were used
|
||||||
if(!this.hasAttribute("$tiddler") && !this.hasAttribute("$filter") && !this.hasAttribute("$compound-tiddler") && !this.hasAttribute("$compound-filter")) {
|
if(!this.hasAttribute("$tiddler") && !this.hasAttribute("$filter") && !this.hasAttribute("$compound-tiddler")) {
|
||||||
if(Object.keys(item).length > 0 && !!item.title) {
|
if(Object.keys(item).length > 0 && !!item.title) {
|
||||||
return [new $tw.Tiddler(item)];
|
return [new $tw.Tiddler(item)];
|
||||||
} else {
|
} else {
|
||||||
@@ -123,6 +112,7 @@ DataWidget.prototype.computeDataTiddlerValues = function() {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Apply the item fields to each of the tiddlers
|
// Apply the item fields to each of the tiddlers
|
||||||
|
delete item.title; // Do not overwrite the title
|
||||||
if(Object.keys(item).length > 0) {
|
if(Object.keys(item).length > 0) {
|
||||||
$tw.utils.each(tiddlers,function(tiddler,index) {
|
$tw.utils.each(tiddlers,function(tiddler,index) {
|
||||||
tiddlers[index] = new $tw.Tiddler(tiddler,item);
|
tiddlers[index] = new $tw.Tiddler(tiddler,item);
|
||||||
|
|||||||
@@ -560,8 +560,7 @@ exports.extractTranscludes = function(parseTreeRoot, title) {
|
|||||||
for(var t=0; t<parseTree.length; t++) {
|
for(var t=0; t<parseTree.length; t++) {
|
||||||
var parseTreeNode = parseTree[t];
|
var parseTreeNode = parseTree[t];
|
||||||
if(parseTreeNode.type === "transclude") {
|
if(parseTreeNode.type === "transclude") {
|
||||||
if(parseTreeNode.attributes.$tiddler) {
|
if(parseTreeNode.attributes.$tiddler && parseTreeNode.attributes.$tiddler.type === "string") {
|
||||||
if(parseTreeNode.attributes.$tiddler.type === "string") {
|
|
||||||
var value;
|
var value;
|
||||||
// if it is Transclusion with Templates like `{{Index||$:/core/ui/TagTemplate}}`, the `$tiddler` will point to the template. We need to find the actual target tiddler from parent node
|
// if it is Transclusion with Templates like `{{Index||$:/core/ui/TagTemplate}}`, the `$tiddler` will point to the template. We need to find the actual target tiddler from parent node
|
||||||
if(parentNode && parentNode.type === "tiddler" && parentNode.attributes.tiddler && parentNode.attributes.tiddler.type === "string") {
|
if(parentNode && parentNode.type === "tiddler" && parentNode.attributes.tiddler && parentNode.attributes.tiddler.type === "string") {
|
||||||
@@ -570,12 +569,9 @@ exports.extractTranscludes = function(parseTreeRoot, title) {
|
|||||||
} else {
|
} else {
|
||||||
value = parseTreeNode.attributes.$tiddler.value;
|
value = parseTreeNode.attributes.$tiddler.value;
|
||||||
}
|
}
|
||||||
}
|
} else if(parseTreeNode.attributes.tiddler && parseTreeNode.attributes.tiddler.type === "string") {
|
||||||
} else if(parseTreeNode.attributes.tiddler) {
|
|
||||||
if (parseTreeNode.attributes.tiddler.type === "string") {
|
|
||||||
// Old transclude widget usage
|
// Old transclude widget usage
|
||||||
value = parseTreeNode.attributes.tiddler.value;
|
value = parseTreeNode.attributes.tiddler.value;
|
||||||
}
|
|
||||||
} else if(parseTreeNode.attributes.$field && parseTreeNode.attributes.$field.type === "string") {
|
} else if(parseTreeNode.attributes.$field && parseTreeNode.attributes.$field.type === "string") {
|
||||||
// Empty value (like `<$transclude $field='created'/>`) means self-referential transclusion.
|
// Empty value (like `<$transclude $field='created'/>`) means self-referential transclusion.
|
||||||
value = title;
|
value = title;
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #0000aa
|
external-link-foreground-visited: #0000aa
|
||||||
external-link-foreground: #0000ee
|
external-link-foreground: #0000ee
|
||||||
footnote-target-background: #ecf2ff
|
|
||||||
foreground: #333333
|
foreground: #333333
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #0000aa
|
external-link-foreground-visited: #0000aa
|
||||||
external-link-foreground: #0000ee
|
external-link-foreground: #0000ee
|
||||||
footnote-target-background: #ecf2ff
|
|
||||||
foreground: #333353
|
foreground: #333353
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #0000aa
|
external-link-foreground-visited: #0000aa
|
||||||
external-link-foreground: #0000ee
|
external-link-foreground: #0000ee
|
||||||
footnote-target-background: #ecf2ff
|
|
||||||
foreground: #333333
|
foreground: #333333
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
title: $:/palettes/ContrastDark
|
title: $:/palettes/ContrastLight
|
||||||
name: Contrast (Dark)
|
name: Contrast (Light)
|
||||||
color-scheme: dark
|
color-scheme: light
|
||||||
description: High contrast and unambiguous (dark version)
|
description: High contrast and unambiguous (light version)
|
||||||
tags: $:/tags/Palette
|
tags: $:/tags/Palette
|
||||||
type: application/x-tiddler-dictionary
|
type: application/x-tiddler-dictionary
|
||||||
|
|
||||||
@@ -9,7 +9,7 @@ alert-background: #f00
|
|||||||
alert-border: <<colour background>>
|
alert-border: <<colour background>>
|
||||||
alert-highlight: <<colour foreground>>
|
alert-highlight: <<colour foreground>>
|
||||||
alert-muted-foreground: #800
|
alert-muted-foreground: #800
|
||||||
background: #000
|
background: #fff
|
||||||
blockquote-bar: <<colour muted-foreground>>
|
blockquote-bar: <<colour muted-foreground>>
|
||||||
button-background: <<colour background>>
|
button-background: <<colour background>>
|
||||||
button-foreground: <<colour foreground>>
|
button-foreground: <<colour foreground>>
|
||||||
@@ -33,8 +33,7 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #00a
|
external-link-foreground-visited: #00a
|
||||||
external-link-foreground: #00e
|
external-link-foreground: #00e
|
||||||
footnote-target-background: #4c4c4c
|
foreground: #000
|
||||||
foreground: #fff
|
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
message-background: <<colour foreground>>
|
message-background: <<colour foreground>>
|
||||||
@@ -83,8 +82,8 @@ tab-foreground: <<colour background>>
|
|||||||
table-border: #dddddd
|
table-border: #dddddd
|
||||||
table-footer-background: #a8a8a8
|
table-footer-background: #a8a8a8
|
||||||
table-header-background: #f0f0f0
|
table-header-background: #f0f0f0
|
||||||
tag-background: #fff
|
tag-background: #000
|
||||||
tag-foreground: #000
|
tag-foreground: #fff
|
||||||
tiddler-background: <<colour background>>
|
tiddler-background: <<colour background>>
|
||||||
tiddler-border: <<colour foreground>>
|
tiddler-border: <<colour foreground>>
|
||||||
tiddler-controls-foreground-hover: #ddd
|
tiddler-controls-foreground-hover: #ddd
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
title: $:/palettes/ContrastLight
|
title: $:/palettes/ContrastDark
|
||||||
name: Contrast (Light)
|
name: Contrast (Dark)
|
||||||
color-scheme: light
|
color-scheme: dark
|
||||||
description: High contrast and unambiguous (light version)
|
description: High contrast and unambiguous (dark version)
|
||||||
tags: $:/tags/Palette
|
tags: $:/tags/Palette
|
||||||
type: application/x-tiddler-dictionary
|
type: application/x-tiddler-dictionary
|
||||||
|
|
||||||
@@ -9,7 +9,7 @@ alert-background: #f00
|
|||||||
alert-border: <<colour background>>
|
alert-border: <<colour background>>
|
||||||
alert-highlight: <<colour foreground>>
|
alert-highlight: <<colour foreground>>
|
||||||
alert-muted-foreground: #800
|
alert-muted-foreground: #800
|
||||||
background: #fff
|
background: #000
|
||||||
blockquote-bar: <<colour muted-foreground>>
|
blockquote-bar: <<colour muted-foreground>>
|
||||||
button-background: <<colour background>>
|
button-background: <<colour background>>
|
||||||
button-foreground: <<colour foreground>>
|
button-foreground: <<colour foreground>>
|
||||||
@@ -33,8 +33,7 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #00a
|
external-link-foreground-visited: #00a
|
||||||
external-link-foreground: #00e
|
external-link-foreground: #00e
|
||||||
footnote-target-background: #e5e5e5
|
foreground: #fff
|
||||||
foreground: #000
|
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
message-background: <<colour foreground>>
|
message-background: <<colour foreground>>
|
||||||
@@ -83,8 +82,8 @@ tab-foreground: <<colour background>>
|
|||||||
table-border: #dddddd
|
table-border: #dddddd
|
||||||
table-footer-background: #a8a8a8
|
table-footer-background: #a8a8a8
|
||||||
table-header-background: #f0f0f0
|
table-header-background: #f0f0f0
|
||||||
tag-background: #000
|
tag-background: #fff
|
||||||
tag-foreground: #fff
|
tag-foreground: #000
|
||||||
tiddler-background: <<colour background>>
|
tiddler-background: <<colour background>>
|
||||||
tiddler-border: <<colour foreground>>
|
tiddler-border: <<colour foreground>>
|
||||||
tiddler-controls-foreground-hover: #ddd
|
tiddler-controls-foreground-hover: #ddd
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ external-link-background: transparent
|
|||||||
external-link-foreground-hover:
|
external-link-foreground-hover:
|
||||||
external-link-foreground-visited: #BF5AF2
|
external-link-foreground-visited: #BF5AF2
|
||||||
external-link-foreground: #32D74B
|
external-link-foreground: #32D74B
|
||||||
footnote-target-background: #747474
|
|
||||||
foreground: #FFFFFF
|
foreground: #FFFFFF
|
||||||
highlight-background: #ffff78
|
highlight-background: #ffff78
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -35,7 +35,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #0000aa
|
external-link-foreground-visited: #0000aa
|
||||||
external-link-foreground: #0000ee
|
external-link-foreground: #0000ee
|
||||||
footnote-target-background: #ecf2ff
|
|
||||||
foreground: #333333
|
foreground: #333333
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -39,7 +39,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #313163
|
external-link-foreground-visited: #313163
|
||||||
external-link-foreground: #555592
|
external-link-foreground: #555592
|
||||||
footnote-target-background: #fff7d9
|
|
||||||
foreground: #2D2A23
|
foreground: #2D2A23
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -40,7 +40,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #d3869b
|
external-link-foreground-visited: #d3869b
|
||||||
external-link-foreground: #8ec07c
|
external-link-foreground: #8ec07c
|
||||||
footnote-target-background: #665c54
|
|
||||||
foreground: #fbf1c7
|
foreground: #fbf1c7
|
||||||
highlight-background: #ffff79
|
highlight-background: #ffff79
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -40,7 +40,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #5E81AC
|
external-link-foreground-visited: #5E81AC
|
||||||
external-link-foreground: #8FBCBB
|
external-link-foreground: #8FBCBB
|
||||||
footnote-target-background: #2E3440
|
|
||||||
foreground: #d8dee9
|
foreground: #d8dee9
|
||||||
highlight-background: #ffff78
|
highlight-background: #ffff78
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #0000aa
|
external-link-foreground-visited: #0000aa
|
||||||
external-link-foreground: #0000ee
|
external-link-foreground: #0000ee
|
||||||
footnote-target-background: #ecf2ff
|
|
||||||
foreground: #333333
|
foreground: #333333
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -131,7 +131,6 @@ external-link-background-hover: inherit
|
|||||||
external-link-background-visited: inherit
|
external-link-background-visited: inherit
|
||||||
external-link-background: inherit
|
external-link-background: inherit
|
||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
footnote-target-background: #ded8c5
|
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
message-border: #cfd6e6
|
message-border: #cfd6e6
|
||||||
@@ -142,10 +141,6 @@ sidebar-controls-foreground-hover:
|
|||||||
sidebar-muted-foreground-hover:
|
sidebar-muted-foreground-hover:
|
||||||
sidebar-tab-background: #ded8c5
|
sidebar-tab-background: #ded8c5
|
||||||
sidebar-tiddler-link-foreground-hover:
|
sidebar-tiddler-link-foreground-hover:
|
||||||
stability-deprecated: <<colour red>>
|
|
||||||
stability-experimental: <<colour yellow>>
|
|
||||||
stability-legacy: <<colour blue>>
|
|
||||||
stability-stable: <<colour green>>
|
|
||||||
static-alert-foreground: #aaaaaa
|
static-alert-foreground: #aaaaaa
|
||||||
tab-border: #cccccc
|
tab-border: #cccccc
|
||||||
modal-footer-border: <<colour tab-border>>
|
modal-footer-border: <<colour tab-border>>
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ external-link-background-visited: inherit
|
|||||||
external-link-foreground: #268bd2
|
external-link-foreground: #268bd2
|
||||||
external-link-foreground-hover:
|
external-link-foreground-hover:
|
||||||
external-link-foreground-visited: #268bd2
|
external-link-foreground-visited: #268bd2
|
||||||
footnote-target-background: #073642
|
|
||||||
foreground: #839496
|
foreground: #839496
|
||||||
highlight-background: #ffff78
|
highlight-background: #ffff78
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ external-link-background-visited: inherit
|
|||||||
external-link-foreground: #268bd2
|
external-link-foreground: #268bd2
|
||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #268bd2
|
external-link-foreground-visited: #268bd2
|
||||||
footnote-target-background: #eee8d5
|
|
||||||
foreground: #657b83
|
foreground: #657b83
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ external-link-background: transparent
|
|||||||
external-link-foreground-hover:
|
external-link-foreground-hover:
|
||||||
external-link-foreground-visited:
|
external-link-foreground-visited:
|
||||||
external-link-foreground:
|
external-link-foreground:
|
||||||
footnote-target-background: #ececec
|
|
||||||
foreground: rgba(0, 0, 0, 0.87)
|
foreground: rgba(0, 0, 0, 0.87)
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ external-link-background: transparent
|
|||||||
external-link-foreground-hover:
|
external-link-foreground-hover:
|
||||||
external-link-foreground-visited: #7c318c
|
external-link-foreground-visited: #7c318c
|
||||||
external-link-foreground: #9e3eb3
|
external-link-foreground: #9e3eb3
|
||||||
footnote-target-background: #494949
|
|
||||||
foreground: rgba(255, 255, 255, 0.7)
|
foreground: rgba(255, 255, 255, 0.7)
|
||||||
highlight-background: #ffff78
|
highlight-background: #ffff78
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -42,7 +42,6 @@ external-link-background-visited: inherit
|
|||||||
external-link-foreground: rgb(179, 179, 255)
|
external-link-foreground: rgb(179, 179, 255)
|
||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: rgb(153, 153, 255)
|
external-link-foreground-visited: rgb(153, 153, 255)
|
||||||
footnote-target-background: <<colour tag-foreground>>
|
|
||||||
foreground: rgb(179, 179, 179)
|
foreground: rgb(179, 179, 179)
|
||||||
highlight-background: #ffff78
|
highlight-background: #ffff78
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -41,7 +41,6 @@ external-link-background: inherit
|
|||||||
external-link-foreground-hover: inherit
|
external-link-foreground-hover: inherit
|
||||||
external-link-foreground-visited: #0000aa
|
external-link-foreground-visited: #0000aa
|
||||||
external-link-foreground: #0000ee
|
external-link-foreground: #0000ee
|
||||||
footnote-target-background: #ecf2ff
|
|
||||||
foreground: #333333
|
foreground: #333333
|
||||||
highlight-background: #ffff00
|
highlight-background: #ffff00
|
||||||
highlight-foreground: #000000
|
highlight-foreground: #000000
|
||||||
|
|||||||
@@ -1,38 +0,0 @@
|
|||||||
title: $:/core/templates/social-metadata
|
|
||||||
tags: $:/tags/RawMarkupWikified
|
|
||||||
|
|
||||||
\procedure meta-plain(name,source,name-attribute:"name")
|
|
||||||
\whitespace trim
|
|
||||||
<%if [<source>has[text]] %>
|
|
||||||
<meta <$text text=<<name-attribute>>/>="<$text text=<<name>>/>" content="<$text text={{{ [<source>get[text]encodehtml[]] }}}/>">
|
|
||||||
<$text text={{{ [charcode[10]] }}}/>
|
|
||||||
<%endif%>
|
|
||||||
\end meta-plain
|
|
||||||
|
|
||||||
\procedure meta-wikified(name,source,name-attribute:"name")
|
|
||||||
\whitespace trim
|
|
||||||
<%if [<source>has[text]] %>
|
|
||||||
<$wikify name="html" text={{{ [<source>get[text]] }}} output="text">
|
|
||||||
<meta <$text text=<<name-attribute>>/>="<$text text=<<name>>/>" content="<$text text={{{ [<html>encodehtml[]] }}}/>">
|
|
||||||
<$text text={{{ [charcode[10]] }}}/>
|
|
||||||
</$wikify>
|
|
||||||
<%endif%>
|
|
||||||
\end meta-wikified
|
|
||||||
|
|
||||||
\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock conditional commentinline commentblock
|
|
||||||
<<meta-wikified "description" "$:/SiteSubtitle">>
|
|
||||||
|
|
||||||
<!-- Facebook Meta Tags -->
|
|
||||||
<<meta-plain "og:url" "$:/SiteUrl" "property">>
|
|
||||||
<<meta-plain "og:type" "website" "property">>
|
|
||||||
<<meta-wikified "og:title" "$:/SiteTitle" "property">>
|
|
||||||
<<meta-wikified "og:description" "$:/SiteSubtitle" "property">>
|
|
||||||
<<meta-plain "og:image" "$:/SitePreviewUrl" "property">>
|
|
||||||
|
|
||||||
<!-- Twitter Meta Tags -->
|
|
||||||
<<meta-plain "twitter:card" "summary_large_image">>
|
|
||||||
<<meta-plain "twitter:domain" "$:/SiteDomain" "property">>
|
|
||||||
<<meta-plain "twitter:url" "$:/SiteUrl" "property">>
|
|
||||||
<<meta-wikified "twitter:title" "$:/SiteTitle">>
|
|
||||||
<<meta-wikified "twitter:description" "$:/SiteSubtitle">>
|
|
||||||
<<meta-plain "twitter:image" "$:/SitePreviewUrl">>
|
|
||||||
@@ -39,7 +39,6 @@ caption: {{$:/language/Search/Standard/Caption}}
|
|||||||
</$keyboard>
|
</$keyboard>
|
||||||
</$keyboard>
|
</$keyboard>
|
||||||
</$keyboard>
|
</$keyboard>
|
||||||
 
|
|
||||||
<$reveal state="$:/temp/advancedsearch" type="nomatch" text="">
|
<$reveal state="$:/temp/advancedsearch" type="nomatch" text="">
|
||||||
<$button class="tc-btn-invisible">
|
<$button class="tc-btn-invisible">
|
||||||
<<cancel-search-actions>>
|
<<cancel-search-actions>>
|
||||||
@@ -58,15 +57,15 @@ caption: {{$:/language/Search/Standard/Caption}}
|
|||||||
configTiddler={{{ [[$:/state/advancedsearch/standard/currentTab]!is[missing]get[text]] ~[{$:/config/SearchResults/Default}] }}}
|
configTiddler={{{ [[$:/state/advancedsearch/standard/currentTab]!is[missing]get[text]] ~[{$:/config/SearchResults/Default}] }}}
|
||||||
searchListState="$:/temp/advancedsearch/selected-item">
|
searchListState="$:/temp/advancedsearch/selected-item">
|
||||||
<$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]]">
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]]">
|
||||||
<$list-empty>
|
|
||||||
<$list filter='[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]'><$transclude mode="block"/></$list>
|
|
||||||
</$list-empty>
|
|
||||||
<$macrocall $name="tabs"
|
<$macrocall $name="tabs"
|
||||||
tabsList="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]"
|
tabsList="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]"
|
||||||
default={{$:/config/SearchResults/Default}}
|
default={{$:/config/SearchResults/Default}}
|
||||||
actions="<$action-setfield $tiddler='$:/state/advancedsearch/standard/currentTab' text=<<currentTab>>/>"
|
actions="<$action-setfield $tiddler='$:/state/advancedsearch/standard/currentTab' text=<<currentTab>>/>"
|
||||||
explicitState="$:/state/tab/search-results/advancedsearch" />
|
explicitState="$:/state/tab/search-results/advancedsearch" />
|
||||||
</$list>
|
</$list>
|
||||||
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]] :else[[]]">
|
||||||
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]"><$transclude mode="block"/></$list>
|
||||||
|
</$list>
|
||||||
</$vars>
|
</$vars>
|
||||||
</$list>
|
</$list>
|
||||||
</$reveal>
|
</$reveal>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ caption: {{$:/language/ControlPanel/Basics/Caption}}
|
|||||||
|<$link to="$:/SiteTitle"><<lingo Title/Prompt>></$link> |<$edit-text tiddler="$:/SiteTitle" default="" tag="input"/> |
|
|<$link to="$:/SiteTitle"><<lingo Title/Prompt>></$link> |<$edit-text tiddler="$:/SiteTitle" default="" tag="input"/> |
|
||||||
|<$link to="$:/SiteSubtitle"><<lingo Subtitle/Prompt>></$link> |<$edit-text tiddler="$:/SiteSubtitle" default="" tag="input"/> |
|
|<$link to="$:/SiteSubtitle"><<lingo Subtitle/Prompt>></$link> |<$edit-text tiddler="$:/SiteSubtitle" default="" tag="input"/> |
|
||||||
|<$link to="$:/status/UserName"><<lingo Username/Prompt>></$link> |<$edit-text tiddler="$:/status/UserName" default="" tag="input"/> |
|
|<$link to="$:/status/UserName"><<lingo Username/Prompt>></$link> |<$edit-text tiddler="$:/status/UserName" default="" tag="input"/> |
|
||||||
|<$link to="$:/config/AnimationDuration"><<lingo AnimDuration/Prompt>></$link> |<$edit-text tiddler="$:/config/AnimationDuration" default="" tag="input" type="number"/> |
|
|<$link to="$:/config/AnimationDuration"><<lingo AnimDuration/Prompt>></$link> |<$edit-text tiddler="$:/config/AnimationDuration" default="" tag="input"/> |
|
||||||
|<$link to="$:/DefaultTiddlers"><<lingo DefaultTiddlers/Prompt>></$link> |<<lingo DefaultTiddlers/TopHint>><br> <$edit class="tc-edit-texteditor" tiddler="$:/DefaultTiddlers" autoHeight="yes"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |
|
|<$link to="$:/DefaultTiddlers"><<lingo DefaultTiddlers/Prompt>></$link> |<<lingo DefaultTiddlers/TopHint>><br> <$edit class="tc-edit-texteditor" tiddler="$:/DefaultTiddlers" autoHeight="yes"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |
|
||||||
|<$link to="$:/language/DefaultNewTiddlerTitle"><<lingo NewTiddler/Title/Prompt>></$link> |<$edit-text tiddler="$:/language/DefaultNewTiddlerTitle" default="" tag="input"/> |
|
|<$link to="$:/language/DefaultNewTiddlerTitle"><<lingo NewTiddler/Title/Prompt>></$link> |<$edit-text tiddler="$:/language/DefaultNewTiddlerTitle" default="" tag="input"/> |
|
||||||
|<$link to="$:/config/NewJournal/Title"><<lingo NewJournal/Title/Prompt>></$link> |<$edit-text tiddler="$:/config/NewJournal/Title" default="" tag="input"/> |
|
|<$link to="$:/config/NewJournal/Title"><<lingo NewJournal/Title/Prompt>></$link> |<$edit-text tiddler="$:/config/NewJournal/Title" default="" tag="input"/> |
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
title: $:/core/ui/ControlPanel/ViewTemplateSubtitle
|
|
||||||
tags: $:/tags/ControlPanel/Cascades
|
|
||||||
caption: {{$:/language/ControlPanel/ViewTemplateSubtitle/Caption}}
|
|
||||||
|
|
||||||
\define lingo-base() $:/language/ControlPanel/ViewTemplateSubtitle/
|
|
||||||
|
|
||||||
<<lingo Hint>>
|
|
||||||
|
|
||||||
{{$:/tags/ViewTemplateSubtitleFilter||$:/snippets/ListTaggedCascade}}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
title: $:/core/ui/ControlPanel/ViewTemplateTags
|
|
||||||
tags: $:/tags/ControlPanel/Cascades
|
|
||||||
caption: {{$:/language/ControlPanel/ViewTemplateTags/Caption}}
|
|
||||||
|
|
||||||
\define lingo-base() $:/language/ControlPanel/ViewTemplateTags/
|
|
||||||
|
|
||||||
<<lingo Hint>>
|
|
||||||
|
|
||||||
{{$:/tags/ViewTemplateTagsFilter||$:/snippets/ListTaggedCascade}}
|
|
||||||
@@ -13,4 +13,4 @@ caption: {{$:/language/ControlPanel/Saving/GitService/GitHub/Caption}}
|
|||||||
|<<lingo Branch>> |<$edit-text tiddler="$:/GitHub/Branch" default="main" tag="input"/> |
|
|<<lingo Branch>> |<$edit-text tiddler="$:/GitHub/Branch" default="main" tag="input"/> |
|
||||||
|<<lingo Path>> |<$edit-text tiddler="$:/GitHub/Path" default="" tag="input"/> |
|
|<<lingo Path>> |<$edit-text tiddler="$:/GitHub/Path" default="" tag="input"/> |
|
||||||
|<<lingo Filename>> |<$edit-text tiddler="$:/GitHub/Filename" default="" tag="input"/> |
|
|<<lingo Filename>> |<$edit-text tiddler="$:/GitHub/Filename" default="" tag="input"/> |
|
||||||
|<<lingo ServerURL>> |<$edit-text tiddler="$:/GitHub/ServerURL" default="https://api.github.com" tag="input" type="url"/> |
|
|<<lingo ServerURL>> |<$edit-text tiddler="$:/GitHub/ServerURL" default="https://api.github.com" tag="input"/> |
|
||||||
@@ -13,4 +13,4 @@ caption: {{$:/language/ControlPanel/Saving/GitService/GitLab/Caption}}
|
|||||||
|<<lingo Branch>> |<$edit-text tiddler="$:/GitLab/Branch" default="master" tag="input"/> |
|
|<<lingo Branch>> |<$edit-text tiddler="$:/GitLab/Branch" default="master" tag="input"/> |
|
||||||
|<<lingo Path>> |<$edit-text tiddler="$:/GitLab/Path" default="" tag="input"/> |
|
|<<lingo Path>> |<$edit-text tiddler="$:/GitLab/Path" default="" tag="input"/> |
|
||||||
|<<lingo Filename>> |<$edit-text tiddler="$:/GitLab/Filename" default="" tag="input"/> |
|
|<<lingo Filename>> |<$edit-text tiddler="$:/GitLab/Filename" default="" tag="input"/> |
|
||||||
|<<lingo ServerURL>> |<$edit-text tiddler="$:/GitLab/ServerURL" default="https://gitlab.com/api/v4" tag="input" type="url"/> |
|
|<<lingo ServerURL>> |<$edit-text tiddler="$:/GitLab/ServerURL" default="https://gitlab.com/api/v4" tag="input"/> |
|
||||||
@@ -34,7 +34,7 @@ http://$(userName)$.tiddlyspot.com/$path$/
|
|||||||
|
|
||||||
''<<lingo Advanced/Heading>>''
|
''<<lingo Advanced/Heading>>''
|
||||||
|
|
||||||
|<<lingo ServerURL>> |<$edit-text tiddler="$:/UploadURL" default="" tag="input" type="url"/> |
|
|<<lingo ServerURL>> |<$edit-text tiddler="$:/UploadURL" default="" tag="input"/> |
|
||||||
|<<lingo Filename>> |<$edit-text tiddler="$:/UploadFilename" default="index.html" tag="input"/> |
|
|<<lingo Filename>> |<$edit-text tiddler="$:/UploadFilename" default="index.html" tag="input"/> |
|
||||||
|<<lingo UploadDir>> |<$edit-text tiddler="$:/UploadDir" default="." tag="input"/> |
|
|<<lingo UploadDir>> |<$edit-text tiddler="$:/UploadDir" default="." tag="input"/> |
|
||||||
|<<lingo BackupDir>> |<$edit-text tiddler="$:/UploadBackupDir" default="." tag="input"/> |
|
|<<lingo BackupDir>> |<$edit-text tiddler="$:/UploadBackupDir" default="." tag="input"/> |
|
||||||
|
|||||||
@@ -13,4 +13,4 @@ caption: {{$:/language/ControlPanel/Saving/GitService/Gitea/Caption}}
|
|||||||
|<<lingo Branch>> |<$edit-text tiddler="$:/Gitea/Branch" default="master" tag="input"/> |
|
|<<lingo Branch>> |<$edit-text tiddler="$:/Gitea/Branch" default="master" tag="input"/> |
|
||||||
|<<lingo Path>> |<$edit-text tiddler="$:/Gitea/Path" default="" tag="input"/> |
|
|<<lingo Path>> |<$edit-text tiddler="$:/Gitea/Path" default="" tag="input"/> |
|
||||||
|<<lingo Filename>> |<$edit-text tiddler="$:/Gitea/Filename" default="" tag="input"/> |
|
|<<lingo Filename>> |<$edit-text tiddler="$:/Gitea/Filename" default="" tag="input"/> |
|
||||||
|<<lingo ServerURL>> |<$edit-text tiddler="$:/Gitea/ServerURL" default="https://gitea/api/v1" tag="input" type="url"/> |
|
|<<lingo ServerURL>> |<$edit-text tiddler="$:/Gitea/ServerURL" default="https://gitea/api/v1" tag="input"/> |
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
title: $:/core/ui/ControlPanel/SocialCard
|
|
||||||
tags: $:/tags/ControlPanel/Advanced
|
|
||||||
caption: {{$:/language/ControlPanel/SocialCard/Caption}}
|
|
||||||
|
|
||||||
\define lingo-base() $:/language/ControlPanel/
|
|
||||||
|
|
||||||
<<lingo SocialCard/Hint>>
|
|
||||||
|
|
||||||
|<$link to="$:/SiteTitle"><<lingo Basics/Title/Prompt>></$link> |<$edit-text tiddler="$:/SiteTitle" default="" tag="input"/> |
|
|
||||||
|<$link to="$:/SiteSubtitle"><<lingo Basics/Subtitle/Prompt>></$link> |<$edit-text tiddler="$:/SiteSubtitle" default="" tag="input"/> |
|
|
||||||
|<$link to="$:/SiteDomain"><<lingo SocialCard/Domain/Prompt>></$link> |<$edit-text tiddler="$:/SiteDomain" default="" tag="input" type="url"/> |
|
|
||||||
|<$link to="$:/SiteUrl"><<lingo SocialCard/Url/Prompt>></$link> |<$edit-text tiddler="$:/SiteUrl" default="" tag="input" type="url"/> |
|
|
||||||
|<$link to="$:/SitePreviewUrl"><<lingo SocialCard/PreviewUrl/Prompt>></$link> |<$edit-text tiddler="$:/SitePreviewUrl" default="" tag="input" type="url"/> |
|
|
||||||
|
|
||||||
<%if [[$:/SitePreviewUrl]get[text]else[]!is[blank]] %>
|
|
||||||
<div>
|
|
||||||
<div>
|
|
||||||
<<lingo SocialCard/PreviewUrl/Preview>>
|
|
||||||
</div>
|
|
||||||
<img src={{$:/SitePreviewUrl}}/>
|
|
||||||
</div>
|
|
||||||
<%endif%>
|
|
||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/bold
|
icon: $:/core/images/bold
|
||||||
caption: {{$:/language/Buttons/Bold/Caption}}
|
caption: {{$:/language/Buttons/Bold/Caption}}
|
||||||
description: {{$:/language/Buttons/Bold/Hint}}
|
description: {{$:/language/Buttons/Bold/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((bold))
|
shortcuts: ((bold))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/excise
|
icon: $:/core/images/excise
|
||||||
caption: {{$:/language/Buttons/Excise/Caption}}
|
caption: {{$:/language/Buttons/Excise/Caption}}
|
||||||
description: {{$:/language/Buttons/Excise/Hint}}
|
description: {{$:/language/Buttons/Excise/Hint}}
|
||||||
condition: [<targetTiddler>type[]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]] +[first[]]
|
condition: [<targetTiddler>type[]] [<targetTiddler>type[text/vnd.tiddlywiki]] +[first[]]
|
||||||
shortcuts: ((excise))
|
shortcuts: ((excise))
|
||||||
dropdown: $:/core/ui/EditorToolbar/excise-dropdown
|
dropdown: $:/core/ui/EditorToolbar/excise-dropdown
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/heading-1
|
icon: $:/core/images/heading-1
|
||||||
caption: {{$:/language/Buttons/Heading1/Caption}}
|
caption: {{$:/language/Buttons/Heading1/Caption}}
|
||||||
description: {{$:/language/Buttons/Heading1/Hint}}
|
description: {{$:/language/Buttons/Heading1/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
button-classes: tc-text-editor-toolbar-item-start-group
|
button-classes: tc-text-editor-toolbar-item-start-group
|
||||||
shortcuts: ((heading-1))
|
shortcuts: ((heading-1))
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/heading-2
|
icon: $:/core/images/heading-2
|
||||||
caption: {{$:/language/Buttons/Heading2/Caption}}
|
caption: {{$:/language/Buttons/Heading2/Caption}}
|
||||||
description: {{$:/language/Buttons/Heading2/Hint}}
|
description: {{$:/language/Buttons/Heading2/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((heading-2))
|
shortcuts: ((heading-2))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/heading-3
|
icon: $:/core/images/heading-3
|
||||||
caption: {{$:/language/Buttons/Heading3/Caption}}
|
caption: {{$:/language/Buttons/Heading3/Caption}}
|
||||||
description: {{$:/language/Buttons/Heading3/Hint}}
|
description: {{$:/language/Buttons/Heading3/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((heading-3))
|
shortcuts: ((heading-3))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/heading-4
|
icon: $:/core/images/heading-4
|
||||||
caption: {{$:/language/Buttons/Heading4/Caption}}
|
caption: {{$:/language/Buttons/Heading4/Caption}}
|
||||||
description: {{$:/language/Buttons/Heading4/Hint}}
|
description: {{$:/language/Buttons/Heading4/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((heading-4))
|
shortcuts: ((heading-4))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/heading-5
|
icon: $:/core/images/heading-5
|
||||||
caption: {{$:/language/Buttons/Heading5/Caption}}
|
caption: {{$:/language/Buttons/Heading5/Caption}}
|
||||||
description: {{$:/language/Buttons/Heading5/Hint}}
|
description: {{$:/language/Buttons/Heading5/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((heading-5))
|
shortcuts: ((heading-5))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/heading-6
|
icon: $:/core/images/heading-6
|
||||||
caption: {{$:/language/Buttons/Heading6/Caption}}
|
caption: {{$:/language/Buttons/Heading6/Caption}}
|
||||||
description: {{$:/language/Buttons/Heading6/Hint}}
|
description: {{$:/language/Buttons/Heading6/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((heading-6))
|
shortcuts: ((heading-6))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/italic
|
icon: $:/core/images/italic
|
||||||
caption: {{$:/language/Buttons/Italic/Caption}}
|
caption: {{$:/language/Buttons/Italic/Caption}}
|
||||||
description: {{$:/language/Buttons/Italic/Hint}}
|
description: {{$:/language/Buttons/Italic/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((italic))
|
shortcuts: ((italic))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/link
|
icon: $:/core/images/link
|
||||||
caption: {{$:/language/Buttons/Link/Caption}}
|
caption: {{$:/language/Buttons/Link/Caption}}
|
||||||
description: {{$:/language/Buttons/Link/Hint}}
|
description: {{$:/language/Buttons/Link/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
button-classes: tc-text-editor-toolbar-item-start-group
|
button-classes: tc-text-editor-toolbar-item-start-group
|
||||||
shortcuts: ((link))
|
shortcuts: ((link))
|
||||||
dropdown: $:/core/ui/EditorToolbar/link-dropdown
|
dropdown: $:/core/ui/EditorToolbar/link-dropdown
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
caption: {{$:/language/Buttons/Linkify/Caption}}
|
caption: {{$:/language/Buttons/Linkify/Caption}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
description: {{$:/language/Buttons/Linkify/Hint}}
|
description: {{$:/language/Buttons/Linkify/Hint}}
|
||||||
icon: $:/core/images/linkify
|
icon: $:/core/images/linkify
|
||||||
list-before: $:/core/ui/EditorToolbar/mono-block
|
list-before: $:/core/ui/EditorToolbar/mono-block
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/list-bullet
|
icon: $:/core/images/list-bullet
|
||||||
caption: {{$:/language/Buttons/ListBullet/Caption}}
|
caption: {{$:/language/Buttons/ListBullet/Caption}}
|
||||||
description: {{$:/language/Buttons/ListBullet/Hint}}
|
description: {{$:/language/Buttons/ListBullet/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((list-bullet))
|
shortcuts: ((list-bullet))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/list-number
|
icon: $:/core/images/list-number
|
||||||
caption: {{$:/language/Buttons/ListNumber/Caption}}
|
caption: {{$:/language/Buttons/ListNumber/Caption}}
|
||||||
description: {{$:/language/Buttons/ListNumber/Hint}}
|
description: {{$:/language/Buttons/ListNumber/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((list-number))
|
shortcuts: ((list-number))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/mono-block
|
icon: $:/core/images/mono-block
|
||||||
caption: {{$:/language/Buttons/MonoBlock/Caption}}
|
caption: {{$:/language/Buttons/MonoBlock/Caption}}
|
||||||
description: {{$:/language/Buttons/MonoBlock/Hint}}
|
description: {{$:/language/Buttons/MonoBlock/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
button-classes: tc-text-editor-toolbar-item-start-group
|
button-classes: tc-text-editor-toolbar-item-start-group
|
||||||
shortcuts: ((mono-block))
|
shortcuts: ((mono-block))
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/mono-line
|
icon: $:/core/images/mono-line
|
||||||
caption: {{$:/language/Buttons/MonoLine/Caption}}
|
caption: {{$:/language/Buttons/MonoLine/Caption}}
|
||||||
description: {{$:/language/Buttons/MonoLine/Hint}}
|
description: {{$:/language/Buttons/MonoLine/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((mono-line))
|
shortcuts: ((mono-line))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/picture
|
icon: $:/core/images/picture
|
||||||
caption: {{$:/language/Buttons/Picture/Caption}}
|
caption: {{$:/language/Buttons/Picture/Caption}}
|
||||||
description: {{$:/language/Buttons/Picture/Hint}}
|
description: {{$:/language/Buttons/Picture/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((picture))
|
shortcuts: ((picture))
|
||||||
dropdown: $:/core/ui/EditorToolbar/picture-dropdown
|
dropdown: $:/core/ui/EditorToolbar/picture-dropdown
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/quote
|
icon: $:/core/images/quote
|
||||||
caption: {{$:/language/Buttons/Quote/Caption}}
|
caption: {{$:/language/Buttons/Quote/Caption}}
|
||||||
description: {{$:/language/Buttons/Quote/Hint}}
|
description: {{$:/language/Buttons/Quote/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((quote))
|
shortcuts: ((quote))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/strikethrough
|
icon: $:/core/images/strikethrough
|
||||||
caption: {{$:/language/Buttons/Strikethrough/Caption}}
|
caption: {{$:/language/Buttons/Strikethrough/Caption}}
|
||||||
description: {{$:/language/Buttons/Strikethrough/Hint}}
|
description: {{$:/language/Buttons/Strikethrough/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((strikethrough))
|
shortcuts: ((strikethrough))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/subscript
|
icon: $:/core/images/subscript
|
||||||
caption: {{$:/language/Buttons/Subscript/Caption}}
|
caption: {{$:/language/Buttons/Subscript/Caption}}
|
||||||
description: {{$:/language/Buttons/Subscript/Hint}}
|
description: {{$:/language/Buttons/Subscript/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((subscript))
|
shortcuts: ((subscript))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/superscript
|
icon: $:/core/images/superscript
|
||||||
caption: {{$:/language/Buttons/Superscript/Caption}}
|
caption: {{$:/language/Buttons/Superscript/Caption}}
|
||||||
description: {{$:/language/Buttons/Superscript/Hint}}
|
description: {{$:/language/Buttons/Superscript/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((superscript))
|
shortcuts: ((superscript))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
caption: {{$:/language/Buttons/Transcludify/Caption}}
|
caption: {{$:/language/Buttons/Transcludify/Caption}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
description: {{$:/language/Buttons/Transcludify/Hint}}
|
description: {{$:/language/Buttons/Transcludify/Hint}}
|
||||||
icon: $:/core/images/transcludify
|
icon: $:/core/images/transcludify
|
||||||
list-before: $:/core/ui/EditorToolbar/mono-block
|
list-before: $:/core/ui/EditorToolbar/mono-block
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ tags: $:/tags/EditorToolbar
|
|||||||
icon: $:/core/images/underline
|
icon: $:/core/images/underline
|
||||||
caption: {{$:/language/Buttons/Underline/Caption}}
|
caption: {{$:/language/Buttons/Underline/Caption}}
|
||||||
description: {{$:/language/Buttons/Underline/Hint}}
|
description: {{$:/language/Buttons/Underline/Hint}}
|
||||||
condition: [<targetTiddler>!has[type]] [<targetTiddler>get[type]prefix[text/vnd.tiddlywiki]]
|
condition: [<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]
|
||||||
shortcuts: ((underline))
|
shortcuts: ((underline))
|
||||||
|
|
||||||
<$action-sendmessage
|
<$action-sendmessage
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
title: $:/core/ui/KeyboardShortcuts/open-control-panel
|
|
||||||
tags: $:/tags/KeyboardShortcut
|
|
||||||
key: ((open-control-panel))
|
|
||||||
|
|
||||||
\whitespace trim
|
|
||||||
<$navigator story="$:/StoryList" history="$:/HistoryList">
|
|
||||||
<$action-navigate $to="$:/ControlPanel" $scroll="yes"/>
|
|
||||||
</$navigator>
|
|
||||||
@@ -55,7 +55,7 @@ tags: $:/tags/SideBarSegment
|
|||||||
<$macrocall $name="keyboard-driven-input" tiddler=<<editTiddler>> storeTitle=<<searchTiddler>>
|
<$macrocall $name="keyboard-driven-input" tiddler=<<editTiddler>> storeTitle=<<searchTiddler>>
|
||||||
selectionStateTitle=<<searchListState>> refreshTitle="$:/temp/search/refresh" type="search"
|
selectionStateTitle=<<searchListState>> refreshTitle="$:/temp/search/refresh" type="search"
|
||||||
tag="input" focus={{$:/config/Search/AutoFocus}} focusPopup=<<qualify "$:/state/popup/search-dropdown">>
|
tag="input" focus={{$:/config/Search/AutoFocus}} focusPopup=<<qualify "$:/state/popup/search-dropdown">>
|
||||||
class="tc-tiny-gap-right tc-popup-handle" filterMinLength={{$:/config/Search/MinLength}} inputCancelActions=<<cancel-search-actions>>
|
class="tc-popup-handle" filterMinLength={{$:/config/Search/MinLength}} inputCancelActions=<<cancel-search-actions>>
|
||||||
inputAcceptActions=<<input-accept-actions>> inputAcceptVariantActions=<<input-accept-variant-actions>> cancelPopups="yes"
|
inputAcceptActions=<<input-accept-actions>> inputAcceptVariantActions=<<input-accept-variant-actions>> cancelPopups="yes"
|
||||||
configTiddlerFilter="[[$:/state/search/currentTab]!is[missing]get[text]] ~[{$:/config/SearchResults/Default}]"/>
|
configTiddlerFilter="[[$:/state/search/currentTab]!is[missing]get[text]] ~[{$:/config/SearchResults/Default}]"/>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ title: $:/core/ui/TagTemplate
|
|||||||
colour={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}}
|
colour={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/TiddlerColourFilter]!is[draft]get[text]] }}}
|
||||||
palette={{$:/palette}}
|
palette={{$:/palette}}
|
||||||
element-tag="$button"
|
element-tag="$button"
|
||||||
element-attributes="""popup=<<qualify "$:/state/popup/tag">> dragFilter="[subfilter{$:/core/config/TagPillDragFilter}]" tag='span'"""
|
element-attributes="""popup=<<qualify "$:/state/popup/tag">> dragFilter="[all[current]tagging[]]" tag='span'"""
|
||||||
/>
|
/>
|
||||||
<$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes" class="tc-drop-down">
|
<$reveal state=<<qualify "$:/state/popup/tag">> type="popup" position="below" animate="yes" class="tc-drop-down">
|
||||||
<$set name="tv-show-missing-links" value="yes">
|
<$set name="tv-show-missing-links" value="yes">
|
||||||
|
|||||||
@@ -13,8 +13,7 @@ title: $:/core/ui/TestCaseTemplate
|
|||||||
testActions="Actions"
|
testActions="Actions"
|
||||||
testHideIfPass=<<hideIfPass>>
|
testHideIfPass=<<hideIfPass>>
|
||||||
>
|
>
|
||||||
<$data $compound-filter={{!!import-compound}}/>
|
|
||||||
<$data $compound-tiddler=<<currentTiddler>>/>
|
<$data $compound-tiddler=<<currentTiddler>>/>
|
||||||
<%if [{!!description}!is[blank]] %><$data title="Description" text={{!!description}}/><%endif%>
|
<$data title="Description" text={{!!description}}/>
|
||||||
</$testcase>
|
</$testcase>
|
||||||
</$let>
|
</$let>
|
||||||
|
|||||||
@@ -1,26 +1,23 @@
|
|||||||
title: $:/core/ui/testcases/DefaultTemplate
|
title: $:/core/ui/testcases/DefaultTemplate
|
||||||
code-body: yes
|
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
|
|
||||||
\function tf.state() "$:/state/testcase"
|
|
||||||
|
|
||||||
\procedure linkcatcherActions()
|
\procedure linkcatcherActions()
|
||||||
<%if [<navigateTo>has[title]] %>
|
<%if [<navigateTo>has[title]] %>
|
||||||
<$action-setfield $tiddler=<<tf.state>> text=<<navigateTo>>/>
|
<$qualify title=<<state>> name="qualifiedState">
|
||||||
|
<$action-setfield $tiddler=<<qualifiedState>> text=<<navigateTo>>/>
|
||||||
|
</$qualify>
|
||||||
<%endif%>
|
<%endif%>
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\procedure testcase-header()
|
<$let
|
||||||
|
state={{{ [<qualify "$:/state/testcase">] }}}
|
||||||
|
>
|
||||||
|
<div class="tc-test-case-wrapper">
|
||||||
<div class="tc-test-case-header">
|
<div class="tc-test-case-header">
|
||||||
<h2>
|
<h2>
|
||||||
<$genesis $type={{{ [<linkTarget>!match[]then[$link]else[span]] }}} to=<<testcaseTiddler>>>
|
<$genesis $type={{{ [<linkTarget>!match[]then[$link]else[span]] }}} to=<<testcaseTiddler>>>
|
||||||
<%if [<testResult>!match[]] %>
|
<%if [<testResult>!match[]] %>
|
||||||
<span class={{{ tc-test-case-result-icon
|
<span class={{{ tc-test-case-result-icon [<testResult>!match[fail]then[tc-test-case-result-icon-pass]] [<testResult>match[fail]then[tc-test-case-result-icon-fail]] +[join[ ]] }}}>
|
||||||
[<testResult>!match[fail]then[tc-test-case-result-icon-pass]]
|
|
||||||
[<testResult>match[fail]then[tc-test-case-result-icon-fail]]
|
|
||||||
+[join[ ]] }}}
|
|
||||||
>
|
|
||||||
<%if [<testResult>!match[fail]] %>
|
<%if [<testResult>!match[fail]] %>
|
||||||
{{$:/core/images/done-button}}
|
{{$:/core/images/done-button}}
|
||||||
<%else%>
|
<%else%>
|
||||||
@@ -31,14 +28,7 @@ code-body: yes
|
|||||||
<$view tiddler="Description" mode="inline"/>
|
<$view tiddler="Description" mode="inline"/>
|
||||||
</$genesis>
|
</$genesis>
|
||||||
<span class="tc-test-case-toolbar">
|
<span class="tc-test-case-toolbar">
|
||||||
<<testcase-toolbar>>
|
<$button popup=`$(state)$-more`
|
||||||
</span>
|
|
||||||
</h2>
|
|
||||||
</div>
|
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure testcase-toolbar()
|
|
||||||
<$button popup=`$(tf.state)$-more`
|
|
||||||
tooltip={{$:/language/Buttons/More/Hint}}
|
tooltip={{$:/language/Buttons/More/Hint}}
|
||||||
aria-label={{$:/language/Buttons/More/Caption}}
|
aria-label={{$:/language/Buttons/More/Caption}}
|
||||||
class="tc-btn-invisible"
|
class="tc-btn-invisible"
|
||||||
@@ -51,25 +41,25 @@ code-body: yes
|
|||||||
tv-config-toolbar-text="yes"
|
tv-config-toolbar-text="yes"
|
||||||
tv-config-toolbar-class="tc-btn-invisible"
|
tv-config-toolbar-class="tc-btn-invisible"
|
||||||
>
|
>
|
||||||
<$reveal state=`$(tf.state)$-more` type="popup" position="belowleft" animate="yes">
|
<$reveal state=`$(state)$-more` type="popup" position="belowleft" animate="yes">
|
||||||
<div class="tc-drop-down">
|
<div class="tc-drop-down">
|
||||||
<$list filter="[all[shadows+tiddlers]tag[$:/tags/TestCase/Actions]!has[draft.of]]"
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/TestCase/Actions]!has[draft.of]]"
|
||||||
variable="listItem"
|
variable="listItem"
|
||||||
>
|
>
|
||||||
<$transclude $tiddler=<<listItem>> $mode="inline"/>
|
<$transclude tiddler=<<listItem>> mode="inline"/>
|
||||||
</$list>
|
</$list>
|
||||||
</div>
|
</div>
|
||||||
</$reveal>
|
</$reveal>
|
||||||
</$let>
|
</$let>
|
||||||
\end
|
</span>
|
||||||
|
</h2>
|
||||||
\procedure testcase-narrative()
|
|
||||||
<div class="tc-test-case-narrative">
|
|
||||||
<$transclude $tiddler="Narrative" $mode="block"/>
|
|
||||||
</div>
|
</div>
|
||||||
\end
|
<%if [[Narrative]is[tiddler]] %>
|
||||||
|
<div class="tc-test-case-narrative">
|
||||||
\procedure testcase-fail()
|
<$transclude $tiddler="Narrative" mode="block"/>
|
||||||
|
</div>
|
||||||
|
<%endif%>
|
||||||
|
<%if [<testResult>match[fail]] %>
|
||||||
<div class="tc-test-case-result-fail">
|
<div class="tc-test-case-result-fail">
|
||||||
<div class="tc-test-case-result-fail-header">
|
<div class="tc-test-case-result-fail-header">
|
||||||
TEST FAILED
|
TEST FAILED
|
||||||
@@ -78,72 +68,24 @@ code-body: yes
|
|||||||
<$diff-text source=<<expectedHTML>> dest=<<outputHTML>>/>
|
<$diff-text source=<<expectedHTML>> dest=<<outputHTML>>/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
\end
|
<%endif%>
|
||||||
|
<div class="tc-test-case-panes">
|
||||||
\procedure testcase-output-wikified()
|
<div class="tc-test-case-source">
|
||||||
|
<$macrocall $name="tabs" tabsList="[all[tiddlers]sort[]] -[prefix<state>] -Description -Narrative -Output Output +[putfirst[]] -[has[plugin-type]]" state=<<state>> default="Output" template="$:/core/ui/testcases/DefaultTemplate/SourceTabs"/>
|
||||||
|
</div>
|
||||||
|
<div class="tc-test-case-divider">
|
||||||
|
</div>
|
||||||
|
<div class="tc-test-case-output">
|
||||||
|
<%if [<displayFormat>!match[]else[wikitext]match[plaintext]] %>
|
||||||
|
<pre><$view tiddler="Output" format="plainwikified" mode="block"/></pre>
|
||||||
|
<%else%>
|
||||||
<$linkcatcher actions=<<linkcatcherActions>>>
|
<$linkcatcher actions=<<linkcatcherActions>>>
|
||||||
<$tiddler tiddler="Output">
|
<$tiddler tiddler="Output">
|
||||||
<$transclude $tiddler="Output" $mode="block"/>
|
<$transclude $tiddler="Output" $mode="block"/>
|
||||||
</$tiddler>
|
</$tiddler>
|
||||||
</$linkcatcher>
|
</$linkcatcher>
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure testcase-output()
|
|
||||||
<div class="tc-test-case-output">
|
|
||||||
<%if [<displayFormat>!match[]else[wikitext]match[plaintext]] %>
|
|
||||||
<pre><$view tiddler="Output" format="plainwikified" mode="block"/></pre>
|
|
||||||
<%else%>
|
|
||||||
<<testcase-output-wikified>>
|
|
||||||
<%endif%>
|
<%endif%>
|
||||||
</div>
|
</div>
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure testcase-tabsList()
|
|
||||||
[all[tiddlers]sort[]] Output +[putfirst[]]
|
|
||||||
-Description
|
|
||||||
-Narrative
|
|
||||||
-[[$:/temp/testcase/draft-title]]
|
|
||||||
-[has[plugin-type]]
|
|
||||||
-[prefix<tf.state>]
|
|
||||||
-[prefix[$:/state/popup/export]]
|
|
||||||
-[prefix[$:/HistoryList]]
|
|
||||||
-[prefix[$:/StoryList]]
|
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure testcase-source()
|
|
||||||
<div class="tc-test-case-source">
|
|
||||||
<$macrocall $name="tabs"
|
|
||||||
tabsList=<<testcase-tabsList>>
|
|
||||||
explicitState=<<tf.state>>
|
|
||||||
default="Output"
|
|
||||||
template="$:/core/ui/testcases/DefaultTemplate/SourceTabs"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure testcase-panes()
|
|
||||||
<div class="tc-test-case-panes">
|
|
||||||
<<testcase-source>>
|
|
||||||
<div class="tc-test-case-divider"></div>
|
|
||||||
<<testcase-output>>
|
|
||||||
</div>
|
</div>
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure testcase-body()
|
|
||||||
<div class="tc-test-case-wrapper">
|
|
||||||
<<testcase-header>>
|
|
||||||
<$let testcase-source-state = <<tf.state>>>
|
|
||||||
<$navigator story="$:/StoryList" history="$:/HistoryList">
|
|
||||||
<%if [[Narrative]is[tiddler]] %>
|
|
||||||
<<testcase-narrative>>
|
|
||||||
<%endif%>
|
|
||||||
<%if [<testResult>match[fail]] %>
|
|
||||||
<<testcase-fail>>
|
|
||||||
<%endif%>
|
|
||||||
<<testcase-panes>>
|
|
||||||
</$navigator>
|
|
||||||
</$let>
|
</$let>
|
||||||
</div>
|
|
||||||
\end
|
|
||||||
|
|
||||||
<<testcase-body>>
|
|
||||||
@@ -1,22 +1,6 @@
|
|||||||
title: $:/core/ui/testcases/DefaultTemplate/SourceTabs
|
title: $:/core/ui/testcases/DefaultTemplate/SourceTabs
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
|
|
||||||
\procedure testcaseNewTitle() $:/temp/testcase/draft-title
|
|
||||||
|
|
||||||
\procedure saveActions()
|
|
||||||
<$action-setfield $tiddler=<<currentTab>> $field="draft.title" $value=<<newTitle>>/>
|
|
||||||
<$action-sendmessage $message="tm-save-tiddler" $param=<<title>> />
|
|
||||||
<$action-setfield $tiddler=<<testcase-source-state>> text=<<newTitle>>/>
|
|
||||||
<$action-deletetiddler $tiddler=<<testcaseNewTitle>>/>
|
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure saveButton(title, newTitle)
|
|
||||||
<$button class="tc-btn-invisible tc-test-case-save-button tc-small-gap-left" actions=<<saveActions>> disabled={{{ [<testcaseNewTitle>!has[text]then[yes]] }}}>
|
|
||||||
{{$:/core/images/done-button}}
|
|
||||||
</$button>
|
|
||||||
\end
|
|
||||||
|
|
||||||
\procedure body()
|
\procedure body()
|
||||||
<$list filter="[<currentTab>fields[]] -text +[limit[1]]" variable="ignore">
|
<$list filter="[<currentTab>fields[]] -text +[limit[1]]" variable="ignore">
|
||||||
<table class="tc-field-table">
|
<table class="tc-field-table">
|
||||||
@@ -27,12 +11,7 @@ title: $:/core/ui/testcases/DefaultTemplate/SourceTabs
|
|||||||
<$text text=<<fieldName>>/>
|
<$text text=<<fieldName>>/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<%if [<fieldName>match[draft.title]] %>
|
|
||||||
<$edit-text class="tc-edit-texteditor tc-max-width-80" tiddler=<<testcaseNewTitle>> focus="yes" tag="input"/>
|
|
||||||
<$macrocall $name="saveButton" newTitle={{{ [<testcaseNewTitle>get[text]] }}} title=<<currentTab>>/>
|
|
||||||
<%else%>
|
|
||||||
<$view tiddler=<<currentTab>> field=<<fieldName>>/>
|
<$view tiddler=<<currentTab>> field=<<fieldName>>/>
|
||||||
<%endif%>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</$list>
|
</$list>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
title: $:/core/ui/testcases/actions/Export
|
title: $:/core/ui/testcases/actions/Export
|
||||||
tags: $:/tags/TestCase/Actions
|
tags: $:/tags/TestCase/Actions
|
||||||
|
|
||||||
<$macrocall $name="exportButton" exportFilter="[all[tiddlers]sort[]] -[prefix[$:/state/]] -Description -Narrative -ExpectedResult -[has[plugin-type]]" lingoBase="$:/language/Buttons/ExportTiddlers/"/>
|
<$macrocall $name="exportButton" exportFilter="[all[tiddlers]sort[]] -[prefix[$:/state/]] -Description -Narrative -ExpectedResult -Output Output +[putfirst[]] -[has[plugin-type]]" lingoBase="$:/language/Buttons/ExportTiddlers/"/>
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
title: $:/core/ui/ViewTemplate/body/code
|
title: $:/core/ui/ViewTemplate/body/code
|
||||||
|
|
||||||
<$transclude $variable="copy-to-clipboard-above-right" src={{{ [<currentTiddler>get[text]] }}} />
|
|
||||||
<$codeblock code={{{ [<currentTiddler>get[text]] }}} language={{{ [<currentTiddler>get[type]else[text/vnd.tiddlywiki]] }}}/>
|
<$codeblock code={{{ [<currentTiddler>get[text]] }}} language={{{ [<currentTiddler>get[type]else[text/vnd.tiddlywiki]] }}}/>
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ title: $:/core/ui/ViewTemplate/body/import
|
|||||||
\whitespace trim
|
\whitespace trim
|
||||||
<$action-confirm $message={{$:/language/Import/Listing/Cancel/Warning}} >
|
<$action-confirm $message={{$:/language/Import/Listing/Cancel/Warning}} >
|
||||||
<$action-deletetiddler $tiddler=<<currentTiddler>>/>
|
<$action-deletetiddler $tiddler=<<currentTiddler>>/>
|
||||||
<$action-deletetiddler $tiddler="$:/state/import/select-all"/>
|
|
||||||
<$action-sendmessage $message="tm-close-tiddler" title=<<currentTiddler>>/>
|
<$action-sendmessage $message="tm-close-tiddler" title=<<currentTiddler>>/>
|
||||||
</$action-confirm>
|
</$action-confirm>
|
||||||
\end
|
\end
|
||||||
|
|||||||
@@ -2,4 +2,10 @@ title: $:/core/ui/ViewTemplate/subtitle
|
|||||||
tags: $:/tags/ViewTemplate
|
tags: $:/tags/ViewTemplate
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
<$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/ViewTemplateSubtitleFilter]!is[draft]get[text]] :and[!is[blank]else[$:/core/ui/ViewTemplate/subtitle/default]] }}} />
|
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
|
||||||
|
<div class="tc-subtitle">
|
||||||
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Subtitle]!has[draft.of]]" variable="subtitleTiddler">
|
||||||
|
<$transclude tiddler=<<subtitleTiddler>> mode="inline"/><$list-join> </$list-join>
|
||||||
|
</$list>
|
||||||
|
</div>
|
||||||
|
</$reveal>
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
title: $:/core/ui/ViewTemplate/subtitle/default
|
|
||||||
|
|
||||||
\whitespace trim
|
|
||||||
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
|
|
||||||
<div class="tc-subtitle">
|
|
||||||
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Subtitle]!has[draft.of]]" variable="subtitleTiddler">
|
|
||||||
<$transclude tiddler=<<subtitleTiddler>> mode="inline"/><$list-join> </$list-join>
|
|
||||||
</$list>
|
|
||||||
</div>
|
|
||||||
</$reveal>
|
|
||||||
@@ -2,4 +2,6 @@ title: $:/core/ui/ViewTemplate/tags
|
|||||||
tags: $:/tags/ViewTemplate
|
tags: $:/tags/ViewTemplate
|
||||||
|
|
||||||
\whitespace trim
|
\whitespace trim
|
||||||
<$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/ViewTemplateTagsFilter]!is[draft]get[text]] :and[!is[blank]else[$:/core/ui/ViewTemplate/tags/default]] }}} />
|
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
|
||||||
|
<div class="tc-tags-wrapper"><$list filter="[all[current]tags[]sort[title]]" template="$:/core/ui/TagTemplate" storyview="pop"/></div>
|
||||||
|
</$reveal>
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
title: $:/core/ui/ViewTemplate/tags/default
|
|
||||||
|
|
||||||
\whitespace trim
|
|
||||||
<$reveal type="nomatch" stateTitle=<<folded-state>> text="hide" tag="div" retain="yes" animate="yes">
|
|
||||||
<div class="tc-tags-wrapper">
|
|
||||||
<$list filter="[all[current]tags[]sort[title]]" template="$:/core/ui/TagTemplate" storyview="pop"/>
|
|
||||||
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate/Tags]!has[draft.of]]">
|
|
||||||
<$transclude mode="inline"/>
|
|
||||||
</$list>
|
|
||||||
</div>
|
|
||||||
</$reveal>
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
title: $:/config/OfficialPluginLibrary
|
title: $:/config/OfficialPluginLibrary
|
||||||
tags: $:/tags/PluginLibrary
|
tags: $:/tags/PluginLibrary
|
||||||
url: https://tiddlywiki.com/library/v5.3.6/index.html
|
url: https://tiddlywiki.com/library/v5.3.5/index.html
|
||||||
caption: {{$:/language/OfficialPluginLibrary}}
|
caption: {{$:/language/OfficialPluginLibrary}}
|
||||||
|
|
||||||
{{$:/language/OfficialPluginLibrary/Hint}}
|
{{$:/language/OfficialPluginLibrary/Hint}}
|
||||||
|
|||||||
@@ -32,7 +32,6 @@ mono-line: {{$:/language/Buttons/MonoLine/Hint}}
|
|||||||
new-image: {{$:/language/Buttons/NewImage/Hint}}
|
new-image: {{$:/language/Buttons/NewImage/Hint}}
|
||||||
new-journal: {{$:/language/Buttons/NewJournal/Hint}}
|
new-journal: {{$:/language/Buttons/NewJournal/Hint}}
|
||||||
new-tiddler: {{$:/language/Buttons/NewTiddler/Hint}}
|
new-tiddler: {{$:/language/Buttons/NewTiddler/Hint}}
|
||||||
open-control-panel: {{$:/language/Buttons/OpenControlPanel/Hint}}
|
|
||||||
picture: {{$:/language/Buttons/Picture/Hint}}
|
picture: {{$:/language/Buttons/Picture/Hint}}
|
||||||
preview: {{$:/language/Buttons/Preview/Hint}}
|
preview: {{$:/language/Buttons/Preview/Hint}}
|
||||||
quote: {{$:/language/Buttons/Quote/Hint}}
|
quote: {{$:/language/Buttons/Quote/Hint}}
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
title: $:/core/config/TagPillDragFilter
|
|
||||||
text: [all[current]tagging[]] +[!is[draft]]
|
|
||||||
@@ -4,7 +4,7 @@ tags: $:/tags/ViewTemplateBodyFilter
|
|||||||
testcase: [tag[$:/tags/wiki-test-spec]type[text/vnd.tiddlywiki-multiple]then[$:/core/ui/TestCaseTemplate]] [tag[$:/tags/wiki-test-spec-failing]type[text/vnd.tiddlywiki-multiple]then[$:/core/ui/TestCaseTemplate]]
|
testcase: [tag[$:/tags/wiki-test-spec]type[text/vnd.tiddlywiki-multiple]then[$:/core/ui/TestCaseTemplate]] [tag[$:/tags/wiki-test-spec-failing]type[text/vnd.tiddlywiki-multiple]then[$:/core/ui/TestCaseTemplate]]
|
||||||
stylesheet: [tag[$:/tags/Stylesheet]then[$:/core/ui/ViewTemplate/body/rendered-plain-text]]
|
stylesheet: [tag[$:/tags/Stylesheet]then[$:/core/ui/ViewTemplate/body/rendered-plain-text]]
|
||||||
core-ui-tags: [tag[$:/tags/PageTemplate]] [tag[$:/tags/EditTemplate]] [tag[$:/tags/ViewTemplate]] [tag[$:/tags/KeyboardShortcut]] [tag[$:/tags/ImportPreview]] [tag[$:/tags/EditPreview]][tag[$:/tags/EditorToolbar]] [tag[$:/tags/Actions]] :then[[$:/core/ui/ViewTemplate/body/code]]
|
core-ui-tags: [tag[$:/tags/PageTemplate]] [tag[$:/tags/EditTemplate]] [tag[$:/tags/ViewTemplate]] [tag[$:/tags/KeyboardShortcut]] [tag[$:/tags/ImportPreview]] [tag[$:/tags/EditPreview]][tag[$:/tags/EditorToolbar]] [tag[$:/tags/Actions]] :then[[$:/core/ui/ViewTemplate/body/code]]
|
||||||
system: [prefix[$:/boot/]] [prefix[$:/core/macros]] [prefix[$:/core/save/]] [prefix[$:/core/templates/]] [prefix[$:/config/]] [prefix[$:/info/]] [prefix[$:/language/]] [prefix[$:/languages/]] [prefix[$:/snippets/]] [prefix[$:/info/]] [prefix[$:/state/]] [prefix[$:/status/]] [prefix[$:/temp/]] :and[!is[image]] :then[[$:/core/ui/ViewTemplate/body/code]]
|
system: [prefix[$:/boot/]] [prefix[$:/config/]] [prefix[$:/core/macros]] [prefix[$:/core/save/]] [prefix[$:/core/templates/]] [prefix[$:/info/]] [prefix[$:/language/]] [prefix[$:/languages/]] [prefix[$:/snippets/]] [prefix[$:/state/]] [prefix[$:/status/]] [prefix[$:/info/]] [prefix[$:/temp/]] +[!is[image]limit[1]then[$:/core/ui/ViewTemplate/body/code]]
|
||||||
code-body: [field:code-body[yes]then[$:/core/ui/ViewTemplate/body/code]]
|
code-body: [field:code-body[yes]then[$:/core/ui/ViewTemplate/body/code]]
|
||||||
import: [field:plugin-type[import]then[$:/core/ui/ViewTemplate/body/import]]
|
import: [field:plugin-type[import]then[$:/core/ui/ViewTemplate/body/import]]
|
||||||
plugin: [has[plugin-type]then[$:/core/ui/ViewTemplate/body/plugin]]
|
plugin: [has[plugin-type]then[$:/core/ui/ViewTemplate/body/plugin]]
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
title: $:/config/ViewTemplateSubtitleFilters/
|
|
||||||
tags: $:/tags/ViewTemplateSubtitleFilter
|
|
||||||
|
|
||||||
default: [[$:/core/ui/ViewTemplate/subtitle/default]]
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
title: $:/config/ViewTemplateTagsFilters/
|
|
||||||
tags: $:/tags/ViewTemplateTagsFilter
|
|
||||||
|
|
||||||
default: [[$:/core/ui/ViewTemplate/tags/default]]
|
|
||||||
@@ -28,7 +28,6 @@ list-bullet: ctrl-shift-L
|
|||||||
list-number: ctrl-shift-N
|
list-number: ctrl-shift-N
|
||||||
mono-block: ctrl-shift-M
|
mono-block: ctrl-shift-M
|
||||||
mono-line: ctrl-M
|
mono-line: ctrl-M
|
||||||
open-control-panel: ctrl-alt-C
|
|
||||||
picture: ctrl-shift-I
|
picture: ctrl-shift-I
|
||||||
preview: alt-P
|
preview: alt-P
|
||||||
quote: ctrl-Q
|
quote: ctrl-Q
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
title: $:/tags/TextEditor/Snippet
|
|
||||||
list: $:/language/Snippets/ProcedureDefinition $:/language/Snippets/FunctionDefinition $:/language/Snippets/ListByTag $:/language/Snippets/Table4x3 $:/language/Snippets/TableOfContents $:/language/Snippets/MacroDefinition
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
title: $:/tags/ViewTemplateBodyFilter
|
title: $:/tags/ViewTemplateBodyFilter
|
||||||
list: $:/config/ViewTemplateBodyFilters/testcase $:/config/ViewTemplateBodyFilters/hide-body $:/config/ViewTemplateBodyFilters/code-body $:/config/ViewTemplateBodyFilters/stylesheet $:/config/ViewTemplateBodyFilters/core-ui-advanced-search $:/config/ViewTemplateBodyFilters/core-ui-tags $:/config/ViewTemplateBodyFilters/import $:/config/ViewTemplateBodyFilters/plugin $:/config/ViewTemplateBodyFilters/system $:/config/ViewTemplateBodyFilters/default
|
list: $:/config/ViewTemplateBodyFilters/testcase $:/config/ViewTemplateBodyFilters/hide-body $:/config/ViewTemplateBodyFilters/code-body $:/config/ViewTemplateBodyFilters/stylesheet $:/config/ViewTemplateBodyFilters/core-ui-advanced-search $:/config/ViewTemplateBodyFilters/core-ui-tags $:/config/ViewTemplateBodyFilters/system $:/config/ViewTemplateBodyFilters/import $:/config/ViewTemplateBodyFilters/plugin $:/config/ViewTemplateBodyFilters/default
|
||||||
@@ -9,6 +9,6 @@ type: text/vnd.tiddlywiki
|
|||||||
<$link to={{{ [<__version__>addprefix[Release ]] }}} class="doc-from-version">{{$:/core/images/warning}} New in: <$text text=<<__version__>>/></$link>
|
<$link to={{{ [<__version__>addprefix[Release ]] }}} class="doc-from-version">{{$:/core/images/warning}} New in: <$text text=<<__version__>>/></$link>
|
||||||
\end
|
\end
|
||||||
|
|
||||||
\define .deprecated-since(version, superseded:"")
|
\define .deprecated-since(version, superseded:"TODO-Link")
|
||||||
<$link to="Deprecated - What does it mean" class="doc-deprecated-version tc-btn-invisible">{{$:/core/images/warning}} Deprecated from v<$text text=<<__version__>>/></$link> <%if [<__superseded__>else[]!match[]] %>(see <$link to=<<__superseded__>>><$text text=<<__superseded__>>/></$link>)<%endif%>
|
<$link to="Deprecated - What does it mean" class="doc-deprecated-version tc-btn-invisible">{{$:/core/images/warning}} Deprecated since: <$text text=<<__version__>>/></$link> (see <$link to=<<__superseded__>>><$text text=<<__superseded__>>/></$link>)
|
||||||
\end
|
\end
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user