Ticket #488: ticket488.patch
| File ticket488.patch, 4.1 KB (added by XavierVerges, 4 years ago) |
|---|
-
tiddlers/EditTemplate.tiddler
1 1 <div title="EditTemplate"> 2 2 <pre><!--{{{--> 3 <div class='toolbar' macro='toolbar +saveTiddler -cancelTiddler deleteTiddler'></div>3 <div class='toolbar' macro='toolbar [[ToolBars::EditTemplate]]'></div> 4 4 <div class='title' macro='view title'></div> 5 5 <div class='editor' macro='edit title'></div> 6 6 <div macro='annotations'></div> -
tiddlers/ViewTemplate.tiddler
1 1 <div title="ViewTemplate"> 2 2 <pre><!--{{{--> 3 <div class='toolbar' macro='toolbar closeTiddler closeOthers +editTiddler > fields syncing permalink references jump'></div>3 <div class='toolbar' macro='toolbar [[ToolBars::ViewTemplate]]'></div> 4 4 <div class='title' macro='view title'></div> 5 5 <div class='subtitle'><span macro='view modifier link'></span>, <span macro='view modified date'></span> (<span macro='message views.wikified.createdPrompt'></span> <span macro='view created date'></span>)</div> 6 6 <div class='tagging' macro='tagging'></div> -
js/Config.js
102 102 tagging: {}, 103 103 timeline: {}, 104 104 allTags: {}, 105 allCommands: {}, 105 106 list: { 106 107 all: {}, 107 108 missing: {}, -
js/Lingo.js
402 402 SiteUrl: "http://www.tiddlywiki.com/", 403 403 SideBarOptions: '<<search>><<closeAll>><<permaview>><<newTiddler>><<newJournal "DD MMM YYYY" "journal">><<saveChanges>><<slider chkSliderOptionsPanel OptionsPanel "options »" "Change TiddlyWiki advanced options">>', 404 404 SideBarTabs: '<<tabs txtMainTab "Timeline" "Timeline" TabTimeline "All" "All tiddlers" TabAll "Tags" "All tags" TabTags "More" "More lists" TabMore>>', 405 TabMore: '<<tabs txtMoreTab "Missing" "Missing tiddlers" TabMoreMissing "Orphans" "Orphaned tiddlers" TabMoreOrphans "Shadowed" "Shadowed tiddlers" TabMoreShadowed>>'}); 405 TabMore: '<<tabs txtMoreTab "Missing" "Missing tiddlers" TabMoreMissing "Orphans" "Orphaned tiddlers" TabMoreOrphans "Shadowed" "Shadowed tiddlers" TabMoreShadowed>>', 406 ToolBars: "|ViewTemplate|closeTiddler closeOthers +editTiddler > fields syncing permalink references jump|\n|EditTemplate|+saveTiddler -cancelTiddler deleteTiddler|\n\nUse this tiddler to customize the toolbars in tiddlers.\n\">\" will be replaced by \"more\", and will show the commands to the right when clicked.\nUse \"+\" before the command to make it the default command.\nUse \"-\" before the command to make it the cancel command.\nThe available commands are <<allCommands>>"}); 406 407 407 408 merge(config.annotations,{ 408 409 AdvancedOptions: "This shadow tiddler provides access to several advanced options", … … 436 437 TabMoreShadowed: "This shadow tiddler contains the contents of the 'Shadowed' tab in the right-hand sidebar", 437 438 TabTags: "This shadow tiddler contains the contents of the 'Tags' tab in the right-hand sidebar", 438 439 TabTimeline: "This shadow tiddler contains the contents of the 'Timeline' tab in the right-hand sidebar", 440 ToolBars: "This shadow tiddler determines what commands are available in tiddlers' toolbars", 439 441 ViewTemplate: "The HTML template in this shadow tiddler determines how tiddlers look" 440 442 }); 441 443 -
js/Macros.js
68 68 return results; 69 69 }; 70 70 71 config.macros.allCommands.handler = function(place,macroName,params) 72 { 73 var ul = createTiddlyElement(place,"ul"); 74 for(var command in config.commands) { 75 createTiddlyElement(ul,"li", null, null, command); 76 } 77 }; 78 71 79 config.macros.allTags.handler = function(place,macroName,params) 72 80 { 73 81 var tags = store.getTags(params[0]);
