mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-02 01:17:00 +00:00
Revised test data
Testing against the output of cook.rb isn't satisfactory because of the bugs in it; instead we're now going to test against the tiddlywiki.com build products
This commit is contained in:
22
test/tiddlywiki.2.6.5/source/tiddlywiki/deprecated/Tiddler.js
Executable file
22
test/tiddlywiki.2.6.5/source/tiddlywiki/deprecated/Tiddler.js
Executable file
@@ -0,0 +1,22 @@
|
||||
//--
|
||||
//-- Deprecated Tiddler code
|
||||
//--
|
||||
|
||||
// @Deprecated: Use tiddlerToRssItem(tiddler,uri) instead
|
||||
Tiddler.prototype.toRssItem = function(uri)
|
||||
{
|
||||
return tiddlerToRssItem(this,uri);
|
||||
};
|
||||
|
||||
// @Deprecated: Use "<item>\n" + tiddlerToRssItem(tiddler,uri) + "\n</item>" instead
|
||||
Tiddler.prototype.saveToRss = function(uri)
|
||||
{
|
||||
return "<item>\n" + tiddlerToRssItem(this,uri) + "\n</item>";
|
||||
};
|
||||
|
||||
// @Deprecated: Use jQuery.encoding.digests.hexSha1Str instead
|
||||
Tiddler.prototype.generateFingerprint = function()
|
||||
{
|
||||
return "0x" + Crypto.hexSha1Str(this.text);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user