0010d2d2dbf1ff146ec8f85e93b86496fc0d1099
[euphorik.git] / js / conf.js
1 // coding: utf-8
2 // Copyright 2008 Gr�gory Burri
3 //
4 // This file is part of Euphorik.
5 //
6 // Euphorik is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // Euphorik is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
18
19 /**
20 * La configuration.
21 */
22 euphorik.conf = {
23 versionProtocole : 3, // version du protcole
24 nickDefaut : "<nick>",
25 nbMessageAffiche : 40, // (par page)
26 pseudoDefaut : "<nick>",
27 tempsAffichageMessageDialogue : 4000, // en ms
28 tempsKick : 15, // en minute
29 tempsBan : 60 * 24 * 3, // en minutes (3 jours)
30 smiles : {
31 "smile" : [/:\)/g, /:-\)/g],
32 "bigsmile" : [/:D/g, /:-D/g],
33 "clin" : [/;\)/g, /;-\)/g],
34 "cool" : [/8\)/g, /8-\)/g],
35 "eheheh" : [/:P/g, /:-P/g],
36 "lol" : [/\[-lol\]/g],
37 "petrus" : [/:F/g],
38 "spliff" : [/\[-spliff\]/g],
39 "oh" : [/:o/g, /:O/g],
40 "heink" : [/\[-heink\]/g],
41 "hum" : [/\[-hum\]/g],
42 "boh" : [/\[-boh\]/g],
43 "sniff" : [/:\(/g, /:-\(/g],
44 "triste" : [/\[-triste\]/g],
45 "pascontent" : [/>\(/g, /&gt;\(/g],
46 "argn" : [/\[-argn\]/g],
47 "redface" : [/\[-redface\]/g],
48 "bunny" : [/\[-lapin\]/g],
49 "chat" : [/\[-chat\]/g],
50 "renne" : [/\[-renne\]/g],
51 "star" : [/\[-star\]/g],
52 "kirby" : [/\[-kirby\]/g],
53 "slurp" : [/\[-slurp\]/g],
54 "agreed" : [/\[-agreed\]/g],
55 "dodo" : [/\[-dodo\]/g],
56 "bn" : [/\[-bn\]/g]
57 }
58 };