[REM]remove view editor unnecessary code.

bzr revid: vme@tinyerp.com-20120801111929-1cwbovhzskpwmf9f
This commit is contained in:
Vidhin Mehta (OpenERP) 2012-08-01 16:49:29 +05:30
parent ed0d89e659
commit 19d4364884
3 changed files with 0 additions and 5 deletions

View File

@ -53,7 +53,6 @@ This module provides the core of the OpenERP Web Client.
"static/src/js/view_list.js",
"static/src/js/view_list_editable.js",
"static/src/js/view_tree.js",
"static/src/js/view_editor.js"
],
'css' : [
"static/lib/jquery.ui.bootstrap/css/custom-theme/jquery-ui-1.8.16.custom.css",

View File

@ -2467,9 +2467,6 @@ instance.web.form.FieldProgressBar = instance.web.form.AbstractField.extend({
}
});
instance.web.form.FieldTextXml = instance.web.form.AbstractField.extend({
// to replace view editor
});
instance.web.form.FieldSelection = instance.web.form.AbstractField.extend(instance.web.form.ReinitializeFieldMixin, {
template: 'FieldSelection',

View File

@ -1376,7 +1376,6 @@ instance.web.xml_to_json = function(node) {
}
instance.web.json_node_to_xml = function(node, human_readable, indent) {
// For debugging purpose, this function will convert a json node back to xml
// Maybe useful for xml view editor
indent = indent || 0;
var sindent = (human_readable ? (new Array(indent + 1).join('\t')) : ''),
r = sindent + '<' + node.tag,