[Soiltexture-commits] r3 - www

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Apr 9 13:25:06 CEST 2010


Author: jmoeys
Date: 2010-04-09 13:25:06 +0200 (Fri, 09 Apr 2010)
New Revision: 3

Added:
   www/EN_TEXTURE_TRIANGLE_USDA_GRAD_UNOFFICIAL_CC-BY-SA-3-small.png
   www/index.html
   www/index.old.php
   www/kompozer_80x15.png
Removed:
   www/index.php
Log:


Added: www/EN_TEXTURE_TRIANGLE_USDA_GRAD_UNOFFICIAL_CC-BY-SA-3-small.png
===================================================================
(Binary files differ)


Property changes on: www/EN_TEXTURE_TRIANGLE_USDA_GRAD_UNOFFICIAL_CC-BY-SA-3-small.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: www/index.html
===================================================================
--- www/index.html	                        (rev 0)
+++ www/index.html	2010-04-09 11:25:06 UTC (rev 3)
@@ -0,0 +1,36 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+</head>
+<body>
+<a href="http://r-forge.r-project.org"><img style="border: 0px solid ; width: 210px; height: 54px;" alt="r-forge" src="http://r-forge.r-project.org/themes/rforge//images/logo.png"></a><br>
+<h2>Welcome to The Soil Texture Wizard project!</h2>
+<img style="width: 500px; height: 500px;" alt="Unofficial USDA texture triangle made with the soiltexture package" src="EN_TEXTURE_TRIANGLE_USDA_GRAD_UNOFFICIAL_CC-BY-SA-3-small.png">
+<span style="font-weight: bold;">The Soil Texture Wizard</span> is a set of R functions designed to produce 
+texture triangle plots. It also allows to classify soil textures data 
+according to a classification, and to transform them according to 
+different texture particle size class systems.
+<br>
+<br>
+This page is under construction!<br>
+<ul>
+  <li>A <span style="font-weight: bold;">detailed project description</span> can be found on the <a href="http://julienmoeys.free.fr/?Soil-textures-triangle">project's administrator website</a> (page that should be move here).</li>
+  <li>The <a style="font-weight: bold;" href="http://r-forge.r-project.org/R/?group_id=740">package binaries</a> should be&nbsp;available on r-forge soon.</li>
+  <li>The <span style="font-weight: bold;">package source</span> are available on the <a href="http://r-forge.r-project.org/scm/?group_id=740">project SCM page</a>.</li>
+  <li>The <strong>project summary page</strong> you can find <a href="http://r-forge.r-project.org/projects/soiltexture/"><strong>here</strong></a>.&nbsp;</li>
+</ul>
+Source can be loaded in R using the following code:<span style="font-family: monospace;"><br>
+source(
+"http://r-forge.r-project.org/plugins/scmsvn/viewcvs.php/*checkout*/pkg/soiltexture/R/soiltexture.r?&amp;root=soiltexture"
+)</span><br>
+<span style="font-weight: bold;">Roadmap</span> (suceptible to changes):<br>
+<ul>
+  <li>The functions provided by the soiltexture package are considered
+as beta / almost stable, but they need to be tested by more users.</li>
+  <li>The main function TT.plot() is now documented.</li>
+  <li>The documentation is under construction for the rest of the package (using <a href="http://inlinedocs.r-forge.r-project.org/">inlinedocs</a>), and will be gradually completed.</li>
+  <li>...</li>
+</ul>
+Feedbacks are warmly welcome.<a title="Document made with KompoZer" href="http://kompozer.net/"><img style="border: 0px solid ; width: 80px; height: 15px;" alt="Document made with KompoZer" src="kompozer_80x15.png"></a>
+</body>
+</html>

Added: www/index.old.php
===================================================================
--- www/index.old.php	                        (rev 0)
+++ www/index.old.php	2010-04-09 11:25:06 UTC (rev 3)
@@ -0,0 +1,51 @@
+
+<!-- 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']);
+$group_name=ereg_replace('([^\.]*)\..*$','\1',$_SERVER['HTTP_HOST']);
+$themeroot='http://r-forge.r-project.org/themes/rforge/';
+
+echo '<?xml version="1.0" encoding="UTF-8"?>';
+?>
+<!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" xml:lang="en" lang="en   ">
+
+  <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" />
+  </head>
+
+<body>
+
+<!-- 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>
+
+
+<!-- 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);
+}
+fclose($handle);
+echo $contents; } ?>
+
+<!-- end of project description -->
+
+<p> No content added. </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>
+
+</body>
+</html>

Deleted: www/index.php
===================================================================
--- www/index.php	2010-04-09 08:08:09 UTC (rev 2)
+++ www/index.php	2010-04-09 11:25:06 UTC (rev 3)
@@ -1,51 +0,0 @@
-
-<!-- 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']);
-$group_name=ereg_replace('([^\.]*)\..*$','\1',$_SERVER['HTTP_HOST']);
-$themeroot='http://r-forge.r-project.org/themes/rforge/';
-
-echo '<?xml version="1.0" encoding="UTF-8"?>';
-?>
-<!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" xml:lang="en" lang="en   ">
-
-  <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" />
-  </head>
-
-<body>
-
-<!-- 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>
-
-
-<!-- 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);
-}
-fclose($handle);
-echo $contents; } ?>
-
-<!-- end of project description -->
-
-<p> No content added. </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>
-
-</body>
-</html>

Added: www/kompozer_80x15.png
===================================================================
(Binary files differ)


Property changes on: www/kompozer_80x15.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream



More information about the Soiltexture-commits mailing list