seed r547 - in trunk/doc: . modules tutorial-standalone



Author: hortont
Date: Tue Dec 23 08:56:20 2008
New Revision: 547
URL: http://svn.gnome.org/viewvc/seed?rev=547&view=rev

Log:
Split out modules CSS too, update versions, use Helvetica if we have it (this makes things not fail on OS X, where we don't /have/ a "sans-serif" font link)


Modified:
   trunk/doc/modules/readline.html
   trunk/doc/runtime.html
   trunk/doc/style.css
   trunk/doc/tutorial-standalone/tutorial.html

Modified: trunk/doc/modules/readline.html
==============================================================================
--- trunk/doc/modules/readline.html	(original)
+++ trunk/doc/modules/readline.html	Tue Dec 23 08:56:20 2008
@@ -4,73 +4,11 @@
 <head>
 	<title>Seed readline Module Documentation</title>
 	<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-	<style type="text/css">
-body
-{
-	font-size: 10pt;
-	font-family: "sans-serif";
-	text-align: justify;
-}
-
-#header
-{
-	text-align: right;
-	font-size: 18pt;
-	width: 100%;
-	border-bottom: 1px solid #aaa;
-	
-}
-
-#subheader
-{
-	text-align: right;
-	font-size: 12pt;
-	width: 100%;
-}
-
-div.section
-{
-	font-size: 14pt;
-	width: 100%;
-	border-bottom: 1px solid #ccc;
-	margin-bottom: 10px;
-}
-
-p
-{
-	margin-left: 10px;
-	text-indent: 0em;
-}
-
-pre
-{
-	margin-left: 20px;
-	padding-left: 5px;
-	border-left: 2px solid #ddd;
-}
-
-div.filename
-{
-    margin-left: 25px;
-    font-weight: bold;
-    width: 70%;
-    border-bottom: 1px solid #ccc;
-}
-
-code
-{
-    font-weight: bold;
-}
-
-span.changed
-{
-    color: red;
-}
-	</style>
+	<link rel="stylesheet" href="../style.css" type="text/css" charset="utf-8" />
 </head>
 <body>
 <div id="header">Seed readline Module</div>
-<div id="subheader">v.0.1</div>
+<div id="subheader">v.0.3</div>
 <div class="section"><b>Usage</b></div>
 <p>
 In order to use functions from the readline module, you must first import it:

Modified: trunk/doc/runtime.html
==============================================================================
--- trunk/doc/runtime.html	(original)
+++ trunk/doc/runtime.html	Tue Dec 23 08:56:20 2008
@@ -8,7 +8,7 @@
 </head>
 <body>
 <div id="header">Seed Runtime</div>
-<div id="subheader">v.0.1</div>
+<div id="subheader">v.0.3</div>
 <div class="section"><b>Seed.import_namespace</b>(namespace, <i>version</i>)</div>
 <p>
 Imports functions and constructors from the given gobject-introspection <i>namespace</i>. The optional <i>version</i> parameter forces a particular version, and will throw an exception if the typelib for that version is not installed; if it is omitted, the latest version is loaded.

Modified: trunk/doc/style.css
==============================================================================
--- trunk/doc/style.css	(original)
+++ trunk/doc/style.css	Tue Dec 23 08:56:20 2008
@@ -1,7 +1,7 @@
 body
 {
 	font-size: 10pt;
-	font-family: "sans-serif";
+	font-family: "Helvetica" "sans-serif";
 	text-align: justify;
 }
 

Modified: trunk/doc/tutorial-standalone/tutorial.html
==============================================================================
--- trunk/doc/tutorial-standalone/tutorial.html	(original)
+++ trunk/doc/tutorial-standalone/tutorial.html	Tue Dec 23 08:56:20 2008
@@ -8,7 +8,7 @@
 </head>
 <body>
 <div id="header">Seed Tutorial : Standalone</div>
-<div id="subheader">v.0.1</div>
+<div id="subheader">v.0.3</div>
 <div class="section">Introduction</div>
 <p>Seed, first and foremost, provides an easily embeddable Javascript engine to developers looking for a straightforward way to create extensible applications. It also provides bindings between <a href="http://library.gnome.org/devel/gobject/stable/";>GObject</a> and the <a href="http://www.webkit.org";>WebKit</a> Javascript engine, giving new developers access to the power of the GNOME stack from a familiar and simple language, and allowing rapid prototyping of applications for hardened GNOME developers.</p>
 <p>This tutorial begins with a few brief examples, and then dives right in, following the development of a simple Seed program, from beginning to end. By the end of the tutorial, you'll have your very own tiny WebKit-based web browser, as well as a summary knowledge of the use of Seed to build Gtk+ applications.</p>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]