root/www-website/docs.php

Revision 9340, 4.0 kB (checked in by asterix, 6 months ago)

remove dead link on website

Line 
1<?php
2
3  require_once ("Design.php");
4
5  Entete ("Gajim, a Jabber client", "GAJIM");
6
7
8print ("    <p>\n");
9print ("<a name=\"install\"></a>");
10print ("     <h1>\n");
11print _("      Installation\n");
12print ("     </h1></a>\n");
13
14print ("<a name=\"tarball\"></a>\n");
15print ("<a name=\"subversion\"></a>\n");
16print ("     <h2>\n");
17print _("      Tarball and Subversion\n");
18print ("     </h2>\n");
19print _("     To get one of these versions, go to the")." <a href=\"downloads.php?lang=".$_SESSION['lang']."\">"._("download")."</a> "._("page.\n");
20print ("     <h3>\n");
21print _("      Under GNU/Linux\n");
22print ("     </h3>\n");
23print _("     To run this version, you have to install some packages: python2.3 python2.3-gtk2 and python2.3-glade2.\n");
24print _("     (With Debian, just run:")." <i>apt-get install python2.3 python2.3-gtk2 python2.3-glade2</i>).\n";
25print _("     Note that python2.4 can be used instead of python2.3.\n");
26print ("     <br/>\n");
27print ("     <br/>\n");
28print _("     To use the idle module, the trayicon one and the gtkspell one, you have to compile them. For idle you may need libxss-dev (if you don't have scrnsaver.h) and for the trayicon and gtkspell you can avoid compiling them, if you have gnome-python-extras.");
29print ("     <br/>\n");
30print _(" In order to compile them all type")." <i>make</i> "._("in the gajim folder. (python-dev, python-gtk2-dev, libgtkspell-dev and libgtk2.0-dev packages are needed)\n");
31print ("     <br/>\n");
32print ("     <br/>\n");
33print _("     You can install or run from source. To run from source");
34print (" <i>./launch.sh</i> ")._("in the gajim folder.");
35print ("     <br/>\n");
36print _("     To install ")." <i>su -c make install</i> "._("in the gajim folder");
37print _("     and then you just have to run")." <i>gajim</i> "._("in order to use Gajim.\n");
38print ("     <br/>\n");
39print ("     <h3>\n");
40print _("      Under Microsoft Windows\n");
41print ("     </h3>\n");
42print _("     In a first time, you have to install")." <a href=\"http://www.python.org\">python</a>, <a href=\"http://www.gtk.org\">GTK+</a>, <a href=\"http://www.pygtk.org\">pygtk</a> "._("and")." <a href=\"http://starship.python.net/crew/mhammond/win32/\">pywin32</a>.\n";
43print ("     <br/>\n");
44print ("     <ul>\n");
45print ("      <li>\n");
46print _("       To get python, download the latest version")." <a href=\"http://python.org/ftp/python/\">"._("here")." </a>"._("(Gajim works with python-2.4.x)").", "._("and install it.\n");
47print ("      </li>\n");
48print ("      <li>\n");
49print _("       To get GTK+, download the latest version of the \"Runtime Environment\"")." <a href=\"http://gladewin32.sourceforge.net\">"._("here")."</a>, "._("and install it.\n");
50print ("      </li>\n");
51print ("      <li>\n");
52print _("       To get pygtk, download latest version ")." <a href=\"http://www.pcpm.ucl.ac.be/~gustin/win32_ports/pygtk.html\">"._("here")."</a> "._(" and install it.\n");
53print ("      </li>\n");
54print ("      <li>\n");
55print _("       At last, to get pywin32, download latest version ")." <a href=\"http://sourceforge.net/project/showfiles.php?group_id=78018\">"._("here")."</a> "._(" and install it.\n");
56print ("      </li>\n");
57print ("     </ul>\n");
58print ("     <br/>\n");
59print _("     You can now")." <a href=\"downloads.php?lang=".$_SESSION['lang']."\">"._("download Gajim")."</a> "._("and double click on gajim.py in src folder.\n");
60print ("    <p>\n");
61
62print ("<a name=\"jabber\"></a>");
63print ("     <h1>\n");
64print ("      Jabber\n");
65print ("     </h1>\n");
66print _("     Please read")." <a href=\"http://trac.gajim.org/wiki/WikiStart#help_quickstart_guides\">"._("here")."</a>.\n";
67
68print ("<a name=\"structure\"></a>");
69print ("     <h1>\n");
70print _("      Structure\n");
71print ("     </h1>\n");
72print _("     You can understand how Gajim works")." <a href=\"http://trac.gajim.org/wiki/DevInfos\">"._("here")."</a>.\n";
73print ("     <br/>");
74print _("     Gajim uses the")." <a href=\"http://xmpppy.sourceforge.net/\">xmpppy</a> "._("library to do the interface with Jabber network.\n");
75print ("    </p>\n");
76
77PiedDePage();
78?>
Note: See TracBrowser for help on using the browser.