Commit 3e38f2ea authored by Boris Kocherov's avatar Boris Kocherov

remove github added folder

parent 76631e6b
...@@ -68,7 +68,12 @@ ...@@ -68,7 +68,12 @@
.push(function (result) { .push(function (result) {
var id, path, last_index, filename, filename_xml, ext, new_id, i; var id, path, last_index, filename, filename_xml, ext, new_id, i;
for (id in result) { for (id in result) {
if (result.hasOwnProperty(id) && !id.startsWith("http")) { if (
result.hasOwnProperty(id) &&
!id.startsWith("http") &&
!id.startsWith("/erp5_/") && //rmove meta of package
!id.startsWith("/assets/") // remove github added assets
) {
last_index = id.lastIndexOf("/") + 1; last_index = id.lastIndexOf("/") + 1;
if (last_index === id.length) { if (last_index === id.length) {
path = id || "/"; path = id || "/";
...@@ -97,8 +102,10 @@ ...@@ -97,8 +102,10 @@
} }
} }
} }
filename = new_id.split("/").join("_").split(".").join("_") + '.' + ext; filename = new_id.split("/")
filename_xml = new_id.split("/").join("_").split(".").join("_") + '.xml'; .join("_").split(".").join("_") + '.' + ext;
filename_xml = new_id.split("/")
.join("_").split(".").join("_") + '.xml';
if (!context._id_dict.hasOwnProperty(path)) { if (!context._id_dict.hasOwnProperty(path)) {
context._id_dict[path] = {}; context._id_dict[path] = {};
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment