Files
luos/workflow/engine/xmlform/setup/upgrade.xml

37 lines
1.0 KiB
XML
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<dynaForm name="languages_ImportForm" type="xmlform" width="500px" height="" labelWidth="200px">
2014-04-21 10:21:01 -04:00
<TITLE1 type="title">
<en><![CDATA[Upgrade System]]></en>
</TITLE1>
<PM_VERSION type="edit" mode="view">
<en><![CDATA[Current Version]]></en>
</PM_VERSION>
<MAX_FILE_SIZE type="edit" mode="view">
<en><![CDATA[Maximum upload file size in bytes]]></en>
2014-04-21 10:21:01 -04:00
</MAX_FILE_SIZE>
<UPGRADE_FILENAME type="file">
<en><![CDATA[File]]></en>
</UPGRADE_FILENAME>
<UPGRADE type="button" onclick="verifyFile(this.form);">
<en><![CDATA[Upgrade]]></en>
</UPGRADE>
<!-- BTN_CANCEL type="button" onclick="cancel();">
2010-12-02 23:34:41 +00:00
<en>Cancel</en>
</BTN_CANCEL //-->
2014-04-21 10:21:01 -04:00
<JS type="javascript"><![CDATA[
2010-12-02 23:34:41 +00:00
var verifyFile = function(oForm) {
if (document.getElementById('form[UPGRADE_FILENAME]').value != '') {
oForm.submit();
}
else {
alert('@G::LoadTranslation(ID_PLEASE_SELECT_UPGRADE_FILE)');
}
};
function cancel(){
window.history.back();
}
]]></JS>
2014-04-21 10:21:01 -04:00
</dynaForm>