From 25c379fb6114ce990d239db607f628e283064a27 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 6 May 2001 17:19:58 +0000 Subject: - Added custom PHP error handler to track down warnings and errors. (Jeroen: let's sit back and wait until that warning bites again.) - Simplified drupal.module. We still need a feature list, anyone? --- modules/drupal/drupal.module | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'modules/drupal/drupal.module') diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index eb9d0bd92..35ae7b7f2 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -5,28 +5,28 @@ function drupal_page() { $theme->header(); - $output = "

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.

\n"; - $output .= "

Drupal is primarily written by Dries Buytaert (dries_at_drop.org) and build after Slash (http://slashcode.com/) and Scoop (http://scoop.kuro5hin.org/). The source code is available under terms of GNU General Public License (GPL).

\n"; - $output .= "

We don't have a real demo site yet but drupal is used by (and created for) http://drop.org/. Create an account, play with it for a bit, read the documentation and spend some time getting used to it.

\n"; - $theme->box("Introduction", $output); - - $output = "
  • drupal 2.00 (2001/03/15 - latest version)
  • \n"; - $output .= "
  • drupal 1.00 (2001/01/15)
  • \n"; - $theme->box("Download", $output); + $output = "

    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.

    \n"; + $output .= "

    Drupal is primarily written by Dries Buytaert (dries_at_drop.org) and build after Slash and Scoop. Drupal uses PHP and MySQL and is a valuable alternative for PHP-Nuke, ThatWare, GeekLog and so on. The source code is available under terms of GNU General Public License (GPL).

    \n"; + $output .= "

    We don't have a real demo site yet but Drupal is used by (and created for) http://drop.org/. Create an account, play with it for a bit, read the documentation and spend some time getting used to it.

    \n"; + $theme->box("Drupal", $output); +/* unset($output); $handle = opendir("drupal"); while ($file = readdir($handle)) if (ereg(".jpg", $file) || ereg(".gif", $file)) $output .= "
  • $file
  • \n"; closedir($handle); $theme->box("Screenshots", $output); - - $output = "

    Documentation

    \n"; - $output .= "
  • documentation
  • \n"; - $output .= "
  • wishlist
  • \n"; - $output .= "

    Mailing list

    \n"; - $output .= "

    The drupal-support@drop.org 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.

    \n"; - $output .= "
  • To subscribe to the drupal-support@drop.org mailing list, send an e-mail to drupal-support-request@drop.org with no subject and put subscribe in the body of your message.
  • \n"; - $output .= "
  • To unsubscribe from the drupal-support@drop.org mailing list, send an e-mail to drupal-support-request@drop.org and put unsubscribe in the body of your mail.\n"; +*/ + + $output = "

    Download

    \n"; + $output .= "
  • drupal 2.00 (2001/03/15 - latest version)
  • \n"; + $output .= "
  • drupal 1.00 (2001/01/15)
  • \n"; + $output .= "

    Documentation

    \n"; + $output .= "
  • drupal handbook
  • \n"; + $output .= "

    Mailing lists

    \n"; + $output .= "
  • mailing lists"; + $output .= "

    Development

    \n"; + $output .= "
  • drupal development\n"; $theme->box("Support and development", $output); $theme->footer(); -- cgit v1.2.3