From: Ciaran Gultnieks Date: Sun, 5 Dec 2010 00:19:21 +0000 (+0000) Subject: More info in the web browser, but still rudimentary X-Git-Tag: 0.1~1616 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=dab65afabd63dc92e84ac88d6643bbb2c0604e28;p=fdroidserver.git More info in the web browser, but still rudimentary --- diff --git a/wp-fdroid/wp-fdroid.php b/wp-fdroid/wp-fdroid.php index 62e1a044..b36a0ee2 100644 --- a/wp-fdroid/wp-fdroid.php +++ b/wp-fdroid/wp-fdroid.php @@ -113,6 +113,24 @@ class FDroid case "name": $name=$el; break; + case "icon": + $icon=$el; + break; + case "summary": + $summary=$el; + break; + case "license": + $license=$el; + break; + case "source": + $source=$el; + break; + case "issues": + $issues=$el; + break; + case "web": + $web=$el; + break; } } @@ -120,7 +138,10 @@ class FDroid if($skipped<($page-1)*$perpage) { $skipped++; } else if($got<$perpage) { - $out.="

".$name."

"; + $out.="

".$name."

"; + $out.='

'; + $out.=$summary; + $out.="

"; $got++; } $total++;