<?php
/**
* @version $Id: contentwindow.php,v 1.1.1.1 2006/07/13 19:59:31 rcho Exp $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
require_once( '../includes/auth.php' );
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
$css = mosGetParam( $_REQUEST, 't', '' );
$iso = split( '=', _ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<base href="<?php echo($mosConfig_live_site); ?>/" />
<head>
<title>Content Preview</title>
<link rel="stylesheet" href="templates/<?php echo $css;?>/css/template_css.css" type="text/css" />
<script>
var form = window.opener.document.adminForm
var title = form.title.value;
var alltext = form.introtext.value;
if (form.fulltext) {
alltext += form.fulltext.value;
}
// do the images
var temp = new Array();
for (var i=0, n=form.imagelist.options.length; i < n; i++) {
value = form.imagelist.options[i].value;
parts = value.split( '|' );
temp[i] = '<img src="images/stories/' + parts[0] + '" align="' + parts[1] + '" border="' + parts[3] + '" alt="' + parts[2] + '" hspace="6" />';
}
var temp2 = alltext.split( '{mosimage}' );
var alltext = temp2[0];
for (var i=0, n=temp2.length-1; i < n; i++) {
alltext += temp[i] + temp2[i+1];
}
</script>
</head>
<body style="background-color:#FFFFFF">
<table align="center" width="90%" cellspacing="2" cellpadding="2" border="0">
<tr>
<td class="contentheading" colspan="2"><script>document.write(title);</script></td>
</tr>
<tr>
<script>document.write("<td valign=\"top\" height=\"90%\" colspan=\"2\">" + alltext + "</td>");</script>
</tr>
<tr>
<td align="right"><a href="#" onClick="window.close()">Close</a></td>
<td align="left"><a href="javascript:;" onClick="window.print(); return false">Print</a></td>
</tr>
</table>
</body>
</html>