Skip to content
drupal.module 2.48 KiB
Newer Older
Dries Buytaert's avatar
Dries Buytaert committed
<?

$module = array("page" => "drupal_page");

include "includes/common.inc";

function drupal_page() {
  global $theme;

  $output .= "
   <H2>Introduction</H2>
Dries Buytaert's avatar
 
Dries Buytaert committed
   <P>Drupal is the English pronunciation for the Dutch word 'druppel' which stands for 'drop'.  Drupal is a full-featured content management/discussion engine suitable to setup a news-driven community or portal site.  Drupal aims towards easy installation, excessive configuration and fine-grained maintenance capabilities.  Due to its modular design drupal is flexible and easy to adapt or extend.</P>
Dries Buytaert's avatar
Dries Buytaert committed
   <P>Drupal is primarily written by Dries Buytaert (dries_at_drop.org) and build after Slash (<A HREF=\"http://slashcode.com/\">http://slashcode.com/</A>) and Scoop (<A HREF=\"http://scoop.kuro5hin.org/\">http://scoop.kuro5hin.org/</A>) and source code is available under terms of GNU General Public License (GPL).</P>
   <H2>Download</H2>
   <LI><A HREF=\"drupal/drupal-1.00-rc1.tgz\">drupal 1.00-rc1</A> (2000/01/01)</LI>
Dries Buytaert's avatar
Dries Buytaert committed
   <H2>Screenshots</H2>
Dries Buytaert's avatar
Dries Buytaert committed
  ";

Dries Buytaert's avatar
Dries Buytaert committed
  $handle = opendir("drupal");
Dries Buytaert's avatar
 
Dries Buytaert committed
  while ($file = readdir($handle)) if (ereg(".jpg", $file) || ereg(".gif", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n";
Dries Buytaert's avatar
Dries Buytaert committed
  closedir($handle);

Dries Buytaert's avatar
 
Dries Buytaert committed
  $output .= "
   <H2>Demo</H2>
   <P>We don't have a real demo site yet but drupal is used by (and created for) <A HREF=\"http://drop.org/\">http://drop.org/</A>.  Create an account, play with it for a bit, read the <A HREF=\"module.php?mod=documentation\">documentation</A> and spend some time getting used to it.</P>
   <H2>Documentation</H2>
   <LI><A HREF=\"module.php?mod=documentation\">documentation</A></LI>
   <LI><A HREF=\"module.php?mod=wishlist\">wishlist</A></LI>
   <H2>Mailing list</H2>
   <P>The <CODE>drupal-support@drop.org</CODE> list discusses drupal development. All submissions relevant to that, such as bug reports, enhancement ideas, patches or reports that a patch fixed a bug are appropriate.</P>
   <LI>To subscribe to the <CODE>drupal-support@drop.org</CODE> mailing list, send an e-mail to <A HREF=\"mailto:drupal-support-request@drop.org\">drupal-support-request@drop.org</A> with no subject and put <B>subscribe</B> in the body of your message.</LI>
Dries Buytaert's avatar
 
Dries Buytaert committed
   <LI>To unsubscribe from the <CODE>drupal-support@drop.org</CODE> mailing list, send an e-mail to <A HREF=\"mailto:drupal-support-request@drop.org\">drupal-support-request@drop.org</A> and put <B>unsubscribe</B> in the body of your mail.
  ";

Dries Buytaert's avatar
Dries Buytaert committed
  $theme->header();
  $theme->box("Drupal", $output);
  $theme->footer();
}

?>