[Pomp-commits] r164 - in www: . content

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Sep 22 22:28:26 CEST 2009


Author: kingaa
Date: 2009-09-22 22:28:26 +0200 (Tue, 22 Sep 2009)
New Revision: 164

Added:
   www/content/
   www/content/about.htm
   www/content/authors.htm
   www/whitestyle.css
Modified:
   www/index.php
Log:
- make the webpage pretty


Added: www/content/about.htm
===================================================================
--- www/content/about.htm	                        (rev 0)
+++ www/content/about.htm	2009-09-22 20:28:26 UTC (rev 164)
@@ -0,0 +1,29 @@
+<p><strong>pomp</strong> is built around a very general realization
+of nonlinear partially-observed Markov processes (AKA state-space
+models, nonlinear stochastic dynamical systems). One specifies a
+model's process and measurement components; the package uses these
+functions in algorithms to simulate, analyze, and fit the model to
+data.</p>
+<p>At the moment, algorithms are provided for <strong>particle
+filtering</strong> (AKA sequential importance sampling or
+sequential Monte Carlo), the <strong>likelihood maximization by
+iterated filtering (MIF)</strong> method of Ionides, Breto, and
+King (PNAS, 103:18438-18443, 2006), and the <strong>nonlinear
+forecasting</strong> method of Ellner and Kendall. Future support
+for a variety of other algorithms is envisioned. A working group of
+the <a href=
+"http://nceas.ucsb.edu">National&nbsp;Center&nbsp;for&nbsp;Ecological&nbsp;Analysis&nbsp;and&nbsp;Synthesis&nbsp;(NCEAS)</a>,
+"Inference for Mechanistic Models", is currently implementing
+additional methods for this package.</p>
+<p>Simple worked examples are provided in <a href=
+"http://cran.at.r-project.org/web/packages/pomp/vignettes/">vignettes</a>
+and in the "examples" directory of the installed package.</p>
+<p>The package is provided under the GPL. Contributions are
+welcome, as are comments, suggestions, examples, and bug
+reports.</p>
+<p>The development of this package has been aided by support from
+the U.S. N.S.F (Grants #EF-0545276, #EF-0430120) and by the
+"Inference for Mechanistic Models" Working Group supported by the
+National Center for Ecological Analysis and Synthesis, a Center
+funded by NSF (Grant #DEB-0553768), the University of California,
+Santa Barbara, and the State of California.</p>

Added: www/content/authors.htm
===================================================================
--- www/content/authors.htm	                        (rev 0)
+++ www/content/authors.htm	2009-09-22 20:28:26 UTC (rev 164)
@@ -0,0 +1,8 @@
+<h3>Authors</h3>
+<dl>
+<dd><a href="http://www.umich.edu/~kingaa/">Aaron King</a></dd>
+<dd><a href="http://www.stat.lsa.umich.edu/~ionides/">Ed Ionides</a></dd>
+<dd>Carles Martinez Breto</dd>
+<dd><a href="http://www.eeb.cornell.edu/Ellner/">Steve Ellner</a></dd>
+<dd><a href="http://www.bren.ucsb.edu/people/Faculty/bruce_kendall.htm">Bruce Kendall</a></dd>
+</dl>

Modified: www/index.php
===================================================================
--- www/index.php	2009-09-21 17:57:38 UTC (rev 163)
+++ www/index.php	2009-09-22 20:28:26 UTC (rev 164)
@@ -1,7 +1,3 @@
-
-<!-- This is the project specific website template -->
-<!-- It can be changed as liked or replaced by other content -->
-
 <?php
 
 $domain=ereg_replace('[^\.]*\.(.*)$','\1',$_SERVER['HTTP_HOST']);
@@ -18,56 +14,71 @@
   <head>
 	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 	<title><?php echo $group_name; ?></title>
-	<link href="<?php echo $themeroot; ?>styles/estilo1.css" rel="stylesheet" type="text/css" />
+	<link href="./whitestyle.css" rel="stylesheet" type="text/css">
   </head>
 
 <body>
+<! --- R-Forge Logo --- >
 
-<! --- R-Forge Logo --- >
-<table border="0" width="100%" cellspacing="0" cellpadding="0">
-<tr><td>
-<a href="/"><img src="<?php echo $themeroot; ?>/images/logo.png" border="0" alt="R-Forge Logo" /> </a> </td> </tr>
+<table border="0" width="80%" cellspacing="0" cellpadding="0">
+<tr>
+<td>
+<a href="/"><img src="<?php echo $themeroot; ?>/images/logo.png" border="0" alt="R-Forge Logo" /> </a> 
+</td> 
+</tr>
 </table>
 
-
-<!-- get project title  -->
-<!-- own website starts here, the following may be changed as you like -->
-
-<?php if ($handle=fopen('http://'.$domain.'/export/projtitl.php?group_name='.$group_name,'r')){
-$contents = '';
-while (!feof($handle)) {
-	$contents .= fread($handle, 8192);
+<table width="80%" align="left" border="0" cellspacing="0" cellpadding="0">
+<tr>
+<td>
+<table border="0" cellspacing="0" cellpadding="0">
+<tr>
+<td align="right" width="60%">
+<h2>pomp:<br> statistical inference for partially-observed Markov processes</h2>
+</td>
+<td align="left" width="40%">
+<ul>
+<li><a href="./index.php?nav=about">About <i>pomp</i></a></li>
+<li><a href="http://<?php echo $domain; ?>/projects/<?php echo $group_name;?>">Development version (on r-forge)</a></li>
+<li><a href="http://cran.at.r-project.org/web/packages/pomp/">Release version (on CRAN)</a></li>
+<li><a target="_blank" href="http://cran.at.r-project.org/web/packages/pomp/pomp.pdf"><i>pomp</i> manual (PDF)</a></li>
+<li><a href="./index.php?nav=bib">References to the literature</a></li>
+<li><a href="./index.php?nav=authors">Authors' homepages</a></li>
+</ul>
+</td>
+</tr>
+</table>
+</td>
+</tr>
+<tr>
+<td>
+<table border="0" cellspacing="0" cellpadding="0">
+<tr>
+<td>
+<?php
+$nav = $_REQUEST["nav"];
+switch ($nav) {
+    case "bib":
+        $dfile = "content/refs.htm";
+        break;
+    case "soft":
+        $dfile = "content/links.htm";
+        break;
+    case "authors":
+        $dfile = "content/authors.htm";
+        break;
+    default:
+        $dfile = "content/about.htm";
+        break;
 }
-fclose($handle);
-echo $contents; } ?>
-
-<!-- end of project description -->
-
-<p>
-<strong>pomp</strong> is built around a very general realization of nonlinear partially-observed Markov processes (AKA state-space models, nonlinear stochastic dynamical systems). 
-One specifies a model's process and measurement components; the package uses these functions in algorithms to simulate, analyze, and fit the model to data.
-</p>
-
-<p>
-At the moment, algorithms are provided for particle filtering (AKA sequential importance sampling or sequential Monte Carlo) and the likelihood maximization by iterated filtering (MIF) method of Ionides, Breto, and King (PNAS, 103:18438-18443, 2006). 
-Future support for a variety of other algorithms is envisioned. 
-A working group of the National Center for Ecological Analysis and Synthesis (NCEAS), "Inference for Mechanistic Models", is currently implementing additional methods for this package.
-</p>
-
-<p>
-Simple worked examples are provided in two vignettes and in the "examples" directory of the installation.
-</p>
-
-<p>
-The package is provided under the GPL. 
-Contributions are welcome, as are comments, suggestions, examples, and bug reports.
-</p>
-
-<p>The development of this package has been aided by support from the U.S. N.S.F (Grants #EF-0545276, #EF-0430120) and by the "Inference for Mechanistic Models" Working Group supported by the National Center for Ecological Analysis and Synthesis, a Center funded by NSF (Grant #DEB-0553768), the University of California, Santa Barbara, and the State of California.</p>
-</p>
-
-<p>The <strong>project summary page</strong> you can find <a href="http://<?php echo $domain; ?>/projects/<?php echo $group_name; ?>/"><strong>here</strong></a>. </p>
-
-<p>The release version of the package is available on <a href="http://cran.at.r-project.org/web/packages/pomp/index.html">CRAN</a>.</p>
+include($dfile);
+?>
+</td>
+</tr>
+</table>
+</td>
+</tr>
+</table>
 </body>
 </html>
+

Added: www/whitestyle.css
===================================================================
--- www/whitestyle.css	                        (rev 0)
+++ www/whitestyle.css	2009-09-22 20:28:26 UTC (rev 164)
@@ -0,0 +1,47 @@
+body {
+    color: #000000;
+    background: #ffffff;
+    font-family: Lucida;
+}
+
+a {text-decoration: none }
+a:link { color: #0000ff;}
+a:visited { color: #0000ff;}
+a:active { color: #ff0000;}
+a:hover { color: #ff0000;}
+
+tr {vertical-align: top;}
+td {color: #000000; vertical-align: top;}
+th {color: #000000;}
+p {color: #000000;}
+caption {color: #000000;}
+
+h1 {
+    color: #000000;
+    font-family: Lucida;
+    font-size: large;
+}
+h2 {
+    color: #000000;
+    font-family: Lucida;
+}
+h3 {
+    color: #000000;
+    font-family: Lucida;
+}
+h4 {
+    color: #000000;
+    font-family: Lucida;
+}
+
+small.xtiny             { font-size : xx-small }
+small.tiny              { font-size : x-small  }
+small.scriptsize        { font-size : smaller  }
+small.footnotesize      { font-size : small    }
+small.small             {  }
+big.large               {  }
+big.xlarge              { font-size : large    }
+big.xxlarge             { font-size : x-large  }
+big.huge                { font-size : larger   }
+big.xhuge               { font-size : xx-large }
+



More information about the pomp-commits mailing list