home *** CD-ROM | disk | FTP | other *** search
/ ftp.madoka.org / 2014.12.ftp.madoka.org.tar / ftp.madoka.org / pub / irchat-pj / 2.5 / irchat-pj-2.5.6p.tar.gz / irchat-pj-2.5.6p.tar / irchat-pj-2.5.6p / irchat-pj-copyright.el < prev    next >
Text File  |  2001-06-10  |  4KB  |  99 lines

  1. ;;; irchat-pj-copyright.el --- Copyright for irchat-pj module   -*- coding: ctext; -*-
  2.  
  3. ;; Copyright (C) 1998-2001 by irchat-PJ Project.
  4.  
  5. ;; Author: SHIMADA Mitsunobu <simm@irc.fan.gr.jp>
  6. ;; Keywords: irchat-pj, copyright
  7.  
  8. ;; $Id: irchat-pj-copyright.el,v 1.2 2001/06/07 14:11:21 simm Exp $
  9.  
  10. ;; These modules are free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; These modules are distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. ;; Boston, MA 02111-1307, USA.
  24.  
  25. ;;; Commentary:
  26.  
  27. ;; You can FTP the latest stable version of PURE from
  28. ;;   ftp://ftp.fan.gr.jp/pub/elisp/irchat-pj/
  29.  
  30. ;; You can get the latest stable informaton of PURE from WWW:
  31. ;;   http://irc.fan.gr.jp/pj/
  32.  
  33. ;; You can get the latest version of PURE via anonymous CVS like below:
  34. ;;   cvs -d :pserver:anonymous@cvs.fan.gr.jp:/home/cvs checkout irchat-pj
  35.  
  36. ;; You can get the latest information of PURE from IRC:
  37. ;;   (server)irc.friend.td.nu (port)6660-6669 (channel)#irchat-pj
  38.  
  39. ;; Original copyright of irchat.el is below:
  40. ;; <pre>
  41.  
  42. ;;     Internet Relay CHAT interface for GNU Emacs
  43. ;;     Copyright (C) 1989 Tor Lillqvist
  44.  
  45. ;;     This program is free software; you can redistribute it and/or modify
  46. ;;     it under the terms of the GNU General Public License as published by
  47. ;;     the Free Software Foundation; either version 1, or (at your option)
  48. ;;     any later version.
  49.   
  50. ;;     This program is distributed in the hope that it will be useful,
  51. ;;     but WITHOUT ANY WARRANTY; without even the implied warranty of
  52. ;;     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  53. ;;     GNU General Public License for more details.
  54.   
  55. ;;     You should have received a copy of the GNU General Public License
  56. ;;     along with GNU Emacs; if not, write to the Free Software
  57. ;;     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  58.   
  59. ;;     Author's email address is <tml@hemuli.atk.vtt.fi>
  60.   
  61. ;;     Following people have made major improvements to irchat. Also there
  62. ;;     are numerous people who have given suggestions and improvements. If 
  63. ;;     you think your name should be included here, give us a note...
  64. ;;        Kai KeinΣnen        <kmk@cc.tut.fi>
  65. ;;        Markku JΣrvinen    <mta@cc.tut.fi>
  66. ;;        Jukka Partanen          <jtp@cs.hut.fi>
  67. ;;        Kim Nyberg              <kny@cs.hut.fi>
  68. ;;        tero t mononen          <tmo@tekla.fi>
  69.  
  70. ;;     You can ftp the latest version from cs.hut.fi:/pub/irchat
  71.  
  72. ;;     There is a mailing list, irchat@cc.tut.fi for those interested
  73. ;;     in developments in irchat. Mail irchat-request@cc.tut.fi if you
  74. ;;     are interested in joining.
  75.  
  76. ;; </pre>
  77.  
  78. ;;; Code:
  79.  
  80. (defconst irchat-pj-pointer-ftp-url "ftp://ftp.fan.gr.jp/pub/elisp/irchat-pj/"
  81.   "URL for IRCHAT-PJ FTP pointer")
  82. (defconst irchat-pj-pointer-www-url "http://irc.fan.gr.jp/pj/"
  83.   "URL for IRCHAT-PJ WWW pointer")
  84. (defconst irchat-pj-pointer-cvs-pserver ":pserver:anonymous@cvs.fan.gr.jp:/home/cvs"
  85.   "PSERVER name for IRCHAT-PJ anonymous-CVS")
  86. (defconst irchat-pj-pointer-cvs-tag "irchat"
  87.   "Tag name for IRCHAT-PJ CVS")
  88. (defconst irchat-pj-pointer-irc-server "irc.friend.td.nu"
  89.   "Server hostname for IRCHAT-PJ IRC channel")
  90. (defconst irchat-pj-pointer-irc-port 6666
  91.   "Server port number for IRCHAT-PJ IRC channel")
  92. (defconst irchat-pj-pointer-irc-channel "#irchat-pj"
  93.   "Channel name for IRCHAT-PJ IRC")
  94.  
  95. ;; That's all
  96. (provide 'irchat-pj-copyright)
  97.  
  98. ;;; irchat-pj-copyright.el ends here
  99.