view mod_candy/www_files/index.html @ 1268:854a3933cfcd

mod_muc_log_http: URL-encode room names. This allows special characters in room names to work. Ideally this escaping shouldn’t be done in the user visible content, but the module’s template system doesn’t currently allow that.
author Waqas Hussain <waqas20@gmail.com>
date Sat, 04 Jan 2014 16:50:57 -0500
parents 674d045a9623
children 991a5f74f848
line wrap: on
line source

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>Candy - Powered by Prosŏdy</title>
	<link rel="shortcut icon" href="res/img/favicon.png" type="image/gif" />
	<link rel="stylesheet" type="text/css" href="res/default.css" />

	<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
	<script type="text/javascript" src="libs/libs.min.js"></script>
	<script type="text/javascript" src="candy.min.js"></script>
	<script type="text/javascript" src="prosody.js"></script><!-- Virtual file generated by mod_candy -->
	<script type="text/javascript">
		$(document).ready(function() {
			Candy.init(Prosody.bosh_path, {
				core: { debug: false },
				view: { resources: 'res/' }
			});

			if(Prosody.anonymous) {
				Candy.Core.connect(Prosody.host);
			} else {
				Candy.Core.connect();
			}
			document.title += " " + Prosody.version;
		});
	</script>
</head>
<body>
	<div id="candy"></div>
</body>
</html>