mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-20 08:44:52 +00:00
07df513140
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
23 lines
548 B
JavaScript
Executable File
23 lines
548 B
JavaScript
Executable File
//--
|
|
//-- 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);
|
|
};
|
|
|