: **Category (if the current categories aren’t adequate, feel free to invent a category) **Site url **Site name, if any **Site creator’s name (that should be you - please don’t send me links to sites other than your own) **Subject matter that the site deals with **Any brief description and notes you want mentioned I will do my best to get your site info up within a day or two of your submitting it. Entries in each list are posted in alphabetical order by creators’ last name. Thanks and blessings to you. config.options.chkHttpReadOnly = false; /*** | Name:|CloseOnCancelPlugin| | Description:|Closes the tiddler if you click new tiddler then cancel. Default behaviour is to leave it open| | Version:|6.9.3| | Date:|30-Sep-2006| | Source:|http://mptw.tiddlyspot.com/#CloseOnCancelPlugin| | Author:|Simon Baird simon.baird@gmail.com| | CoreVersion:|2.1.x| ***/ //{{{ merge(config.commands.cancelTiddler,{ handler_orig_closeUnsaved: config.commands.cancelTiddler.handler, handler: function(event,src,title) { this.handler_orig_closeUnsaved(event,src,title); if (!store.tiddlerExists(title) && !store.isShadowTiddler(title)) story.closeTiddler(title,true); return false; } }); //}}} //{{{ config.options.chkHttpReadOnly = false; // means web visitors can experiment with your site by clicking edit config.views.wikified.defaultText = ""; // don’t need message when a tiddler doesn’t exist config.views.editor.defaultText = ""; // don’t need message when creating a new tiddler //}}} [[TiddlyWiki Showcase]] [[MptwEditTemplate]] /*** | Name:|HideWhenPlugin| | Description:|Allows conditional inclusion/exclusion in templates| | Version:|6.9.3| | Date:|30-Sep-2006| | Source:|http://mptw.tiddlyspot.com/#HideWhenPlugin| | Author:|Simon Baird simon.baird@gmail.com| For use in ViewTemplate and EditTemplate. Eg {{{div macro="showWhen tiddler.tags.contains(’Task’)"[[TaskToolbar]]/div}}} {{{div macro="showWhen tiddler.modifier == ’BartSimpson’"img src="bart.gif"//div}}} ***/ //{{{ merge(config.macros,{ hideWhen: { handler: function (place,macroName,params,wikifier,paramString,tiddler) { if (eval(paramString)) { removeChildren(place); place.parentNode.removeChild(place); } }}, showWhen: { handler: function (place,macroName,params,wikifier,paramString,tiddler) { config.macros.hideWhen.handler(place,macroName,params,wikifier,’!(’+paramString+’)’,tiddler); }} }); //}}} /*** |’’Name:’’|LegacyStrikeThroughPlugin| |’’Description:’’|Support for legacy (pre 2.1) strike through formatting| |’’Version:’’|1.0.1| |’’Date:’’|Jul 21, 2006| |’’Source:’’|http://www.tiddlywiki.com/#LegacyStrikeThroughPlugin| |’’Author:’’|MartinBudden (mjbudden (at) gmail (dot) com)| |’’License:’’|[[BSD open source license]]| |’’CoreVersion:’’|2.1.0| |’’Browser:’’|Firefox 1.0.4+; Firefox 1.5; InternetExplorer 6.0| ***/ //{{{ // Ensure that the LegacyStrikeThrough Plugin is only installed once. if(!version.extensions.LegacyStrikeThroughPlugin) { version.extensions.LegacyStrikeThroughPlugin = true; config.formatters.push( { name: "legacyStrikeByChar", match: "==", termRegExp: /(==)/mg, element: "strike", handler: config.formatterHelpers.createElementAndWikify }); } // end of "install only once" //}}} [[TiddlyWiki Showcase]] [[Add your TiddlyWiki to the showcase]] {{niceTable{ |!Title/link|[[Tiddlyspot’s FAQ|http://faq.tiddlyspot.com]]| |!Creator|Daniel Baird| |!Subject matter| FAQ | |!Description/notes|A nice example of a lightly modified TiddlyWiki servingbr up FAQs | |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/tiddlyspotfaq.png]]| }}} {{niceTable{ |!Title/link|[[TiddlyWiki User’s Guide|http://danielbaird.com/tiddlywikiguides/userguide-sample.html#%5B%5BTiddlyWiki%20User’s%20Guide%5D%5D]]| |!Creator|Daniel Baird| |!Subject matter|Single-page design| |!Description/notes|An example of a TW that uses SinglePagePlugin andbr substantially modifies the page layout to look morebr like a single page website.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/twusersguide.png]]| }}} /*** | Name:|MptwLayoutPlugin| | Description:|A package containing templates and css for the MonkeyPirateTiddlyWiki layout| | Version:|6.1.1| | Date:|01-Oct-2006| | Source:|http://mptw.tiddlyspot.com/#MptwLayoutPlugin| | Author:|Simon Baird simon.baird@gmail.com| | CoreVersion:|2.1.x| !Notes Presumes you have TagglyTaggingPlugin installed. ***/ //{{{ config.shadowTiddlers.GettingStarted += "\n\nSee also MonkeyPirateTiddlyWiki."; //}}} //{{{ merge(config.shadowTiddlers,{ MonkeyPirateTiddlyWiki:[ "[[MonkeyPirateTiddlyWiki|http://mptw.tiddlyspot.com]] is a distribution of [[TiddlyWiki|http://www.tiddlywiki.com/]] created by Simon Baird. See [[the web site|http://mptw.tiddlyspot.com/]] for more information.", "!!Upgrading ~MonkeyPirateTiddlyWiki", "This \"empty\" ~MonkeyPirateTiddlyWiki file comes pre-installed with the core ~MonkeyPirateTiddlyWiki plugins. You canAlso using ExcludeSearchand ExcludeList - basicallybr hiding anything that might freak out the end user.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/bcqsupport.png]]| }}} || {{niceTable{ |!Title/link|[[Pacific Northwest Amateur Astronomy Thesaurus|http://students.washington.edu/adcockm/amateurastronomythesaurus/]]| |!Creator|Michael Adcock, Sonja Sutherland and Tim Shockley| |!Subject matter|Amateur astronomy; thesaurus; grad school class project| |!Description/notes|This was created during a course project in Fall 2007 involving a brgroup of 3 graduate students (mentioned above) in the MLIS brprogram at the University of Washington Information School. brThe project assignment was to construct a thesaurus. The br~TiddlyWiki I adapted includes a fair amount of custom code and brsome layout changes that made the thesaurus construction brprocess easier. It also functions as an end-user tool, being an brinteractive version of the thesaurus.brbrThe instructor was so pleased with it that I’m planning to do anbr independent study in summer 2008 to make this into anbr instructional tool. The end result will likely be used when teachingbr future courses, and I plan to rework the custom code as proper brplugins which can be reused more easily. Ultimately I’d like to endbr up with a starter ~TiddlyThesaurus that others can repurpose forbr their use.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/amateurastronomy.GIF]]| }}} {{niceTable{ |!Title/link|[[iA SUMMIT 2008 TiddlyWiki|http://students.washington.edu/adcockm/IASummit/IASummit2008.html]]| |!Creator|Michael Adcock| |!Subject matter|Information Architecture Summit 2008| |!Description/notes|I wanted a way to easily review the conference sessions andbr decide which of the talks I was most interested in, etc. The officialbr website contained all the information, but I wanted to manipulatebr it. It includes a favorites” feature so you can easily build a custombr schedule out of the sessions you are interested in. Since it’s abr ~TiddlyWiki, the search feature is very useful as well.brbrIncludes an ~InsertStar plugin that I created based on br~InsertSmiley.I hand edited the star graphic that is displayed.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/iasummit.GIF]]| }}} {{niceTable{ |!Title/link|[[BibblyWiki|http://www.giffmex.org/bibblywiki.html]]| |!Creator|Dave Gifford| |!Subject matter|Bibliographies, notetaking, personal library organization| |!Description/notes|~BibblyWiki creates pre-formatted bibliographies and several helpfulbr indexes using the data you enter for your books. You can take brnotes on each book as well.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/bibblywiki.GIF]]| }}} {{niceTable{ |!Title/link|[[EC Moodlings|http://www.earlham.edu/~markp/moodle_dox/]]| |!Creator|Mark Pearson| |!Subject matter|Moodle and associated Instructional Technologies| |!Description/notes|This is due for a revamp. I found Alan Heckt’s FAQlist macro verybr useful, eg Moodle FAQ [[See here|http://www.earlham.edu/%7Emarkp/moodle_dox/#%5B%5BMoodle%20FAQ%5D%5D]]|...
Domain Name: TIDDLYSPOT.COM
Registry Domain ID: 337424068_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.registrar.amazon.com
Registrar URL: http://registrar.amazon.com
Updated Date: 2024-01-03T23:58:29Z
Creation Date: 2006-02-07T02:49:20Z
Registry Expiry Date: 2025-02-07T02:49:20Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: abuse@amazonaws.com
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS-1260.AWSDNS-29.ORG
Name Server: NS-1797.AWSDNS-32.CO.UK
Name Server: NS-294.AWSDNS-36.COM
Name Server: NS-796.AWSDNS-35.NET
DNSSEC: unsigned
>>> Last update of whois database: 2024-05-17T19:11:09Z <<<