TiddlyWiki.org

Changeset 6058

Show
Ignore:
Timestamp:
24/07/08 11:09:49 (1 month ago)
Author:
MartinBudden
Message:

Removed spurious whitespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Trunk/core/js/Dom.js

    r5503 r6058  
    7171} 
    7272 
    73 //# Remove an event handler 
     73//# Remove an event handler 
    7474//# Thanks to John Resig, via QuirksMode 
    7575function removeEvent(obj,type,fn) 
  • Trunk/core/js/FileSystem.js

    r5888 r6058  
    143143        } 
    144144 
    145         //# Remove the filename, if present. Use trailing slash (i.e. "foo\bar\") if no filename. 
     145        //# Remove the filename, if present. Use trailing slash (i.e. "foo\bar\") if no filename. 
    146146        var pos = path.lastIndexOf("\\"); 
    147147        if(pos!=-1) 
  • Trunk/core/js/Http.js

    r5878 r6058  
    107107 
    108108// included for compatibility 
    109 function doHttp(type,url,data,contentType,username,password,callback,params,headers,allowCache) 
     109function doHttp(type,url,data,contentType,username,password,callback,params,headers,allowCache) 
    110110{ 
    111111        return httpReq(type,url,callback,params,headers,data,contentType,username,password,allowCache); 
  • Trunk/core/js/Import.js

    r5199 r6058  
    204204        var wizard = new Wizard(this); 
    205205        var t = wizard.getElement("txtWorkspace"); 
    206         t.value = this.value; 
     206        t.value = this.value; 
    207207        this.selectedIndex = 0; 
    208208        return false; 
     
    268268        wizard.setButtons([ 
    269269                        {caption: config.macros.importTiddlers.cancelLabel, tooltip: config.macros.importTiddlers.cancelPrompt, onClick: config.macros.importTiddlers.onCancel}, 
    270                         {caption: config.macros.importTiddlers.importLabel, tooltip: config.macros.importTiddlers.importPrompt, onClick: config.macros.importTiddlers.doImport} 
     270                        {caption: config.macros.importTiddlers.importLabel, tooltip: config.macros.importTiddlers.importPrompt, onClick: config.macros.importTiddlers.doImport} 
    271271                ]); 
    272272}; 
  • Trunk/core/js/Manager.js

    r4876 r6058  
    5353                wizard.setValue("listView",listView); 
    5454                wizard.setButtons([ 
    55                                 {caption: config.macros.plugins.removeLabel, tooltip: config.macros.plugins.removePrompt, onClick: config.macros.plugins.doRemoveTag}, 
    56                                 {caption: config.macros.plugins.deleteLabel, tooltip: config.macros.plugins.deletePrompt, onClick: config.macros.plugins.doDelete} 
     55                                {caption: config.macros.plugins.removeLabel, tooltip: config.macros.plugins.removePrompt, onClick: config.macros.plugins.doRemoveTag}, 
     56                                {caption: config.macros.plugins.deleteLabel, tooltip: config.macros.plugins.deletePrompt, onClick: config.macros.plugins.doDelete} 
    5757                        ]); 
    5858        } 
  • Trunk/core/js/Paramifiers.js

    r5919 r6058  
    110110                for(var i=0; i<v && i<tiddlers.length; i++) 
    111111                        titles.push(tiddlers[i].title); 
    112                 story.displayTiddlers(null,titles);  
     112                story.displayTiddlers(null,titles); 
    113113        } 
    114114}; 
  • Trunk/core/js/Refresh.js

    r5871 r6058  
    7474        for(var c=0; c<nodes.length; c++) { 
    7575                var e = nodes[c], type = null; 
    76                 if(e.getAttribute && (e.tagName ? e.tagName != "IFRAME" : true)) 
     76                if(e.getAttribute && (e.tagName ? e.tagName != "IFRAME" : true)) 
    7777                        type = e.getAttribute("refresh"); 
    7878                var refresher = config.refreshers[type]; 
  • Trunk/core/js/TiddlyWiki.js

    r6022 r6058  
    9999                var re = new RegExp("(^!{1,6}" + section.escapeRegExp() + "[ \t]*\n)","mg"); 
    100100                re.lastIndex = 0; 
    101                 var match = re.exec(tiddler.text); 
     101                var match = re.exec(tiddler.text); 
    102102                if(match) { 
    103103                        var t = tiddler.text.substr(match.index+match[1].length); 
  • Trunk/core/js/Upgrade.js

    r4881 r6058  
    1818                alert(me.errorCantUpgrade); 
    1919                return false; 
    20         }       
     20        } 
    2121        if(story.areAnyDirty() || store.isDirty()) { 
    2222                alert(me.errorNotSaved); 
     
    6666                w.setButtons([],me.statusReloadingCore); 
    6767                var backupPath = w.getValue("backupPath"); 
    68                 var newLoc = document.location.toString() + '?time=' + new Date().convertToYYYYMMDDHHMM() + '#upgrade:[[' + encodeURI(backupPath) + ']]'; 
     68                var newLoc = document.location.toString() + '?time=' + new Date().convertToYYYYMMDDHHMM() + '#upgrade:[[' + encodeURI(backupPath) + ']]'; 
    6969                window.setTimeout(function () {window.location = newLoc;},10); 
    7070        }; 
  • Trunk/core/js/Wikifier.js

    r5159 r6058  
    179179        var formatterMatch = this.formatter.formatterRegExp.exec(terminatorMatch ? this.source.substr(0,terminatorMatch.index) : this.source); 
    180180        while(terminatorMatch || formatterMatch) { 
    181                 //# Check for a terminator match before the next formatter match 
     181                //# Check for a terminator match before the next formatter match 
    182182                if(terminatorMatch && (!formatterMatch || terminatorMatch.index <= formatterMatch.index)) { 
    183183                        //# Output any text before the match