Ticket #488: ticket488-updated.patch
| File ticket488-updated.patch, 4.1 KB (added by SaqImtiaz, 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 [[ToolbarCommands::EditToolbar]]'></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 [[ToolbarCommands::ViewToolbar]]'></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
110 110 touched: {}, 111 111 filter: {} 112 112 }, 113 listCommands: {}, 113 114 closeAll: {}, 114 115 permaview: {}, 115 116 saveChanges: {}, -
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 ToolbarCommands: "|~ViewToolbar|closeTiddler closeOthers +editTiddler > fields syncing permalink references jump|\n|~EditToolbar|+saveTiddler -cancelTiddler deleteTiddler|"}); 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 ToolbarCommands: "This shadow tiddler determines what commands are available in tiddlers' toolbars. \n\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.\n\nThe available commands are: <<listCommands>>", 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.listCommands.handler = function(place,macroName,params) 72 { 73 var text = ["|!Command|!Description|h"]; 74 for (var c in config.commands){ 75 text.push("|''"+ c +"''|"+ config.commands[c].tooltip +"|"); 76 } 77 wikify(text.join("\n"),place); 78 } 79 71 80 config.macros.allTags.handler = function(place,macroName,params) 72 81 { 73 82 var tags = store.getTags(params[0]);
