mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-29 05:13:56 -08:00
There are still some whitespace and attribute ordering issues, but the result runs correctly.
22 lines
548 B
JavaScript
Executable file
22 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);
|
|
};
|
|
|