Error Message
ERROR input ended inside '' ... ''
Error Message
ERROR input ended inside '' ... ''
Error Message
Macro 'gotoTiddler' not defined, or not allowed to call.
Error Message
Macro 'search' not defined, or not allowed to call.
Error Message
Macro 'snapshot' not defined, or not allowed to call.
Error Message
Macro 'saveAs' not defined, or not allowed to call.
Error Message
Macro 'saveAs' not defined, or not allowed to call.
<script>
place.lastChild.lastChild.firstChild.nextSibling.value=" Alt+Shift+G goto"; /* use displayMessage(place.<...>.tagName) to find the right element */
</script>
save:
or
user: <script label="X">
/*
"X" here and elsewhere means that the label is set programmatically.
Note that if
SiteMenu is displayed in Story as well as on top of the window,
only the label that was actually clicked will be refreshed.
var who=prompt("Set your username:",config.options.txtUserName);
if (!who||!who.trim().length) return;
cancelled by user
set new username
config.options.txtUserName=who;
saveOptionCookie("txtUserName");
place.innerHTML=config.options.txtUserName;
if (place.innerHTML == 'YourName') {
place.style.fontWeight='bold';
place.style.color='red';
} else {
place.style.fontWeight=
;
place.style.color=;
}
return false;
</script><script>
place.lastChild.innerHTML=config.options.txtUserName;
if (place.lastChild.innerHTML == 'YourName') {
place.lastChild.style.fontWeight='bold';
place.lastChild.style.color='red';
}
</script>
<script label="backup" key="B">
var file=document.URL;
var when=new Date().formatString('%0.%1'.format([config.zTweaks.zDateFormat,config.zTweaks.zTimeFormat.split(':').join(
)]));
var longname=file.split('/').slice(2).join('_').replace(/\.wiki$/,'.'+when+'.html');
var shortname=file.split('/').slice(4,5)+'.'+when+'.html';
/*longname=prompt('Save this wiki as ', longname);*/
document.location.href = document.URL+'?download='+shortname;
return false;
</script>