mirror of
https://github.com/macports/macports-www.git
synced 2026-07-12 18:20:27 -07:00
layout while bringing the content up to speed with current practices and reality, otherwise sticking to the same website we had back in OpenDarwin days. The one big thing about this commit, though, is that the old ports.php page is again operational, as shown in my local server: http://apollo.homeunix.net/macports/ports.php. Woot! Further discussion of what to do with these sources is needed, however, so I'm not gonna push to host them anywhere for the time being until we have a clearer map of how we should move forward wrt our web presence. git-svn-id: https://svn.macports.org/repository/macports/trunk/www@28303 d073be05-634f-4543-b044-5fe20cf6d1d6
70 lines
2.5 KiB
PHP
70 lines
2.5 KiB
PHP
<?php
|
|
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
|
|
include_once("$DOCUMENT_ROOT/it/includes/common.inc");
|
|
include_once("$DOCUMENT_ROOT/it/includes/functions.inc");
|
|
include_once("$DOCUMENT_ROOT/includes/db.inc");
|
|
print_header('Home di DarwinPorts', 'utf-8');
|
|
?>
|
|
|
|
<div id="content">
|
|
<h2 class="hdr">Introduzione a DarwinPorts</h2>
|
|
<?
|
|
$result = mysql_query("SELECT count(*) from darwinports.portfiles");
|
|
if ($result) {
|
|
$row = mysql_fetch_array($result);
|
|
$count = $row[0];
|
|
} else {
|
|
$count = 0;
|
|
}
|
|
?>
|
|
<p>L'obiettivo principale del progetto DarwinPorts è fornire un metodo
|
|
per semplificare l'installazione di vario software open-source
|
|
sui sistemi operativi della famiglia Darwin (
|
|
<a href="http://www.opendarwin.org/"> OpenDarwin</a>,
|
|
<a href="http://www.apple.com/macosx/">Mac OS X</a> e
|
|
<a href="http://developer.apple.com/darwin/projects/darwin/">
|
|
Darwin</a>).</p>
|
|
|
|
<p>Attualmente sono disponibili <?= $count; ?>
|
|
<a href="/it/ports/">ports</a> funzionanti ed il numero è in costante
|
|
crescita. Inscrivendoti alla mailing list <a
|
|
href="http://www.opendarwin.org/mailman/listinfo/cvs-darwinports-all">
|
|
cvs-darwinports-all</a> potrai tenere traccia dei ports recentemente
|
|
aggiunti.</p>
|
|
|
|
<p>Maggiori informazioni su come ottenere e su come installare
|
|
DarwinPorts sono presenti alla sezione <a href="/it/getdp/">Ottenere
|
|
DarwinPorts</a> di questo sito. Inoltre ti invitiamo a consultare la
|
|
<a href="/docs/">documentazione</a> (attualmente disponibile solo in
|
|
inglese). Per eventuali problemi puoi sempre <a href="/it/help/">
|
|
richiedere aiuto</a>. Il nuovo
|
|
<a href="http://wiki.opendarwin.org/index.php/DarwinPorts">DarwinPorts
|
|
Wiki</a> è un'ottima risorsa di aiuto per trovare risposta alle
|
|
domande a carattere generale e non solo, in particolar modo grazie alle
|
|
<a href="http://wiki.opendarwin.org/index.php/DarwinPorts:FAQ">FAQ</a>
|
|
in fase di sviluppo.</p>
|
|
|
|
<p>Ti ricordiamo che tutte le segnalazioni di bug, le richieste di nuove
|
|
funzionalità e di nuovi ports devono essere inviate tramite
|
|
<a href="http://www.opendarwin.org/bugzilla/">Bugzilla</a>. Leggi
|
|
il paragrafo <a href="docs/ch01s05.html#user_bugs">Bug reports</a>
|
|
della documentazione per facilitare e migliorare il processo di un
|
|
bug report.</p>
|
|
|
|
<div id="news">
|
|
<h2 class="hdr">Ultime notizie</h2>
|
|
|
|
<?php
|
|
print_headlines();
|
|
?>
|
|
|
|
<p><a href="archives.php">Archivio delle notizie</a>.</p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
print_footer();
|
|
?>
|