
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: fakejshint.js</h2><form method="post"><textarea name="file_content" rows="10" cols="50">// JSHINT has some GPL Compatability issues, so we are faking it out and using esprima for validation
// Based on https://github.com/jquery/esprima/blob/gh-pages/demo/validate.js which is MIT licensed

var fakeJSHINT = new function() {
	var syntax, errors;
	var that = this;
	this.data = [];
	this.convertError = function( error ){
		return {
			line: error.lineNumber,
			character: error.column,
			reason: error.description,
			code: 'E'
		};
	};
	this.parse = function( code ){
		try {
			syntax = window.esprima.parse(code, { tolerant: true, loc: true });
			errors = syntax.errors;
			if ( errors.length &gt; 0 ) {
				for ( var i = 0; i &lt; errors.length; i++) {
					var error = errors[i];
					that.data.push( that.convertError( error ) );
				}
			} else {
				that.data = [];
			}
		} catch (e) {
			that.data.push( that.convertError( e ) );
		}
	};
};

window.JSHINT = function( text ){
	fakeJSHINT.parse( text );
};
window.JSHINT.data = function(){
	return {
		errors: fakeJSHINT.data
	};
};


</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//mcneilalloys.ae/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>http://mcneilalloys.ae/post-sitemap.xml</loc>
		<lastmod>2026-09-14T07:52:48+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://mcneilalloys.ae/page-sitemap.xml</loc>
		<lastmod>2026-09-15T14:24:59+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://mcneilalloys.ae/footer-sitemap.xml</loc>
		<lastmod>2026-01-15T08:49:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://mcneilalloys.ae/category-sitemap.xml</loc>
		<lastmod>2026-09-14T07:52:48+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://mcneilalloys.ae/post_tag-sitemap.xml</loc>
		<lastmod>2026-09-14T07:52:48+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://mcneilalloys.ae/post_tag-sitemap2.xml</loc>
		<lastmod>2026-09-11T06:11:59+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>http://mcneilalloys.ae/author-sitemap.xml</loc>
		<lastmod>2023-11-06T12:35:08+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->