From: Siddhesh P. <sid...@us...> - 2009-11-24 11:59:50
|
Update of /cvsroot/ayttm/ayttm-html In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12043 Modified Files: Footer.php Header.php about.php cvs.php dev.php faq.php features.php files.php index-new.php links.php mls.php nightlies.php release.php screenshots.php Log Message: Avoid php short tags Index: Footer.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/Footer.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Footer.php 3 Oct 2009 20:13:07 -0000 1.3 +++ Footer.php 24 Nov 2009 11:59:32 -0000 1.4 @@ -5,14 +5,14 @@ src="http://sourceforge.net/sflogo.php?group_id=77614&type=2" border="0" width=125 height=37 align="right" alt="Visit our project page on SourceForge.net"></a> -<?} +<?php } include("release.php"); ?> <small><b>Latest version</b>: <a title="Download" -href="https://sourceforge.net/projects/ayttm/files/"><?printf($RELEASE);?></a> +href="https://sourceforge.net/projects/ayttm/files/"><?php printf($RELEASE);?></a> (<a title="Read about this release" -href="https://sourceforge.net/projects/ayttm/files/ayttm/<?printf($RELEASE)?>/release.txt/download">Release notes and Changelog</a>) +href="https://sourceforge.net/projects/ayttm/files/ayttm/<?php printf($RELEASE);?>/release.txt/download">Release notes and Changelog</a>) <br> <b>Contact: </b><a title="Join our mailing list (subscribers only)" href="http://lists.sourceforge.net/lists/listinfo/ayttm-users">ayt...@li...</a>. Index: Header.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/Header.php,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Header.php 7 Nov 2009 21:27:15 -0000 1.5 +++ Header.php 24 Nov 2009 11:59:33 -0000 1.6 @@ -1,4 +1,4 @@ -<? +<?php error_reporting(0); ?> @@ -6,13 +6,13 @@ "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> - <title>Ayttm - <? printf($TITLE); ?></title> + <title>Ayttm - <?php printf($TITLE); ?></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta NAME="author" CONTENT="Colin Leroy"> <meta NAME="description" CONTENT="Ayttm - unified GTK instant-messaging client"> <meta NAME="robots" CONTENT="index, follow"> <meta NAME="keywords" CONTENT="ayttm msn aim icq yahoo instant messaging client linux chat gtk"> - <link rel="stylesheet" href=".<? printf($EXTRA_PATH);?>/style.css" type="text/css"> + <link rel="stylesheet" href=".<?php printf($EXTRA_PATH);?>/style.css" type="text/css"> <?php /* Lightbox plugin for Screenshot page */ if ($TITLE == "Screenshots") { @@ -22,7 +22,7 @@ print '<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />'; } ?> - <? print $LINK; ?> + <?php print $LINK; ?> </head> <body> <div align="center"><a class="toptitle" href="http://ayttm.sourceforge.net"> @@ -30,21 +30,21 @@ <tr valign="middle"> <td valign="middle"><h1 style="padding-top:15px; text-align: left; margin-left: 20pt; font-variant: small-caps;">Ayttm: Universal Instant Messaging Client</h1></td> - <td width="*" style="text-align:right;"><img style="padding-top:5px" src=".<? printf($EXTRA_PATH);?>/ayttm.png" alt="Ayttm logo" border="0" width=64 height=64></td> + <td width="*" style="text-align:right;"><img style="padding-top:5px" src=".<?php printf($EXTRA_PATH);?>/ayttm.png" alt="Ayttm logo" border="0" width=64 height=64></td> </tr> </table></a> <br> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/">News</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/about.php">About</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/features.php">Features</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/smileys/">Themes</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/screenshots.php">Screenshots</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/ayttm-manual">Manual</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/files.php">Download</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/dev.php">Develop</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/mls.php">Mailing-lists</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/faq.php">FAQ</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/links.php">Links</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/">News</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/about.php">About</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/features.php">Features</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/smileys/">Themes</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/screenshots.php">Screenshots</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/ayttm-manual">Manual</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/files.php">Download</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/dev.php">Develop</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/mls.php">Mailing-lists</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/faq.php">FAQ</a> | +<a class="main" href=".<?php printf($EXTRA_PATH);?>/links.php">Links</a> | <a class="main" href="http://sf.net/projects/ayttm/">SF.net Project Page</a> | </div> <hr> Index: about.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/about.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- about.php 11 Sep 2009 14:36:18 -0000 1.1 +++ about.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -34,4 +34,4 @@ list</a> if you like to comment or have a grudge.</p> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: cvs.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/cvs.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- cvs.php 11 Sep 2009 14:36:18 -0000 1.1 +++ cvs.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -38,4 +38,4 @@ </ul> Feedback and patches are welcome on the <a href="mls.php">mailing-list</a>. </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: dev.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/dev.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- dev.php 19 Sep 2009 19:34:06 -0000 1.1 +++ dev.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -37,4 +37,4 @@ </ul> Feedback and patches are welcome on the <a href="mls.php">mailing-list</a>. </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: faq.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/faq.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- faq.php 11 Sep 2009 14:36:18 -0000 1.1 +++ faq.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -107,4 +107,4 @@ </ul> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: features.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/features.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- features.php 11 Sep 2009 14:36:18 -0000 1.1 +++ features.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -79,4 +79,4 @@ <!-- 20 line blank space for alignment of headings on local clicks --> </p> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: files.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/files.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- files.php 3 Oct 2009 20:13:07 -0000 1.3 +++ files.php 24 Nov 2009 11:59:33 -0000 1.4 @@ -23,10 +23,10 @@ </p--> Latest stable release: -<a href="https://sourceforge.net/projects/ayttm/files/"><?=$RELEASE?></a><br><br> -<a href="https://sourceforge.net/projects/ayttm/files/ayttm/<?=$RELEASE?>/ayttm_<?=$RELEASE?>-0.src.rpm/download">Source RPM Package</a><br> -<a href="https://sourceforge.net/projects/ayttm/files/ayttm/<?=$RELEASE?>/ayttm-<?=$RELEASE?>.tar.bz2/download">Source .bz2 tarball</a><br> -<a href="https://sourceforge.net/projects/ayttm/files/ayttm/<?=$RELEASE?>/ayttm-<?=$RELEASE?>.tar.gz/download">Source .gz tarball</a><br> +<a href="https://sourceforge.net/projects/ayttm/files/"><?php print $RELEASE;?></a><br><br> +<a href="https://sourceforge.net/projects/ayttm/files/ayttm/<?php print $RELEASE;?>/ayttm_<?php print $RELEASE;?>-0.src.rpm/download">Source RPM Package</a><br> +<a href="https://sourceforge.net/projects/ayttm/files/ayttm/<?php print $RELEASE;?>/ayttm-<?php print $RELEASE;?>.tar.bz2/download">Source .bz2 tarball</a><br> +<a href="https://sourceforge.net/projects/ayttm/files/ayttm/<?php print $RELEASE;?>/ayttm-<?php print $RELEASE;?>.tar.gz/download">Source .gz tarball</a><br> <p> Download <a href="https://sourceforge.net/projects/ayttm/files/ayttm-win32/Ayttm-0.4.6-pre8/ayttm-win32-0.4.6-pre8.zip/download">Ayttm for windows</a> @@ -38,7 +38,7 @@ files page</a> </p> -<? if(0) { ?> +<?php if(0) { ?> <li> <a href="https://sourceforge.net/projects/ayttm/files/">0.5.0-111</a><br><br> <!-- a href="http://prdownloads.sourceforge.net/ayttm/ayttm_0.5.0-10-1_i386.deb?download">i386 Deb Package</a><br --> @@ -352,11 +352,11 @@ <p>You can also download our <a href="nightlies.php">nightly tarballs and RPMs</a> to keep up with the latest in Ayttm. <b>Beware!</b> These are <i>unstable</i> and may crash or play other pranks on you.</p> -<?}?> +<?php }?> <p>Debian users may use the power of apt-get to <i>apt-get install ayttm</i>; you just need to have the unstable tree configured in your sources.list. </p> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: index-new.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/index-new.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- index-new.php 6 Nov 2009 10:52:07 -0000 1.2 +++ index-new.php 24 Nov 2009 11:59:33 -0000 1.3 @@ -13,7 +13,7 @@ <br> <div style="margin-left: 10%; margin-right: 10%"> -<? +<?php if($rss->error){ print "<h3>Error:</h3>\n<p><strong>$rss->error</strong></p>"; } else { @@ -23,4 +23,4 @@ ?> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: links.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/links.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- links.php 11 Sep 2009 14:36:18 -0000 1.1 +++ links.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -36,4 +36,4 @@ </ul> </ul> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: mls.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/mls.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- mls.php 11 Sep 2009 14:36:18 -0000 1.1 +++ mls.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -17,4 +17,4 @@ feature is in at least; quick-reading it can help finding bugs ;-)</li> </ul> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: nightlies.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/nightlies.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- nightlies.php 11 Sep 2009 14:36:18 -0000 1.1 +++ nightlies.php 24 Nov 2009 11:59:33 -0000 1.2 @@ -12,6 +12,6 @@ nightly-data.php is generated in my crontab: wget -O tmp http://colin.leroy.free.fr/ayttm && cat tmp | grep "ayttm-"|cut -d'"' -f8 | sed "s/^\(.*\)$/<a href=http:\/\/colin.leroy.free.fr\/ayttm\/\1>\1<\/a><br>/" > /home/groups/a/ay/ayttm/htdocs/nightly-data.php --> -<? include("nightly-data.php"); ?> +<?php include("nightly-data.php"); ?> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> Index: release.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/release.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- release.php 30 Oct 2009 13:31:58 -0000 1.2 +++ release.php 24 Nov 2009 11:59:33 -0000 1.3 @@ -1,4 +1,4 @@ <!--0.6.1--> -<? +<?php $RELEASE="0.6.1"; ?> Index: screenshots.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/screenshots.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- screenshots.php 7 Nov 2009 21:27:15 -0000 1.2 +++ screenshots.php 24 Nov 2009 11:59:33 -0000 1.3 @@ -57,4 +57,4 @@ </table> </div> -<? include("Footer.php"); ?> +<?php include("Footer.php"); ?> |