;;; riece-globals.el --- global variables and constants. ;; Copyright (C) 1998-2003 Daiki Ueno ;; Author: Daiki Ueno ;; Created: 1998-09-28 ;; Keywords: IRC, riece ;; This file is part of Riece. ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Code: (require 'riece-compat) ;riece-make-interval-regexp ;;; Constants: (defconst riece-channel-regexp (concat "\\([+&#]\\|!" (riece-make-interval-regexp "[A-Z0-9]" 5) "\\|!!\\)[^\0\7\r\n ,:]*\\(:[^\0\7\r\n ,:]*\\)?")) (defconst riece-user-regexp (concat "[][\\\\`_^{|}A-Za-z]" (riece-make-interval-regexp "[][\\\\`_^{|}A-Za-z0-9-]" 0 8))) ;;; Global variables: (defvar riece-server-process-alist nil "An alist mapping server names to processes.") (defvar riece-current-channel nil "The channel you currently have joined.") (defvar riece-current-channels nil "The channels you have currently joined.") (defvar riece-join-channel-candidate nil "The candidate for channel to be used with the next join command.") (defvar riece-save-variables-are-dirty nil "Non nil if the variables in `riece-saved-forms' are changed.") (defvar riece-polling 0 "Interval for polling the server.") (defvar riece-reconnect-with-password nil "If non-nil, attempt to reconnect with password.") (defvar riece-obarray-size 1327 "The size of obarray used by riece on channelname and username space.") ;;; Variables local to the server buffers: (defvar riece-server-name nil "The name of the server. Local to the server buffers.") (defvar riece-real-nickname nil "Your nickname the server offers. Local to the server buffers.") (defvar riece-last-nickname nil "The last nickname you requested. Local to the server buffers.") (defvar riece-nick-accepted nil "The flag your nickname is accepted by the server. Possible values are nil, `ok', and `sent'. Local to the server buffers.") (defvar riece-real-server-name nil "The server name offered by the server. Local to the server buffers.") (defvar riece-real-userhost nil "Your hostname the server offers. Local to the server buffers.") (defvar riece-user-at-host "" "The user@host for the current input. Local to the server buffers.") (defvar riece-user-at-host-type nil "The authentication type of `riece-user-at-host'. Possible values are 'ok 'not-verified 'fake or 'invalid. Local to the server buffers.") (defvar riece-supported-user-modes nil "User modes supported by server. Local to the server buffers.") (defvar riece-supported-channel-modes nil "Channel modes supported by server. Local to the server buffers.") (defvar riece-channel-filter "" "Filter of the result of NAMES or LIST. This enables us to use \\[universal-argument] with NAMES and TOPIC. Local to the server buffers.") (defvar riece-read-point nil "Point at the last input was seen. Local to the server buffers.") (defvar riece-obarray nil "Namespace of the IRC world. Local to the server buffers.") (defvar riece-coding-system nil "Coding system for process I/O. Local to the server buffers.") ;;; Variables local to the channel buffers: (defvar riece-freeze nil "If t, channel window is not scrolled. If 'own, channel window is not scrolled until you speak. Local to the channel buffers.") ;;; Modeline indicators: (defvar riece-channel-indicator "None" "A modeline indicator of the current channel.") (defvar riece-long-channel-indicator "None" "A modeline indicator of the current channel.") (defvar riece-channel-list-indicator "No channel" "A modeline indicator of the current joined channels.") (defvar riece-user-indicator nil) (defvar riece-away-indicator "-") (defvar riece-operator-indicator "-") (defvar riece-freeze-indicator "-") ;;; Buffers: (defvar riece-command-buffer nil "The command buffer.") (defvar riece-dialogue-buffer nil "Buffer for whole conversation.") (defvar riece-others-buffer nil "Buffer for other messages.") (defvar riece-channel-list-buffer nil "Buffer for channel list.") (defvar riece-user-list-buffer nil "Buffer for user list.") (defvar riece-channel-buffer nil "Buffer for messages arrived in the current channel.") (defvar riece-buffer-list nil) (defvar riece-overriding-server-name nil) (defconst riece-change-prefix "*** Change: ") (defconst riece-notice-prefix "*** Notice: ") (defconst riece-wallops-prefix "*** Notice: ") (defconst riece-error-prefix "*** Error: ") (defconst riece-info-prefix "*** Info: ") (defconst riece-prefix-regexp "\\*\\*\\* \\([^:]+: \\)") (defconst riece-time-prefix-regexp "[0-9][0-9]:[0-9][0-9] ") (provide 'riece-globals) ;;; riece-globals.el ends here