mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-27 22:24:43 +00:00
Move the editions into a subfolder
This commit is contained in:
90
editions/tw2/source/tiddlywiki/deprecated/Deprecated.js
Executable file
90
editions/tw2/source/tiddlywiki/deprecated/Deprecated.js
Executable file
@@ -0,0 +1,90 @@
|
||||
//--
|
||||
//-- Deprecated code
|
||||
//--
|
||||
|
||||
// @Deprecated: Use createElementAndWikify and this.termRegExp instead
|
||||
config.formatterHelpers.charFormatHelper = function(w)
|
||||
{
|
||||
w.subWikify(createTiddlyElement(w.output,this.element),this.terminator);
|
||||
};
|
||||
|
||||
// @Deprecated: Use enclosedTextHelper and this.lookaheadRegExp instead
|
||||
config.formatterHelpers.monospacedByLineHelper = function(w)
|
||||
{
|
||||
var lookaheadRegExp = new RegExp(this.lookahead,"mg");
|
||||
lookaheadRegExp.lastIndex = w.matchStart;
|
||||
var lookaheadMatch = lookaheadRegExp.exec(w.source);
|
||||
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
|
||||
var text = lookaheadMatch[1];
|
||||
if(config.browser.isIE)
|
||||
text = text.replace(/\n/g,"\r");
|
||||
createTiddlyElement(w.output,"pre",null,null,text);
|
||||
w.nextMatch = lookaheadRegExp.lastIndex;
|
||||
}
|
||||
};
|
||||
|
||||
// @Deprecated: Use <br> or <br /> instead of <<br>>
|
||||
config.macros.br = {};
|
||||
config.macros.br.handler = function(place)
|
||||
{
|
||||
createTiddlyElement(place,"br");
|
||||
};
|
||||
|
||||
// Find an entry in an array. Returns the array index or null
|
||||
// @Deprecated: Use indexOf instead
|
||||
Array.prototype.find = function(item)
|
||||
{
|
||||
var i = this.indexOf(item);
|
||||
return i == -1 ? null : i;
|
||||
};
|
||||
|
||||
// Load a tiddler from an HTML DIV. The caller should make sure to later call Tiddler.changed()
|
||||
// @Deprecated: Use store.getLoader().internalizeTiddler instead
|
||||
Tiddler.prototype.loadFromDiv = function(divRef,title)
|
||||
{
|
||||
return store.getLoader().internalizeTiddler(store,this,title,divRef);
|
||||
};
|
||||
|
||||
// Format the text for storage in an HTML DIV
|
||||
// @Deprecated Use store.getSaver().externalizeTiddler instead.
|
||||
Tiddler.prototype.saveToDiv = function()
|
||||
{
|
||||
return store.getSaver().externalizeTiddler(store,this);
|
||||
};
|
||||
|
||||
// @Deprecated: Use store.allTiddlersAsHtml() instead
|
||||
function allTiddlersAsHtml()
|
||||
{
|
||||
return store.allTiddlersAsHtml();
|
||||
}
|
||||
|
||||
// @Deprecated: Use refreshPageTemplate instead
|
||||
function applyPageTemplate(title)
|
||||
{
|
||||
refreshPageTemplate(title);
|
||||
}
|
||||
|
||||
// @Deprecated: Use story.displayTiddlers instead
|
||||
function displayTiddlers(srcElement,titles,template,unused1,unused2,animate,unused3)
|
||||
{
|
||||
story.displayTiddlers(srcElement,titles,template,animate);
|
||||
}
|
||||
|
||||
// @Deprecated: Use story.displayTiddler instead
|
||||
function displayTiddler(srcElement,title,template,unused1,unused2,animate,unused3)
|
||||
{
|
||||
story.displayTiddler(srcElement,title,template,animate);
|
||||
}
|
||||
|
||||
// @Deprecated: Use functions on right hand side directly instead
|
||||
var createTiddlerPopup = Popup.create;
|
||||
var scrollToTiddlerPopup = Popup.show;
|
||||
var hideTiddlerPopup = Popup.remove;
|
||||
|
||||
// @Deprecated: Use right hand side directly instead
|
||||
var regexpBackSlashEn = new RegExp("\\\\n","mg");
|
||||
var regexpBackSlash = new RegExp("\\\\","mg");
|
||||
var regexpBackSlashEss = new RegExp("\\\\s","mg");
|
||||
var regexpNewLine = new RegExp("\n","mg");
|
||||
var regexpCarriageReturn = new RegExp("\r","mg");
|
||||
|
||||
Reference in New Issue
Block a user