summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
blob: 35d7852476f09ab543a5f1e21103b645d59abba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php

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

include_once "includes/common.inc";
include_once "includes/comment.inc";

function drupal_render($id, $cid) {
  global $theme, $user;

  $output  = " <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>\n";
  $output .= " <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>).  The source code is available under terms of GNU General Public License (GPL).</P>\n";
  $output .= " <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>\n";
  $theme->box("Introduction", $output);

  $output  = "<LI><A HREF=\"drupal/drupal-1.00.tgz\">drupal 1.00</A> (2001/01/15 - latest version)</LI>\n";
  $output .= "<LI><A HREF=\"drupal/drupal-1.00-rc2.tgz\">drupal 1.00-rc2</A> (2001/01/08)</LI>\n";
  $output .= "<LI><A HREF=\"drupal/drupal-1.00-rc1.tgz\">drupal 1.00-rc1</A> (2001/01/01)</LI>\n";
  $theme->box("Download", $output);

  unset($output);
  $handle = opendir("drupal");
  while ($file = readdir($handle)) if (ereg(".jpg", $file) || ereg(".gif", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n";
  closedir($handle);
  $theme->box("Screenshots", $output);

  $output  = "<H2>Documentation</H2>\n";
  $output .= " <LI><A HREF=\"module.php?mod=documentation\">documentation</A></LI>\n";
  $output .= " <LI><A HREF=\"module.php?mod=wishlist\">wishlist</A></LI>\n";
  $output .= "<H2>Mailing list</H2>\n";
  $output .= " <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>\n";
  $output .= " <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>\n";
  $output .= " <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.\n";
  $theme->box("Support and development", $output);

  print "<H3>Comments</H3>\n";

  // Display comments:
  comment_render($id, $cid);
}

function drupal_page() {
  global $cid, $comment, $id, $op, $pid, $lid, $link, $mode, $order, $subject, $theme, $threshold;

  switch($op) {
    case t("Preview comment"):
      $theme->header();
      comment_preview($pid, $id, $subject, $comment);
      $theme->footer();
      break;
    case t("Post comment"):
      comment_post($pid, $id, $subject, $comment);
      $theme->header();
      drupal_render($id, $cid);
      $theme->footer();
      break;
    case "reply":
      $theme->header();
      comment_reply($pid, $id);
      $theme->footer();
      break;
    case t("Update settings"):
      comment_settings($mode, $order, $threshold);
      $theme->header();
      drupal_render($id, $cid);
      $theme->footer();
      break;
    case t("Moderate comments"):
      comment_moderate($moderate);
      $theme->header();
      drupal_render($id, $cid);
      $theme->footer();
      break;
    default:
      $theme->header();
      drupal_render($id, $cid);
      $theme->footer();
  }
}

?>