//Macro: allTagsExcept\n//Author: Clint Checketts\n//Version: 1.0 Sept 8, 2005\n\nversion.extensions.allTagsExcept = {major: 0, minor: 1, revision: 0, date: new Date(2005,8,15)};\nconfig.macros.allTagsExcept = {tooltip: "Show tiddlers tagged with '%0'",noTags: "There are no tags to display"};\n\n//usage: < < allTagsExcept systemConfig systemTiddlers > > This will show all tags but those listed (e.g. systemConfig and systemTiddlers\n\nconfig.macros.allTagsExcept.handler = function(place,macroName,params)\n{\n var tags = store.getTags();\n var theTagList = createTiddlyElement(place,"ul",null,null,null);\n if(tags.length == 0)\n createTiddlyElement(theTagList,"li",null,"listTitle",this.noTags);\n for (var t=0; t<tags.length; t++) {\n var includeTag = true;\n for (var p=0;p<params.length; p++) if (tags[t][0] == params[p]) includeTag = false;\n if (includeTag){\n var theListItem =createTiddlyElement(theTagList,"li",null,null,null);\n var theTag = createTiddlyButton(theListItem,tags[t][0] + " (" + tags[t][1] + ")",this.tooltip.format([tags[t][0]]),onClickTag);\n theTag.setAttribute("tag",tags[t][0]);\n }\n }\n}
Clint is a student at [[BYU-Idaho|http://www.byui.edu]]. His homepage regarding TiddlyWiki and other topics can be found at http://checkettsweb.com.\n\nComments or questions can be posted on the [[Google Groups|http://tiddlywiki.com/#Community]] or to his email: checketts [at] gmail [dot] com.
[[TiddlyWiki-SE]]
!Download New\nYou can download this complete [[TiddlyWiki-SE]] page from [[here|http://checkettsweb.com/tw/tiddlywikise.htm]]. Right-click and select 'Save Link As...' \n\n!Insert into current TW\nTo use TWSE in a normal TiddlyWiki click edit and copy the contents of the [[TiddlyWiki