[geeklog-cvs] Geeklog-1.x/public_html/fckeditor/editor/dtd fck_dtd_test.html, NONE, 1.1 fck_xhtml10strict.js, NONE, 1.1 fck_xhtml10transitional.js, NONE, 1.1

Blaine Lang blaine at qs1489.pair.com
Sat Feb 9 07:54:02 EST 2008


Update of /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/dtd
In directory qs1489.pair.com:/tmp/cvs-serv26402/editor/dtd

Added Files:
	fck_dtd_test.html fck_xhtml10strict.js 
	fck_xhtml10transitional.js 
Log Message:
Upgrade to v2.5.1 of FCKeditor

--- NEW FILE: fck_xhtml10strict.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: fck_dtd_test.html ---
<!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">
<head>
	<title>DTD Test Page</title>
	<script type="text/javascript">

	// Define an object for this test page, so the assignment to FCK.DTD works
	var FCK = {} ;
	</script>
	<script type="text/javascript" src="../_source/internals/fcktools.js"></script>
	<script type="text/javascript" src="fck_xhtml10transitional.js"></script>
</head>
<body>
	<h1>
		DTD Contents
	</h1>
	<table border="1">
		<script type="text/javascript">

    alert(FCK.DTD);

for ( var p in FCK.DTD )
{
	document.write( '<tr><td><b>' + p + '</b></td><td>' ) ;

	var isFirst = true ;

	for ( var c in FCK.DTD[p] )
	{
		if ( !isFirst )
			document.write( ', ' ) ;
		isFirst = false ;

		document.write( c ) ;
	}


	document.write( '</td></tr>' ) ;
}
		</script>
	</table>
</body>
</html>

--- NEW FILE: fck_xhtml10transitional.js ---
(This appears to be a binary file; contents omitted.)




More information about the geeklog-cvs mailing list