User:Vegar

From wiki.alexcollins.org
Jump to: navigation, search

Contents

Pyela release plan

Pyela Build

For windows

Initial setup

  1. Install the python interpreter (v. 2.5, 2.6 or 2.7 required): http://python.org/download/windows/
  2. Install PyGTK: http://pygtk.org/downloads.html
  3. Install py2exe: http://sourceforge.net/projects/py2exe/files/ - get the .exe installer


http://www.py2exe.org/index.cgi/Py2exeAndPyGTK

(X)HTML skeletons

HTML 5

<!DOCTYPE html>
<html>
	<head>
		<title>Title of the document</title>
		<meta charset="utf-8">
		<link rel="stylesheet" type="text/css" href="main.css">
		<script src="js/jquery.js"></script>
	</head>
	<body>
		...
	</body>
</html>

XHTML 1.1

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html 
	PUBLIC "-//W3C//DTD XHTML 1.1//EN"
	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="no" lang="no">
	<head>
		<title>XHTML 1.1</title>
		<link rel="stylesheet" type="text/css" href="main.css" />
		<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
	</head>
	<body>
		...
	</body>
</html>

XHTML Basic 1.1

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
	PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"
	"http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="no" lang="no">
	<head>
		<title>XHTML Basic 1.1</title>
	</head>
	<body>
		...
	</body>
</html>

HTML 4.01 Transitional

<!DOCTYPE HTML	
	PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
	"http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
		<title>HTML 4.01 Transitional</title>
		<link rel="stylesheet" type="text/css" href="main.css" />
		<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
	</head>
	<body>
		...
	</body>
</html>

HTML 4.01 Strict

<!DOCTYPE HTML
	PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
		<title>HTML 4.01 Strict</title>
		<link rel="stylesheet" type="text/css" href="main.css" />
		<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
	</head>
	<body>
		...
	</body>
</html>

Personal tools
Namespaces
Variants
Actions
Navigation
Eternal Lands
alexcollins.org
Toolbox