]> git.donarmstrong.com Git - xtable.git/blob - www/index.php
Vignettes changed to use knitr and section added to xtableGallery.Rnw to illustrate...
[xtable.git] / www / index.php
1
2 <!-- This is the project specific website template -->
3 <!-- It can be changed as liked or replaced by other content -->
4
5 <?php
6
7 $domain=ereg_replace('[^\.]*\.(.*)$','\1',$_SERVER['HTTP_HOST']);
8 $group_name=ereg_replace('([^\.]*)\..*$','\1',$_SERVER['HTTP_HOST']);
9 $themeroot='r-forge.r-project.org/themes/rforge/';
10
11 echo '<?xml version="1.0" encoding="UTF-8"?>';
12 ?>
13 <!DOCTYPE html
14         PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
15         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
16 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en   ">
17
18   <head>
19         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
20         <title><?php echo $group_name; ?></title>
21         <link href="http://<?php echo $themeroot; ?>styles/estilo1.css" rel="stylesheet" type="text/css" />
22   </head>
23
24 <body>
25
26 <!-- R-Forge Logo -->
27 <table border="0" width="100%" cellspacing="0" cellpadding="0">
28 <tr><td>
29 <a href="http://r-forge.r-project.org/"><img src="http://<?php echo $themeroot; ?>/imagesrf/logo.png" border="0" alt="R-Forge Logo" /> </a> </td> </tr>
30 </table>
31
32
33 <!-- get project title  -->
34 <!-- own website starts here, the following may be changed as you like -->
35
36 <H1>Overview</H1>
37
38 <?php if ($handle=fopen('http://'.$domain.'/export/projtitl.php?group_name='.$group_name,'r')){
39 $contents = '';
40 while (!feof($handle)) {
41         $contents .= fread($handle, 8192);
42 }
43 fclose($handle);
44 echo $contents; } ?>
45
46 <p> The <strong>project summary page</strong> is <a href="http://<?php echo $domain; ?>/projects/<?php echo $group_name; ?>/"><strong>here</strong></a>. </p>
47
48 <P> The <strong>CRAN package page</strong> is <a href="http://cran.r-project.org/web/packages/xtable/index.html"><strong>here</strong></a>.
49
50 <!-- end of project description -->
51
52 <H1>Feature Requests, Bugs, and Support</H1>
53
54 <P>
55 The <b>xtable</b> project is hosted on <a href="http://r-forge.r-project.org/projects/xtable/">R-Forge</a>.
56 </P>
57
58 <P>
59 The project web site includes a <a href="https://r-forge.r-project.org/tracker/?group_id=1228">Tracker</a>
60 issue tracking system with sections for:
61 </P>
62
63 <ul>
64         <li><a href="https://r-forge.r-project.org/tracker/?atid=4862&group_id=1228&func=browse">Support</a></li>
65         <li><a href="https://r-forge.r-project.org/tracker/?atid=4864&group_id=1228&func=browse">Feature Requests</a></li>
66         <li><a href="https://r-forge.r-project.org/tracker/?atid=4861&group_id=1228&func=browse">Bugs</a></li>
67         <li><a href="https://r-forge.r-project.org/tracker/?atid=4863&group_id=1228&func=browse">Patches</a></li>
68 </ul>
69
70 <P>
71 If you are logged into R-Forge you will be able to create new items.
72 </P>
73
74 <H2>Change Policy</H2>
75
76 <P>
77 The <b>xtable</b> package is a dependency of other packages, and is also used in clinical reporting scenarios where reproducibility is necessary.  Hence stability and backwards compatibility are key criteria when assessing changes.  Changes that break backwards compatibility will not be considered for inclusion.
78 </P>
79
80 </body>
81 </html>