mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-16 20:58:27 +01:00
Killed the changelog
This commit is contained in:
parent
cc0a221fb2
commit
3672a49075
@ -1,70 +0,0 @@
|
||||
<?
|
||||
require("include/top.php");
|
||||
|
||||
$query="SELECT version,comment,quand FROM changelog ORDER BY quand DESC, id DESC";
|
||||
$result=mysql_query($query);
|
||||
while($tmp=mysql_fetch_array($result)) {
|
||||
$changes[]=$tmp;
|
||||
}
|
||||
|
||||
?>
|
||||
<br />
|
||||
<table bgcolor="#000000" cellspacing="1" cellpadding="0" width="75%">
|
||||
<tr>
|
||||
<td>
|
||||
<table bgcolor="#000000" cellspacing="1" cellpadding="2">
|
||||
<tr>
|
||||
<td bgcolor="#224488" nowrap>
|
||||
<b>pouët.net todo list</b><br />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#557799">
|
||||
- add zone's nationality flags on user.php according to sceneID's new "country" user info field<br />
|
||||
- allow support to change users nationality on sceneID from pouet.net account.php<br />
|
||||
- fix add.php and update.php to do the vote math ignoring fakeusers votes<br />
|
||||
- paginate parties.php + allow year sort to be also reversed<br />
|
||||
- add a possibility to subscribe to certain prods/groups/bbs and receive an update by mail<br />
|
||||
- facilitate personalized css<br />
|
||||
- remodel BBS into sections<br />
|
||||
- populate stats.php with stats<br />
|
||||
- add cookie/ajax power to groups.php?which= and prodlist.php to show/hide some columns<br />
|
||||
- do a searchprodlist.php with a textbox input, a multichoice list of all types and platforms, and a way to select sortby up to 3 levels<br />
|
||||
- add more info on rss prodlistings (groups, type, platform)<br />
|
||||
- add automatic .rss browser linkage lines as suggested by p01 on bbstopic 2104<br />
|
||||
- improve lists.php<br />
|
||||
- add more detail to listitems types (visited parties vs organized parties for demology lists)<br />
|
||||
- add more listitems types for better demology (visited/organized parties, ex-groups, active/innactive users)<br />
|
||||
- add related lists info to user.php, group.php, prod.php and submit.php<br />
|
||||
- add automation to prodid links similar to webtv (for zxdemo, csdb, c64cracktros, plus4emucamp, scene.org fileid)<br />
|
||||
- update othernfo functionality some more<br />
|
||||
- add database fields to connect groups to parties/compos they organized (display them on groups.php?which=..)<br />
|
||||
- integrate demozoo style user and group credits<br />
|
||||
- allow gfx and music entries?!<br />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#224488" nowrap>
|
||||
<b>pouët.net changelog</b><br />
|
||||
</td>
|
||||
</tr>
|
||||
<? $c=0; ?>
|
||||
<? for($i=0;$i<count($changes);$i++): ?>
|
||||
<? if($changes[$i]["version"]!=$changes[$i-1]["version"]): ?>
|
||||
<tr>
|
||||
<? ($c%2)?print("<td bgcolor=\"#557799\">"):print("<td bgcolor=\"#446688\">"); ?>
|
||||
<b><? print($changes[$i]["version"]); ?></b>:<br />
|
||||
<? endif; ?>
|
||||
<? print(htmlentities("[".substr($changes[$i]["quand"],0,10)."] - ".$changes[$i]["comment"])); ?><br />
|
||||
<? if($changes[$i]["version"]!=$changes[$i+1]["version"]): ?>
|
||||
</td>
|
||||
</tr>
|
||||
<? $c++; ?>
|
||||
<? endif; ?>
|
||||
<? endfor; ?>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
<? require("include/bottom.php"); ?>
|
@ -41,10 +41,7 @@ $result = mysql_query($query);
|
||||
$lastBuildDate = date('D, d M Y H:i:s',strtotime(mysql_result($result, 0)));
|
||||
$output.= $t.$t.'<lastBuildDate>'.$lastBuildDate.' CST</lastBuildDate>'.$nl;
|
||||
// generator
|
||||
$query = 'SELECT version FROM changelog ORDER BY quand DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$version = mysql_result($result, 0);
|
||||
$output.= $t.$t.'<generator>pouet.net version '.$version.'</generator>'.$nl;
|
||||
$output.= $t.$t.'<generator>pouet.net</generator>'.$nl;
|
||||
$output.= $t.$t.'<docs>http://backend.userland.com/rss</docs>'.$nl;
|
||||
$output.= $t.$t.'<ttl>60</ttl>'.$nl;
|
||||
// logo
|
||||
|
@ -37,11 +37,7 @@ $query = 'SELECT lastpost FROM bbs_topics ORDER BY lastpost DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$lastBuildDate = date('D, d M Y H:i:s',strtotime(mysql_result($result, 0)));
|
||||
$output.= $t.$t.'<lastBuildDate>'.$lastBuildDate.' CST</lastBuildDate>'.$nl;
|
||||
// generator
|
||||
$query = 'SELECT version FROM changelog ORDER BY quand DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$version = mysql_result($result, 0);
|
||||
$output.= $t.$t.'<generator>pouet.net version '.$version.'</generator>'.$nl;
|
||||
$output.= $t.$t.'<generator>pouet.net</generator>'.$nl;
|
||||
$output.= $t.$t.'<docs>http://backend.userland.com/rss</docs>'.$nl;
|
||||
$output.= $t.$t.'<ttl>60</ttl>'.$nl;
|
||||
// logo
|
||||
|
@ -38,11 +38,7 @@ $query = 'SELECT quand FROM prods ORDER BY quand DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$lastBuildDate = date('D, d M Y H:i:s',strtotime(mysql_result($result, 0)));
|
||||
$output.= $t.$t.'<lastBuildDate>'.$lastBuildDate.' CST</lastBuildDate>'.$nl;
|
||||
// generator
|
||||
$query = 'SELECT version FROM changelog ORDER BY quand DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$version = mysql_result($result, 0);
|
||||
$output.= $t.$t.'<generator>pouet.net version '.$version.'</generator>'.$nl;
|
||||
$output.= $t.$t.'<generator>pouet.net</generator>'.$nl;
|
||||
$output.= $t.$t.'<docs>http://backend.userland.com/rss</docs>'.$nl;
|
||||
$output.= $t.$t.'<ttl>60</ttl>'.$nl;
|
||||
// logo
|
||||
|
@ -37,11 +37,7 @@ $query = 'SELECT quand FROM prods ORDER BY quand DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$lastBuildDate = date('D, d M Y H:i:s',strtotime(mysql_result($result, 0)));
|
||||
$output.= $t.$t.'<lastBuildDate>'.$lastBuildDate.' CST</lastBuildDate>'.$nl;
|
||||
// generator
|
||||
$query = 'SELECT version FROM changelog ORDER BY quand DESC LIMIT 1';
|
||||
$result = mysql_query($query);
|
||||
$version = mysql_result($result, 0);
|
||||
$output.= $t.$t.'<generator>pouet.net version '.$version.'</generator>'.$nl;
|
||||
$output.= $t.$t.'<generator>pouet.net</generator>'.$nl;
|
||||
$output.= $t.$t.'<docs>http://backend.userland.com/rss</docs>'.$nl;
|
||||
$output.= $t.$t.'<ttl>60</ttl>'.$nl;
|
||||
// logo
|
||||
|
@ -1,10 +1,11 @@
|
||||
<?
|
||||
if ($user["bottombar"]==1) { menu(); print("<br />"); }
|
||||
$query="SELECT version FROM changelog ORDER BY quand DESC, id DESC LIMIT 1";
|
||||
$result=mysql_query($query);
|
||||
$lastversion=mysql_result($result,0);
|
||||
<?php
|
||||
if ($user["bottombar"] == 1)
|
||||
{
|
||||
menu();
|
||||
print("<br />");
|
||||
}
|
||||
?>
|
||||
<a href="http://www.pouet.net">pouët.net</a> <a href="changelog.php"><? print($lastversion); ?></a> © 2000-<?=date("Y")?> <a href="http://www.pouet.net/groups.php?which=5">mandarine</a> - hosted on <a href="http://www.scene.org/">scene.org</a><br />
|
||||
<a href="http://www.pouet.net">pouët.net</a> <a href="https://github.com/lra/pouet.net/commits/master">0.9.904</a> © 2000-<?=date("Y")?> <a href="http://www.pouet.net/groups.php?which=5">mandarine</a> - hosted on <a href="http://www.scene.org/">scene.org</a><br />
|
||||
send comments and bug reports to <a href="mailto:webmaster@pouet.net">webmaster@pouet.net</a>
|
||||
- contribute on <a href="https://github.com/lra/pouet.net">GitHub</a><br />
|
||||
<?
|
||||
|
16
pouet.sql
16
pouet.sql
@ -281,22 +281,6 @@ CREATE TABLE `cdc` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='coups de coeur';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `changelog`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `changelog`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `changelog` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`version` varchar(255) NOT NULL DEFAULT '',
|
||||
`comment` varchar(255) NOT NULL DEFAULT '',
|
||||
`quand` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 PACK_KEYS=1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `comments`
|
||||
--
|
||||
|
Loading…
x
Reference in New Issue
Block a user