Note: An alternative skin, TW4MW (work in progress), is available from the user preferences.
User contributions
TiddlyWiki Community Wiki
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)
- 02:49, 27 August 2007 (hist) (diff) N Dev:WikifyPlain (New page: The <tt>wikifyPlain</tt> global function renders an entire tiddler as plain text. It takes one parameter, the title of the tiddler to render, and returns a string with the output.) (top)
- 02:48, 27 August 2007 (hist) (diff) N Dev:WikifyStatic (New page: The global function <tt>wikifyStatic</tt> works the same way as that the wikify method does, but instead of rendering directly into an DOM element, it returns HTML source co...) (top)
- 02:47, 27 August 2007 (hist) (diff) N Dev:Wikify (New page: The global function <tt>wikify</tt> renders TiddlyWiki source code into an Element. There are four parameters to this function: * the source code to render * the DOM element to render int...) (top)
- 02:46, 27 August 2007 (hist) (diff) N Dev:SetStylesheet (New page: The global function <tt>setStylesheet</tt> adds a custom stylesheet to the document. This replaces any stylesheet already set with the same DOM id with this function. There are two paramet...) (top)
- 02:45, 27 August 2007 (hist) (diff) N Dev:SaveChanges (New page: The global function <tt>saveChanges</tt> saves the TiddlyWiki to disk. This function takes a boolean value as its parameter; if it is true, then the TiddlyWiki is only saved if its dirty f...) (top)
- 02:45, 27 August 2007 (hist) (diff) N Dev:SaveOptionCookie (New page: The global function <tt>saveOptionCookie</tt> saves user settings in config to a cookie. You can add your own settings if you like; see the config passage for details. This function takes ...) (top)
- 02:44, 27 August 2007 (hist) (diff) N Dev:ResolveTarget (New page: The global function <tt>resolveTarget</tt> returns the real target of a DOM event. This function takes one parameter, the event in question, and returns the element.) (top)
- 02:44, 27 August 2007 (hist) (diff) N Dev:RemoveEvent (New page: The global function <tt>removeEvent</tt> removes an event listener from a DOM element. It takes three parameters: * the element * the event type to stop listening to * the function to rem...) (top)
- 02:43, 27 August 2007 (hist) (diff) N Dev:RemoveClass (New page: The global function <tt>removeClass</tt> removes a CSS class from a DOM element. It takes two parameters: * the DOM element * the class to remove) (top)
- 02:43, 27 August 2007 (hist) (diff) N Dev:RemoveChildren (New page: The <tt>removeChildren</tt> global function removes all child nodes from a DOM element. It takes one parameter, the element to remove children from, and returns no value.) (top)
- 02:42, 27 August 2007 (hist) (diff) N Dev:RefreshTiddlyLink (New page: The global function <tt>refreshTiddlyLink</tt> refreshes the status of a link already on the page. You would want to do this to update an individual link to a tiddler if that tiddler has b...) (top)
- 02:41, 27 August 2007 (hist) (diff) N Dev:HasClass (New page: The global function <tt>hasClass</tt> returns whether a DOM element belongs to a CSS class. It takes two parameters in order: * the DOM element * the class to check for) (top)
- 02:41, 27 August 2007 (hist) (diff) N Dev:GetPlainText (New page: The <tt>getPlainText</tt> returns a plain text version of the text inside a DOM element. It takes one parameter, the element to examine.) (top)
- 02:40, 27 August 2007 (hist) (diff) N Dev:GetNodeText (New page: The global function <tt>getNodeText</tt> returns the text inside a DOM element. This takes one parameter, the element to examine.) (top)
- 02:40, 27 August 2007 (hist) (diff) N Dev:GenerateRSS (New page: The global function <tt>generateRSS</tt> returns a string of a full RSS feed with the most recently changed tiddlers. This function takes no parameters; the number of items generated is go...) (top)
- 02:39, 27 August 2007 (hist) (diff) N Dev:FindWindowWidth (New page: The <tt>findWindowWidth</tt> global function returns the width of the browser window. It takes no parameters.) (top)
- 02:39, 27 August 2007 (hist) (diff) N Dev:FindWindowHeight (New page: The <tt>findWindowHeight</tt> global function returns the height of the browser window. It takes no parameters.) (top)
- 02:39, 27 August 2007 (hist) (diff) N Dev:FindScrollY (New page: The <tt>findScrollY</tt> function returns the current vertical scroll position of the page. It takes no parameters.) (top)
- 02:38, 27 August 2007 (hist) (diff) N Dev:FindScrollX (New page: The <tt>findScrollX</tt> function returns the current horizontal scroll position of the page. It takes no parameters.) (top)
- 02:38, 27 August 2007 (hist) (diff) N Dev:FindPosY (New page: The global function <tt>findPosY</tt> returns the vertical position of a DOM element on the page. It takes one parameter, the element to examine.) (top)
- 02:37, 27 August 2007 (hist) (diff) N Dev:FindPosX (New page: The global function <tt>findPosX</tt> returns the horizontal position of a DOM element on the page. It takes one parameter, the element to examine.) (top)
- 02:37, 27 August 2007 (hist) (diff) N Dev:EnsureVisible (New page: The global function <tt>ensureVisible</tt> returns the horizontal position, in pixels, required to bring a DOM element into view. It takes one parameter, the DOM element to scroll into vie...) (top)
- 02:36, 27 August 2007 (hist) (diff) N Dev:DisplayMessage (New page: The global function <tt>displayMessage</tt> displays a message in the TiddlyWiki's message area. It accepts two parameters: * a string to display * a title of a tiddler to link to This f...) (top)
- 02:35, 27 August 2007 (hist) (diff) N Dev:CreateTiddlyText (New page: The <tt>createTiddlyText</tt> global function adds a text node to an existing DOM element. It takes two parameters: * the DOM element to add the text to * the text to add This function r...) (top)
- 02:35, 27 August 2007 (hist) (diff) N Dev:CreateTiddlyLink (New page: The global function <tt>createTiddlyLink</tt> renders a link to a tiddler. This function takes five parameters: * the DOM element to render into. The link is appended to any existing cont...) (top)
- 02:33, 27 August 2007 (hist) (diff) N Dev:CreateTiddlyElement (New page: The global function <tt>createTiddlyElement</tt> creates a DOM element. This function takes five parameters: * the parent DOM element to add the new element to * the type of element to cr...) (top)
- 02:32, 27 August 2007 (hist) (diff) m Dev:Core Code Overview (→Functions)
- 02:32, 27 August 2007 (hist) (diff) N Dev:CreateTiddlyButton (New page: The global function <tt>createTiddlyButton</tt> renders a button on the page similar the ones you see in the top-right corner of a tiddler. It takes seven parameters in order: * the DOM e...)
- 02:31, 27 August 2007 (hist) (diff) N Dev:CreateTagButton (New page: The global function <tt>createTagButton</tt> renders a button that displays a list of tiddlers that belong to a certain tag. Clicking a menu item opens the tiddler. This function takes thr...) (top)
- 02:30, 27 August 2007 (hist) (diff) N Dev:CreateExternalLink (New page: The <tt>createExternalLink</tt> global function renders a link to an outside Web page. It requires two parameters: * the DOM element to render into. The link is appended to any existing c...) (top)
- 02:30, 27 August 2007 (hist) (diff) N Dev:ConvertUnicodeToUTF8 (New page: The global function <tt>convertUnicodeToUTF8 </tt>converts a string encoded in Unicode to a UTF-8 formatting. It takes one parameter, the string to convert, and returns a converted string.) (top)
- 02:29, 27 August 2007 (hist) (diff) Dev:Core Code Overview (→Functions)
- 02:27, 27 August 2007 (hist) (diff) m Dev:Core Code Overview (→Functions)
- 02:27, 27 August 2007 (hist) (diff) N Dev:ClearMessage (New page: The global function <tt>clearMessage</tt> hides the TiddlyWiki's message area from view. This function expects no parameters.) (top)
- 02:26, 27 August 2007 (hist) (diff) N Dev:BlurElement (New page: The global function <tt>blurElement</tt> removes keyboard focus from a DOM element. It takes one parameter, the DOM element to lose focus, and does not return any values.) (top)
- 02:26, 27 August 2007 (hist) (diff) m Dev:Core Code Overview (→Functions)
- 02:25, 27 August 2007 (hist) (diff) N Dev:AddEvent (New page: The <tt>addEvent</tt> global function adds an event listener to a DOM element. It takes three parameters: * the DOM element to modify. * the event to listen to. * the function to attach t...)
- 02:23, 27 August 2007 (hist) (diff) N Dev:AddClass (New page: The <tt>addClass</tt> global function adds a CSS class to a DOM element. It take two parameters: the DOM element to modify, and the name of the class to add. It does not return anything.) (top)
- 02:22, 27 August 2007 (hist) (diff) Dev:Story (updated closeTiddler link) (top)
- 02:21, 27 August 2007 (hist) (diff) m Dev:Core Code Overview (→Functions)
- 02:20, 27 August 2007 (hist) (diff) Dev:Core Code Overview (tweaked story class description)
- 02:19, 27 August 2007 (hist) (diff) N Dev:CloseTiddler (Dev:CloseTiddler moved to Dev:Story.CloseTiddler: need to disambiguate from the global function) (top)
- 02:19, 27 August 2007 (hist) (diff) m Dev:Story.CloseTiddler (Dev:CloseTiddler moved to Dev:Story.CloseTiddler: need to disambiguate from the global function) (top)
- 02:18, 27 August 2007 (hist) (diff) Dev:Core Code Overview (added global function listing)
- 17:04, 25 August 2007 (hist) (diff) N Dev:SetTiddlerTag (New page: The <tt>setTiddlerTag</tt> method of the Story class modifies a tiddler's tags. It takes three parameters: * the title of the tiddler to change * the tag to add or remove * an integer...)
- 17:03, 25 August 2007 (hist) (diff) N Dev:Story.setDirty (New page: The <tt>setDirty</tt> method of the Story class sets the dirty flag of a single tiddler, which indicates whether it contains unsaved changes. It takes two parameters: * the title of t...) (top)
- 17:02, 25 August 2007 (hist) (diff) N Dev:Story.search (New page: The <tt>search</tt> method of the Story class starts a user-visible search. It's the exact equivalent to the user typing in a search query on the page, although this method does not ch...) (top)
- 17:01, 25 August 2007 (hist) (diff) N Dev:Story.scrubTiddler (New page: The <tt>scrubTiddler</tt> method of the Story class removes all DOM ids from a tiddler on the page. It takes one parameter, a reference to an DOM element on the page, and returns nothi...) (top)
- 17:01, 25 August 2007 (hist) (diff) N Dev:Story.saveTiddler (New page: The <tt>saveTiddler</tt> method of the Story class saves changes made by the user to a tiddler. It takes two parameters: * the title of the tiddler * a boolean value indicating whethe...) (top)
- 16:58, 25 August 2007 (hist) (diff) N Dev:RefreshTiddler (New page: The <tt>refreshTiddler</tt> method of the Story class re-renders a tiddler's source code on the page. It takes three parameters: * the title of the tiddler to display * the template t...) (top)
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)

