This file is indexed.

/usr/share/pyshared/pymucous/MucousChatRooms.py is in mucous 1:0.2+svn20100315.r1208-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
# This is part of the Mucous Museek Client, and distributed under the GPLv2
# Copyright (c) 2006 daelstorm. 
import threading
import os
import curses.wrapper
import time
## Chat Rooms
#			
class ChatRooms:
	## Constructor
	# @param self ChatRooms (class)
	# @param mucous Mucous (class)
	def __init__(self, mucous):
		## @var mucous 
		# Mucous (Class)
		self.mucous = mucous
		## @var shape
		# Layout of windows
		self.shape = self.mucous.Config["mucous"]["roombox"]
		## @var dimensions
		# Window placement
		self.dimensions = {}
		## @var windows
		# Curses Window instances
		self.windows = {"text": {}, "border": {} }
		## @var scrolling
		# dict containing vertical scroll position for chatroom, roombox and roomstatus
		self.scrolling = {"chatroom": -1, "roombox": 0, "roomstatus": -1 }
		## @var current
		# current room
		self.current = None
		## @var selected
		# selected window
		self.selected = "chatroom"
		## @var logs
		# dict containing logs for chatroom, roombox and roomstatus 
		self.logs = {"rooms": {},"roombox": {} , "roomstatus": {} }
		## @var rooms
		# dict of users in rooms
		self.rooms = {}
		## @var numticker
		# position of ticker
		self.numticker = 0
		self.tickersize = 150
		self.drawing_ticker = False
		## @var tickers
		# dict of rooms containing lists of tickers 
		self.tickers = {}
		if self.mucous.Config["tickers"]["ticker_cycle"] == "yes":
			time = float(self.mucous.Config["tickers"]["cycletime"])
		elif self.mucous.Config["tickers"]["ticker_scroll"] == "yes":
			time = float(self.mucous.Config["tickers"]["scrolltime"])
		## @var ticker_timer
		# Timer instance for displaying tickers
		self.ticker_timer = threading.Timer(time, self.DrawTicker)
		self.linewrapped = None
		
	## Create and draw current chat room's window and contents 
	# Cleanup stale windows first
	# Calls: SetRoom
	# @param self ChatRooms (class)
	def Mode(self):
		try:
			self.mucous.mode = "chat"
			self.mucous.UseAnotherEntryBox()
			self.mucous.PopupMenu.show = False
			self.linewrapped = None
			# Arrangements: 
			cs = None
			if "roomstatus" in self.windows["text"]:
				del self.windows["text"]["roomstatus"]
			if "roomstatus" in self.windows["border"]:
				del self.windows["border"]["roomstatus"]
			
			if "chat" in self.windows["text"]:
				del self.windows["text"]["chat"]
			if "chat" in self.windows["border"]:
				del self.windows["border"]["chat"]
				
			if self.shape == "big":
				w = self.dimensions["chat"] = {"height": self.mucous.h-13, "width": self.mucous.w-15, "top": 8, "left": 16}
				cs = self.dimensions["roomstatus"] = {"height": 4, "width": w["width"]-2, "top": 2, "left": w["left"]}
			elif self.shape == "widelist":
				w = self.dimensions["chat"] = {"height": self.mucous.h-13, "width": self.mucous.w-25, "top": 8, "left": 26}
				cs = self.dimensions["roomstatus"] ={"height": 4, "width": w["width"]-2, "top": 2, "left": w["left"]}
			elif self.shape in ("noroombox", "small"):
				w = self.dimensions["chat"] = {"height": self.mucous.h-13, "width": self.mucous.w, "top": 8, "left": 1}
				if self.shape in ("noroombox"):
					cs = self.dimensions["roomstatus"] = {"height": 4, "width": w["width"]-2, "top": 2, "left": 1}
					#cs["height"]-2, cs["width"]-1, cs["top"]+1,cs["left"]+1
				elif self.shape in ("small"):
					cs = self.dimensions["roomstatus"] = {"height": 4, "width": w["width"]-15-2, "top": 2, "left": 16}
			elif self.shape == "rightlist":
				w = self.dimensions["chat"] = {"height": self.mucous.h-13, "width": self.mucous.w-15, "top": 8, "left": 1}
				cs = self.dimensions["roomstatus"] = {"height": 4, "width": w["width"]-2, "top": 2, "left": 1}
			elif self.shape == "nostatuslog":
				w = self.dimensions["chat"] = {"height": self.mucous.h-7, "width": self.mucous.w-15, "top": 2, "left": 16}
			elif self.shape == "chat-only":
				w = self.dimensions["chat"] = {"height": self.mucous.h-7, "width": self.mucous.w, "top": 2, "left": 1}
			
			if cs != None:
				brw = self.windows["border"]["roomstatus"] = curses.newwin(cs["height"]+2, cs["width"]+2, cs["top"]-1, cs["left"]-1)
				btw= self.windows["text"]["roomstatus"] = brw.subwin(cs["height"], cs["width"], cs["top"],cs["left"])
				btw.scrollok(0)
				brw.leaveok(1)
				btw.leaveok(1)
					
			self.dimensions["chat"]["start"] = 0
			try:
				mw = self.windows["border"]["chat"] = curses.newwin(w["height"]+2, w["width"], w["top"]-1, w["left"]-1)
				if self.mucous.username == None:
					#mw.border()
					mw.noutrefresh()
					
				tw =self.windows["text"]["chat"] = self.windows["border"]["chat"].subwin(w["height"], w["width"], w["top"], w["left"]-1)
			except Exception, e:
				self.mucous.Help.Log("debug", "Chat Mode: " + str(e))
			mw.leaveok(1)
			tw.scrollok(0)
			tw.leaveok(1)
			tw.idlok(1)

			if self.mucous.Alerts.log in ( "New Chat", "Nick Mention"):
				self.mucous.Alerts.setStatus("")	

			self.Change(self.current)

			
			curses.doupdate()
		except Exception, e:
			self.mucous.Help.Log("debug", "ChatRooms.Mode: " + str(e))
			
	def ClearLog(self):
		if self.current is None or self.current not in self.logs["rooms"]:
			return
		
		self.logs["rooms"][self.current] = []
		if self.mucous.mode == "chat":
			self.Change(self.current)
			
	## Joined a room
	# @param self ChatRooms (class)
	# @param tickers dictionary (users: tickets)
	def CleanTickers(self, tickers):
		if tickers is None:
			return {}
		CleanedTickers = {}
		for user, ticket in tickers.items():
			CleanedTickers[user] = ticket.strip()
		return CleanedTickers
		
	## Joined a room
	# @param self ChatRooms (class)
	def Joined(self, name, users, tickers=None):
		try:
			if name not in self.logs["rooms"]:
				self.logs["rooms"][name] = []
				self.logs["roomstatus"][name] = []
				self.OldLogs(name)
						
			
			for user in users:
				self.mucous.user["status"][user] = users[user][0]
				self.mucous.user["statistics"][user] = users[user][1], users[user][2 ], users[user][3], users[user][4]
					
			self.rooms[name] = users.keys()

			
			CleanedTickers = self.CleanTickers(tickers)
			if tickers:
				self.tickers[name] = CleanedTickers
			else:
				self.tickers[name] = {}
		except Exception, e:
			self.mucous.Help.Log("debug", "ChatRooms.Joined: " + str(e))
			
	## Leave a room or current room
	# @param self ChatRooms (class)
	# @param room Chat room to be left :: the current room is left if none is selected
	def Leave(self, room=None):
		if room:
			if room in self.rooms:
				self.mucous.D.LeaveRoom(room)
			return
		if self.current:
			self.mucous.D.LeaveRoom(self.current)
			
	## Left a room
	# @param self ChatRooms (class)
	# @param room room that was left
	def Left(self, room):
		
		
		joined = self.rooms.keys()
		joined.sort(key=str.lower)
		
		if room == self.current:
			if len(joined) == 1:
				self.Change(None)
			else:
				ix = joined.index(room)
				if ix > 0:
					ix -= 1
				elif ix == 0:
					ix = -1
				self.Change(joined[ix])
				self.AppendChat("Status", joined[ix], '', "Left room %s" % room)
		del self.rooms[room]
		del self.tickers[room]
		del self.logs["roomstatus"][room]
		del self.logs["rooms"][room]
		if joined == []:
			self.Change(None)
			self.DrawChatWin()
			self.windows["text"]["chat"].noutrefresh()
		else:
			joined.sort(key=str.lower)
		if room in self.mucous.Alerts.alert["CHAT"]:
			del self.mucous.Alerts.alert["CHAT"][room]
		curses.doupdate()
		if self.mucous.Alerts.log == "%s" % room[:14]:
			self.mucous.Alerts.setStatus("")
			
	def SaidInRoom(self, room, user, text):
	
		text = text.replace('\t', "     ").replace(chr(10), "\\n")
		
		if text[:4] == "/me ":
			self.AppendChat("Me", room, user, text[4:])
			if self.mucous.username in text[4:]:
				if self.mucous.mode != "chat":
					self.mucous.Alerts.setStatus(room)
					
					self.mucous.Alerts.alert["CHAT"][room] = "nick"
					self.mucous.Beep()
				elif self.mucous.mode == "chat" and self.current != room:
					self.mucous.Alerts.setStatus(room[:14])
					self.mucous.Alerts.alert["CHAT"][room] = "nick"
					self.mucous.Beep()
				
			else:
				if self.mucous.mode != "chat":
					self.mucous.Alerts.setStatus("%s" % room)
					if room not in self.mucous.Alerts.alert["CHAT"]:
						self.mucous.Alerts.alert["CHAT"][room] = "normal"
				elif self.mucous.mode == "chat" and self.current != room:
					self.mucous.Alerts.setStatus(room)
					if room not in self.mucous.Alerts.alert["CHAT"]:
						self.mucous.Alerts.alert["CHAT"][room] = "normal"
		else:
			if self.mucous.username in text:
				self.AppendChat("Mentioned", room, user, text)
				if self.mucous.mode != "chat":
					self.mucous.Alerts.setStatus(room)
					self.mucous.Beep()
					self.mucous.Alerts.alert["CHAT"][room] = "nick"
				elif self.mucous.mode == "chat" and self.current != room:
					self.mucous.Alerts.setStatus(room)
					self.mucous.Beep()
					self.mucous.Alerts.alert["CHAT"][room] = "nick"

			else:
				self.AppendChat("Normal", room, user, text)
				if self.mucous.mode != "chat":
					self.mucous.Alerts.setStatus( room)
					if room not in self.mucous.Alerts.alert["CHAT"]:
						self.mucous.Alerts.alert["CHAT"][room] = "normal"

				elif self.mucous.mode == "chat" and self.current != room:
					self.mucous.Alerts.setStatus(room)
					if room not in self.mucous.Alerts.alert["CHAT"]:
						self.mucous.Alerts.alert["CHAT"][room] = "normal"
		self.mucous.HotKeyBar()
					
		if self.mucous.Config["mucous"]["logging"] == "yes":
			message = "[%s]\t%s" % (user, text)
			self.mucous.FileLog("rooms", time.strftime("%d %b %Y %H:%M:%S"), room, message )
				
	## Say message In Chat room or current room
	# :: Split \n (newlines) into seperate messages
	# @param self ChatRooms (class)
	# @param room Chat room
	# @param message test
	def SayInChat(self, room, message):
		try:
			
			message = self.mucous.dencode_language(message)
			if room == None or message == None:
				return
			if '\\n' in message:
				
				splited =  message.split('\\n')
				
				if len(splited) > 5:
					
					for i in range(5):
						self.mucous.D.SayRoom(room, splited[i])
					self.mucous.Help.Log("debug", "Your chat message was really long, so it was cut to keep you from getting muted.")
				else:
					for i in range(len(splited)):
						self.mucous.D.SayRoom(room, splited[i])
				
			else:
				self.mucous.D.SayRoom(room, message)
					
		except Exception, e:
			self.mucous.Help.Log("debug", "SayInChat: " + str(e))

				

	## Append status change to log
	# @param self ChatRooms (Class)
	# @param user Username
	# @param room Chat room
	# @param did Is one of [ticker, join, part, change]
	# @param what contains (the ticker if did is ticker) or (away, offline, online if change)
	def AppendStatus(self, user, room, did, what):
		try:

			yes = 0
			if room not in self.logs["roomstatus"]:
				self.logs["roomstatus"][room] = []
			oldlen = len(self.logs["roomstatus"][room])
			if did == "ticker" and what != '':
				if user in self.rooms[room]:
					if room == self.current:
						yes =1
						
			elif did == "join":
				self.logs["roomstatus"][room].append("%s %s joined" % (time.strftime("%H:%M:%S"), user))
				if room == self.current:
					yes =1
					
			elif did == "left":
				self.logs["roomstatus"][room].append("%s %s left" % (time.strftime("%H:%M:%S"), user))
				if room == self.current:
					yes =1
			elif did == "change":
				for rooms11 in self.rooms.keys():
					if user in self.rooms[rooms11]:
						string = "%s %s is %s" % (time.strftime("%H:%M:%S"), user, what)
						if self.logs["roomstatus"][rooms11] == []:
							self.logs["roomstatus"][rooms11].append(string)
							if rooms11 == self.current:
								yes =1
						elif string[10:] != self.logs["roomstatus"][rooms11][-1][10:]:
							self.logs["roomstatus"][rooms11].append(string)
							if rooms11 == self.current:
								yes = 1
								
			if "roomstatus" not in self.windows["text"]:
				return			
			tw = self.windows["text"]["roomstatus"]
			if self.mucous.mode == "chat" and yes == 1:
				if self.scrolling["roomstatus"] >= oldlen -1:
					if len(self.logs["roomstatus"][room]) > 305:
						del self.logs["roomstatus"][room][0]
					self.scrolling["roomstatus"] = -1
					self.DrawStatusText()

		except Exception, e:
			self.mucous.Help.Log("debug", "AppendStatus: " + str(e))
	## Join a room
	# @param self is ChatRooms (Class)
	# @param room is a text string
	def JoinRoom(self, room):
		try:
			self.mucous.D.JoinRoom( self.mucous.dlang( room ) )
		except Exception,e:
			self.mucous.Help.Log("debug", "JoinRoom: " + str(e))
	## A user joined a room we are in
	# @param self is ChatRooms (Class)
	# @param room Room name
	# @param user User name
	# @param data status, speed, downloads, files, dirs, other
	def UserJoined(self, room, user, data):
		try:
			status, speed, downloads, files, dirs, other = data 
			s = self.dimensions["chat"]
			did = "join"
			what = data
			if self.mucous.config !=  {}: 
				if "ignored" in self.mucous.config.keys() and user not in self.mucous.config["ignored"].keys():
					self.AppendStatus(user, room, did, what)
				else:
					self.AppendStatus(user, room, did, what)
			if user not in self.rooms[room]:
				self.rooms[room].append(user)
			self.mucous.user["statistics"][user] = speed, downloads, files, dirs
			self.mucous.user["status"][user] = status
			# correct placement in roombox
			
			if self.mucous.mode == "chat" and self.current == room:
				if self.selected  == "roombox":
					self.rooms[room].sort(key=str.lower)
					if self.rooms[room].index(user) < self.scrolling[self.selected]:
						self.scrolling[self.selected] += 1

				self.DrawBox()
				for lines in self.logs["rooms"][self.current][ len(self.logs["rooms"][self.current]) - s["height"]:]:
					# Update Chat history if user changes status
					if lines[2] == user:
						self.SetRoom(self.current)
						break
				curses.doupdate()
		except Exception, e:
			self.mucous.Help.Log("debug", "ChatRooms.UserJoined: " + str(e))
			
	def DrawTickerScroll(self, tickers):
		longstring = ""
		for user in tickers:
			if self.mucous.config.has_key("ignored") and self.mucous.config["ignored"].has_key(user):
				continue
			if not self.tickers[self.current].has_key(user):
				continue
			message = self.mucous.dlang(self.tickers[self.current][user])[:self.tickersize]
			if len(message) == self.tickersize:
				message += "..."
			longstring += "[%s] %s " % (user, message)
		if self.shape in ("nostatuslog", "chat-only"):
			bw = self.windows["border"]["chat"]
			s = self.dimensions["chat"]
			padd = -3; posy = 0; posx = 2
		else:

			bw = self.windows["border"]["roomstatus"]
			s = self.dimensions["roomstatus"]
			padd = 0; posy = 5; posx = 1

		if self.numticker >= len(longstring):
			self.numticker = 0
		part = longstring[self.numticker:self.numticker+s["width"]-2+padd]
		while len(part) < s["width"]-2 +padd:
			part += longstring[:(s["width"]-2+padd - len(part))]
		fill = (s["width"]-2 - len(part) +padd) * " "
		try:
			fullmessage = ""
			for m in part:
				fullmessage += curses.unctrl(m)
			bw.addstr(posy, posx, "<%s%s>" %(fullmessage[:s["width"]-3], fill))
			bw.refresh()
			
		except Exception, error:
			self.Help.Log("debug", error)
		self.numticker += 1
		#if self.numticker >= len(tickers):
			#self.numticker = 0
		self.ticker_timer.cancel()
		self.ticker_timer = threading.Timer(float(self.mucous.Config["tickers"]["scrolltime"]), self.DrawTicker)
		self.ticker_timer.start()
	
		
	def DrawTickerCycle(self, tickers):
		if self.numticker >= len(tickers):
			self.numticker = 0
		names = tickers[self.numticker]
		n = len(names)
		try:
			if self.mucous.PopupMenu.show == True: raise Exception,  "Noticker"
			if self.shape not in ("nostatuslog", "chat-only"):
				if "roomstatus" not in self.windows["border"]:
					return
				bw = self.windows["border"]["roomstatus"]
				s = self.dimensions["roomstatus"]
				tick = str(self.tickers[self.current][names][:s["width"]-7-n])
				fill = (s["width"]-6-len(tick)-len(names)) * " "
				string = "< [%s] %s%s>" % (names, tick, fill)
				bw.addstr(5, 1, self.mucous.dlang( string ))
				bw.refresh()

			elif self.shape in ("nostatuslog", "chat-only"):
				mw = self.windows["border"]["chat"]
				s = self.dimensions["chat"]
				tick = str(self.tickers[self.current][names][:s["width"]-25-n])
				fill = (s["width"]-25-len(tick)-len(names)) * " "
				string = "< [%s] %s%s>" %(names, tick, fill)
				mw.addstr(0, 18, self.mucous.dlang( string ))
				mw.refresh()
		except Exception, error:
			self.Help.Log("debug", error)


		self.numticker += 1

		self.ticker_timer.cancel()
		self.ticker_timer = threading.Timer(float(self.mucous.Config["tickers"]["cycletime"]), self.DrawTicker)
		self.ticker_timer.start()
		
	## Loop and Draw the tickers in one of two ways (scrolling, cycling)
	# :: Scrolling shows the entire ticker, while Cycling shows only the part that fits in the viewable area
	# @param self is ChatRooms (Class)
	def DrawTicker(self):
		if self.mucous.mode != "chat" or self.current not in self.tickers or self.mucous.Config["tickers"]["tickers_enabled"] != 'yes':
			self.drawing_ticker = False
			self.ticker_timer.cancel()
			return
		if self.drawing_ticker:
			return
		
		if self.mucous.PopupMenu.show:
			self.ticker_timer.cancel()
			self.ticker_timer = threading.Timer(float(self.mucous.Config["tickers"]["scrolltime"]), self.DrawTicker)
			self.ticker_timer.start()
			return
		self.drawing_ticker = True
		try:
			sorted_tickers = self.tickers[self.current].keys()
			if sorted_tickers == []:
				self.ticker_timer.cancel()
				try:
					self.DrawStatusWin()
					self.DrawStatusText()
					curses.doupdate()
				except:
					pass
			else:
				sorted_tickers.sort(key=str.lower)
				if self.mucous.Config["tickers"]["ticker_scroll"] == "yes":
					self.DrawTickerScroll(sorted_tickers)
				else:
					self.DrawTickerCycle(sorted_tickers)
				curses.doupdate()
		except Exception,e:
			self.mucous.Help.Log("debug", "ChatRooms.DrawTicker: " + str(e))
		self.drawing_ticker = False
		
	## Draw the chat window's border
	# @param self is ChatRooms (Class)
	def DrawChatWin(self):
		try:
			s = self.dimensions["chat"]
			mw = self.windows["border"]["chat"]
			if self.selected == "chatroom":
				mw.attron(self.mucous.colors["green"])
				mw.hline(0, 0, curses.ACS_HLINE, s["width"]-1)
				mw.hline(s["height"]+1, 0, curses.ACS_HLINE, s["width"]-1)
				mw.addstr(0, 0, "Oo",  self.mucous.colors["green"] | curses.A_BOLD)
				mw.addstr(0, 3, "< Chat Rooms >",  self.mucous.colors["green"] | curses.A_BOLD)
				mw.addstr(0, s["width"]-1, "^",  self.mucous.colors["green"] | curses.A_BOLD)
				try:
					mw.addstr(s["height"]+1, s["width"]-1, "v",  self.mucous.colors["green"] | curses.A_BOLD)
				except: pass
				mw.addstr(s["height"]+1, 2, "< "+str(abs(self.scrolling["chatroom"]))+" >", self.mucous.colors["green"] | curses.A_BOLD)
				if self.current != None:
					if len(self.linewrapped) -1 <= abs(self.scrolling["chatroom"]):
						mw.addstr(s["height"]+1, 10, "< AutoScrolling >", self.mucous.colors["green"] | curses.A_BOLD)
				
			else:
				mw.hline(0, 0, curses.ACS_HLINE, s["width"]-1)
				mw.hline(s["height"]+1, 0, curses.ACS_HLINE, s["width"]-1)
				mw.addstr(0, 0, "Oo", curses.A_BOLD)
				mw.addstr(0, 3, "< Chat Rooms >",   curses.A_BOLD)
				mw.addstr(0, s["width"]-1, "^",  curses.A_BOLD)
				try:
					mw.addstr(s["height"]+1, s["width"]-1, "v",  curses.A_BOLD)
				except: pass
# 				mw.addstr(s["height"]+1, 2, "< "+str(abs(self.scrolling["chatroom"]))+" >", curses.A_BOLD)
			mw.noutrefresh()
			
		except Exception,e :
			self.mucous.Help.Log("debug", "ChatRooms.DrawChatWin: " + str(e))

	## Mouse Coordinates in the Chat Rooms Mode
	# @param self is ChatRooms (class)
	# @param x is the horizontal position from the left
	# @param y is the vertical postion from the top
	# @param z is unimportant
	# @param event is the mouse event (button, doubleclick, etc) represented by a number
	def MouseChat(self, x, y, z, event):
		try:
			w = self.dimensions["chat"]
			if y == w["top"]-1 and x >= w["left"]-1 and x < w["left"]+3:
				self.ChatLayout()
				return
			# Clickable room switch
			
			if "roombox" in self.dimensions and self.shape not in ( "noroombox", "chat-only"):
				roombox = self.dimensions["roombox"]
				if y >= roombox["top"]-1 and y < roombox["top"] + roombox["height"] and x < roombox["width"] + roombox["left"] and x > roombox["left"]:
					if self.selected != "roombox":
						self.selected = "roombox"
						self.Mode()
					y -= roombox["top"]
					if "start" not in roombox:
						return
					if y  + roombox["start"] in range(len(self.logs["roombox"][self.current])):
						
						sup = y  + roombox["start"]
						if event in ( 4096, 16384):
							if sup != self.scrolling["roombox"]:
								self.scrolling["roombox"] = sup
							self.DrawBox()
							
							self.mucous.PopupMenu.Create("roombox", 0, True)
							curses.doupdate()
						else:
							if sup != self.scrolling["roombox"]:
								self.scrolling["roombox"] = sup
								self.DrawBox()
								curses.doupdate()
					return
				elif y == roombox["top"] + roombox["height"] and x < roombox["width"] + roombox["left"] and x > roombox["left"]:
					self.mucous.ModifyConfig("autojoin", self.current, '')
						
			if y == self.mucous.h-3 or y == self.mucous.h-4:
				if x>= self.mucous.w-27 and x < self.mucous.w-18:
					self.mucous.PopupMenu.Create("encoding", 0, True)
				
				elif x >= self.mucous.w-17 and x < self.mucous.w-1:
					joined = self.rooms.keys()
					joined.sort(key=str.lower)
					if not self.current in joined:
						ix = 0
					else:
						ix = joined.index(self.current)
						
						if x >= self.mucous.w-9 and x < self.mucous.w-1:
							# Next Button
							ix += 1
						elif x <= self.mucous.w-10 and x >= self.mucous.w-17:
							# Prev Button
							ix -= 1
						else:
							return
						if ix < 0:
							ix = -1
						elif ix >= len(joined):
							ix = 0
					self.Change(joined[ix])
					
			elif y  in (w["top"] + w["height"], w["top"] + w["height"]-1) and x >= w["left"] + w["width"]-5 and x <= w["left"] + w["width"]:
				self.mucous.key = "KEY_NPAGE"
				self.mucous.edit.ScrollText("KEY_NPAGE")
				
			elif y in ( w["top"], w["top"]+1)  and x >= w["left"] + w["width"]-5 and x <= w["left"] + w["width"]:
				self.mucous.key = "KEY_PPAGE"
				self.mucous.edit.ScrollText("KEY_PPAGE")
			else:
				if y >= w["top"]-1 and y < w["top"] + w["height"] +1 and x >= w["left"] -1 and x < w["left"] +w["width"]+1:
					if self.selected != "chatroom":
						self.selected = "chatroom"
						self.Mode()
				if "roomstatus" in self.dimensions and self.shape not in ( "nostatuslog", "chat-only") and self.selected != "roomstatus":
					w =  self.dimensions["roomstatus"]
					if y >= w["top"]-1 and y < w["top"] + w["height"] +1 and x >= w["left"] -1 and x < w["left"] +w["width"]+1:
						self.selected = "roomstatus"
						self.Mode()
		except Exception, e:
			self.mucous.Help.Log("debug", "MouseChat: " +str(e) )
			
	## Read Old Chat Room Logs from Disk
	# @param self is ChatRooms (class)
	# @param room room's name used to get log file
	def OldLogs(self, room):
		try:
			# Read from Chat Room Logs
			if "\\" in room: room = room.replace("/", "\\")
			if not os.path.exists( os.path.expanduser( self.mucous.Config["mucous"]["log_dir"]) +"/rooms/" + room):
				return
			path = os.path.expanduser( self.mucous.Config["mucous"]["log_dir"]) + "/rooms/" + room
			f = open(path, "r")
			a = f.read()
			f.close()
			lines = a.split("\n" )
			numlines = -100
			if abs(numlines) > len(lines):
				numlines = 0
			if len(lines) <= abs(numlines):
				numlines = 0
			lastday = None
			for line in lines[numlines:]:
				if line == "":
					continue
				line = line.replace("\\n", "\n")
				timex = line[12:20]
				month = line[3:6]
				day = line[:2]
				year = line[7:11]
				if lastday != None and day != lastday:
					self.logs["rooms"][room].append(["Date", "--------", "", "%s %s %s" % (day, month, year)])
				lastday = day
				if line[21] == "[":
					user = line[22:]
					if line.find("\t") == -1:
					# old format
						user = user[:user.find("]")]
						message = line[21+len(user)+3:]
					else:
						# new format with Tab
						user = user[:user.find("\t")-1]
						message = line[line.find("\t")+1:]
				else:
					user = line[21:]
					user = user[:user.find(" ")]
					message = line[21+len(user)+1:]
					
				
				if message[:4] == "/me ": 
					full_message = ["Me", timex, user, message[4:]]
				else:
					full_message = ["Normal", timex, user, message]
				self.logs["rooms"][room].append(full_message)
			self.AppendChat("Status", room, '', "Connected to Museek")
			#self.logs["rooms"][room].append(["Status", "--------", "", "Connected to Museek"])
			
		except Exception,e:
			self.mucous.Help.Log("debug", "OldLogs: " +str( e) )
			
	## Draw Status Window Text
	# @param self is ChatRooms (class)
	def DrawStatusText(self):
		try:
			if self.shape in ("nostatuslog", "chat-only"):
				return
			if self.mucous.PopupMenu.show == True:
				return
			if self.mucous.mode != "chat":
				return
			s = self.dimensions["chat"]
			tw = self.windows["text"]["roomstatus"]
			w = self.dimensions["roomstatus"]
			
			tw.erase()
			tw.idlok(1)
	
			if self.current == None or self.logs["roomstatus"][self.current] == []:
				tw.noutrefresh()
				return
				
		
			if self.scrolling["roomstatus"] == -1:
				self.scrolling["roomstatus"] = len(self.logs["roomstatus"][self.current])

			clipped_list, self.scrolling["roomstatus"], self.dimensions["roomstatus"]["start"] = self.mucous.FormatData.scrollbox(self.logs["roomstatus"][self.current], self.scrolling["roomstatus"], self.dimensions["roomstatus"]["height"])
			count = 0
			try:
				for line in clipped_list:
					#self.mucous.Help.Log("debug", line +str(self.scrolling["roomstatus"]))
					if len(line) > w["width"]:
						line = line [:w["width"] -len(line) ]
					else:
						line += " " * (w["width"] -len(line))
					if count + self.dimensions["roomstatus"]["start"] == self.scrolling["roomstatus"]:
						tw.addstr(self.mucous.dlang( line) , curses.A_BOLD)
					else:
						tw.addstr(self.mucous.dlang( line ))
					count += 1

			except Exception, e:
				pass

			
			tw.noutrefresh()
		except Exception, e:
			self.mucous.Help.Log("debug", "DrawStatusText: " + str(e))
					
	## Draw the contents of the user-box
	# A status asterix (*) followed by a username
	# @param self is ChatRooms (class)
	# @param user User's name
	# @param start Position to indicate highlight status
	def DrawBoxUsers(self, user, start):
		# RoomBox List Display
		try:
			w = self.dimensions["roombox"]
			mw = self.windows["border"]["roombox"]
			tw = self.windows["text"]["roombox"]
			if self.current == None or self.logs["roombox"][self.current] == []:
				tw.addstr("No one")
				return
			try:
				if user in self.mucous.user["status"]:
					if self.mucous.user["status"][user] == 1:
						tw.addstr('* ', self.mucous.colors["yellow"]|curses.A_BOLD)
					elif  self.mucous.user["status"][user] == 2:
						tw.addstr('* ', self.mucous.colors["green"]|curses.A_BOLD)
					elif self.mucous.user["status"][user] == 0:
						tw.addstr('* ', self.mucous.colors["red"]|curses.A_BOLD)
				else:
					tw.addstr('* ', curses.A_BOLD)
				
				if self.mucous.config.has_key("banned") and user in self.mucous.config["banned"].keys():
					if self.scrolling["roombox"] == self.logs["roombox"][self.current].index(user):
						attrib = curses.A_BOLD | curses.A_REVERSE | self.mucous.colors["red"]
					else: attrib = self.mucous.colors["red"]| curses.A_BOLD 
					
				elif self.mucous.config.has_key("ignored") and user in self.mucous.config["ignored"].keys():
					if self.scrolling["roombox"] == self.logs["roombox"][self.current].index(user):
						attrib = curses.A_BOLD | curses.A_REVERSE | self.mucous.colors["yellow"]
					else: attrib = self.mucous.colors["yellow"]| curses.A_BOLD 
					
				elif self.mucous.config.has_key("trusted") and user in self.mucous.config["trusted"].keys():
					if self.scrolling["roombox"] == self.logs["roombox"][self.current].index(user):
						attrib = curses.A_BOLD | curses.A_REVERSE | self.mucous.colors["cyan"]
					else:
						attrib = self.mucous.colors["cyan"] | curses.A_BOLD 
							
				elif self.mucous.config.has_key("buddies") and user in self.mucous.config["buddies"].keys():
					if self.scrolling["roombox"] == self.logs["roombox"][self.current].index(user):
						attrib = curses.A_BOLD | curses.A_REVERSE | self.mucous.colors["green"]
					else:
						attrib = self.mucous.colors["green"]| curses.A_BOLD 
				else:
					if self.scrolling["roombox"] == self.logs["roombox"][self.current].index(user):
						attrib = curses.A_BOLD | curses.A_REVERSE 
					else:
						attrib = curses.A_NORMAL	
			
				if len(user[:w["twidth"]-2]) < w["twidth"]-2:
					space = " " * ( w["twidth"]-2 - len(user[:w["twidth"]-2]))
				else: space =''
				tw.addstr(self.mucous.dlang(user[:w["twidth"]-2])+space, attrib)	
				
			except:
				pass
		except Exception, e:
			self.mucous.Help.Log("debug", "DrawBoxUsers " +str(e))	
			
	## Create the window and border of the user-box
	# @param self is ChatRooms (class)
	def DrawBox(self):
		# RoomBox Shape Display
		try:
			
			if self.mucous.mode != 'chat' or self.shape == "noroombox":
				return
			# Cleanup stale windows
			if "roombox" in self.windows["text"]:
				del self.windows["text"]["roombox"]
			if "roombox" in self.windows["border"]:
				del self.windows["border"]["roombox"]
			
			if self.shape in ("big", "nostatuslog", "widelist", "rightlist"):
				w = self.dimensions["chat"]
				if self.shape == "rightlist":
					s = self.dimensions["roombox"] = {"height": self.mucous.h-7, "top": 2, "left": (w["width"]), "width": self.mucous.w-w["width"], "start": -1 }
				else:
					s = self.dimensions["roombox"] = {"height": self.mucous.h-7, "top": 2, "left": 0, "width": self.mucous.w-w["width"], "start": -1 }
				# Create wi
				mw = self.windows["border"]["roombox"]  = curses.newwin(s["height"]+2, s["width"], s["top"]-1, s["left"])
				if self.selected == "roombox":
					mw.attron(self.mucous.colors["green"])

				mw.attroff(self.mucous.colors["green"])
				if self.shape == "rightlist":
					self.dimensions["roombox"]["twidth"] = s["width"]-1
					self.dimensions["roombox"]["tleft"] = s["left"]+1
				else:
					self.dimensions["roombox"]["twidth"] = s["width"]-1
					self.dimensions["roombox"]["tleft"] = s["left"]
				tw = self.windows["text"]["roombox"] = mw.subwin(s["height"], s["twidth"], s["top"], s["tleft"])
				
			elif self.shape == "small":
				s = self.dimensions["roombox"] = {"height": 4, "top": 2, "left": 0,  "width": 15}
				
				mw = self.windows["border"]["roombox"] = curses.newwin(s["height"]+2, s["width"], s["top"]-1, s["left"])
				if self.selected == "roombox":
					mw.attron(self.mucous.colors["green"])

				mw.attroff(self.mucous.colors["green"])
				self.dimensions["roombox"]["twidth"] = s["width"] -1
				tw = self.windows["text"]["roombox"] = mw.subwin(s["height"], s["twidth"], s["top"], s["left"])
				
			if self.shape in ("big", "small", "nostatuslog", "widelist", "rightlist"):
				tw.scrollok(0)
				tw.idlok(1)
				mw.leaveok(1)
				tw.leaveok(1)
			

				if self.current != None:
					try:
						if self.selected == "roombox":
							mw.addstr(0, 0, "Users: "+str(len(self.rooms[self.current])), self.mucous.colors["green"]|curses.A_BOLD)
						else:

							mw.addstr(0, 0, "Users: "+str(len(self.rooms[self.current])),  curses.A_BOLD)
						
					except:
						pass
					if self.selected == "roombox":
						cs  = self.mucous.colors["green"] |curses.A_BOLD
					else:
						cs  = curses.A_BOLD
					if "autojoin" in self.mucous.config and self.current in self.mucous.config["autojoin"].keys():
						mw.addstr(self.dimensions["roombox"]["height"]+1, 0, "[x] AutoJoined",  cs)
					else:
						cs  = curses.A_BOLD
						mw.addstr(self.dimensions["roombox"]["height"]+1, 0, "[ ] AutoJoined",  cs)
				mw.noutrefresh()
			
				if self.current != None:
					self.logs["roombox"][self.current] = []
					if len( self.rooms[self.current] ) > 0:
						self.logs["roombox"][self.current] = self.rooms[self.current]
						self.logs["roombox"][self.current].sort(key=str.lower)
				
					try:
						if self.logs["roombox"][self.current] != []:
							clipped_list, self.scrolling["roombox"], self.dimensions["roombox"]["start"] = self.mucous.FormatData.scrollbox(self.logs["roombox"][self.current], self.scrolling["roombox"], self.dimensions["roombox"]["height"])
							# Draw users
							self.FormatBox()
						else:
							tw.addstr("* Empty")
							tw.noutrefresh()
					except Exception, e:
						self.mucous.Help.Log("debug", "RSB: " + str(e))
			#curses.doupdate()
		except Exception, e:
			self.mucous.Help.Log("debug", "DrawBox " +str(e))
			
			
	## Start displaying tickets in one second
	# @param self is ChatRooms (class)
	def TickersStartTimer(self):
		try:
			if self.mucous.mode == "chat":

				if self.rooms.keys() != []:
					self.numticker = 0
					self.ticker_timer.cancel()
					self.ticker_timer = threading.Timer(1.0, self.DrawTicker)
					self.ticker_timer.start()
		except Exception, e:
			self.mucous.Help.Log("debug", "TickersStartTimer: " + str(e))
	## Toggle whether tickers are displayed or not 
	# @param self is ChatRooms (class)
	def ToggleTickersDisplay(self):
		try:
			if str(self.mucous.Config["tickers"]["tickers_enabled"]) == 'no':
				self.mucous.Config["tickers"]["tickers_enabled"] = 'yes'
				
			elif str(self.mucous.Config["tickers"]["tickers_enabled"]) == 'yes':
				self.mucous.Config["tickers"]["tickers_enabled"] = 'no'
			if self.mucous.mode=="setup":
				self.mucous.Setup.Mode()
		except Exception, e:
			self.mucous.Help.Log("debug", "ToggleTickersDisplay: "+str(e))
			
	## Toggle the way Tickers are displayed (Scrolling, Cycling) 
	# @param self is ChatRooms (class)
	def ToggleTickers(self):
		try:
			if self.mucous.Config["tickers"]["ticker_cycle"] == 'no':
				self.mucous.Config["tickers"]["ticker_cycle"] = 'yes'
				if str(self.mucous.Config["tickers"]["ticker_scroll"]) == 'yes':
					self.mucous.Config["tickers"]["ticker_scroll"] = 'no'
				
			elif self.mucous.Config["tickers"]["ticker_cycle"] == 'yes':
				self.mucous.Config["tickers"]["ticker_cycle"] = 'no'
				if str(self.mucous.Config["tickers"]["ticker_scroll"]) == 'no':
					self.mucous.Config["tickers"]["ticker_scroll"] = 'yes'
				
				
			#self.ticker_timer.cancel()
			if self.mucous.mode=="chat":
				self.DrawStatusWin()
				self.DrawStatusText()
				curses.doupdate()
			elif self.mucous.mode=="setup":
				self.mucous.Setup.Mode()
		except Exception, e:
			self.mucous.Help.Log("debug", "ToggleTickers: "+str(e))
			
	## Interator for Chat Room User List
	# Clears, and starts drawing from the scroll position
	def FormatBox(self):
		try:
			w = self.dimensions["roombox"]
			lol = self.logs["roombox"][self.current]
			mw = self.windows["border"]["roombox"]
			tw = self.windows["text"]["roombox"]
			tw.erase()
			clipped_list, self.scrolling["roombox"], self.dimensions["roombox"]["start"] = self.mucous.FormatData.scrollbox(lol, self.scrolling["roombox"], w["height"])
			for lines in clipped_list:
				self.DrawBoxUsers(lines, w["start"])
			tw.noutrefresh()
		except Exception, e:
			self.mucous.Help.Log("debug", "FormatBox: " + str(e))
			
	## Format Current Chat Room
	# @param self is ChatRooms (class)
	def FormatChatText(self):
		try:
			if self.current != None:
				w = self.dimensions["chat"]
				selected_log = self.logs["rooms"][self.current]
				#if self.scrolling["chatroom"] == -1 or self.scrolling["chatroom"] >  w["height"]:
					#if len(selected_log) > w["height"]:
						#selected_log = selected_log[:]
				#lol = self.LineWrap(selected_log, w)
				if self.linewrapped == None:
					self.linewrapped = self.LineWrap(selected_log, w) 

				if self.scrolling["chatroom"] == -1:
					self.scrolling["chatroom"] = len(self.linewrapped)
	
				clipped_list, self.scrolling["chatroom"], self.dimensions["chat"]["start"] = self.mucous.FormatData.scrollbox(self.linewrapped, self.scrolling["chatroom"], w["height"])
				
				self.windows["text"]["chat"].erase()
				for lines in clipped_list:
					self.DrawChatText(lines)
	
			self.DrawChatWin()
			self.windows["text"]["chat"].noutrefresh()
		except Exception, e:
			self.mucous.Help.Log("debug", "FormatChatText: " + str(e))
			
	## Insanely complex line wraping for chat messages
	# Needed for proper scrolling
	# @param self is ChatRooms (class)
	# @param the_list self.logs["rooms"][self.current]
	# @param w self.dimensions["chat"]
	# @return cut_list
	def LineWrap(self, the_list, w):
		# we wrap text here so that scrolling works properly... 
		try:
			pos = 0
			cut_list = []
			for mtype, timestamp, username, message in the_list:
				length = 0
				message = self.mucous.dlang(message)
				#mtype, timestamp, username, message = line[0], line[1], line[2], line[3]
				if mtype == "Me":
					#username = self.mucous.dlang(username)
					pre = " * %s " % username
					s = "%s" % message
					length += len(timestamp) + len(pre)
# 				elif mtype == "List":
# 					room = self.current
# 					pre = "Users in %s: "% room
# 					length +=  len(pre)
# 					for user, color in message:
# 						length += len(self.dlang(user))
				elif mtype in ("Mentioned", "Normal",  "Date"):
					if username != "": # Universal Timestamp
						if mtype in ("Date"): # Mucous debugging message
							length += len(timestamp) + 2
						else: # Normal user chat
							length += len(timestamp) + 4
						
						#length += len(self.dlang(username))
						length += len(username)
		
				if "\n" in message:
					
					messagez = message.split('\n')
					# Wrap first line
					firstmsg = messagez[0]
					wit =  len(timestamp) + 4 + len(username)
					lm = len(firstmsg)
					mess = lm - ( (wit + lm ) - w["width"])
					cut_list.append( [ mtype, timestamp, username, firstmsg[:mess] ] )
					restmess = firstmsg[mess:]
					div = ( len(restmess)/w["width"] ) + 1
					spaces= (w["width"] * div) -  len(restmess)
					for seq in range(div):
						if mtype == "Me":
							cut_list.append(['cutme', '', '', restmess[:w["width"]] ])
						else:
							cut_list.append(['cut', '', '', restmess[:w["width"]] ])
						restmess = restmess[w["width"]:]

					# Prepend -- to all following lines
					m = []
					for messages in messagez[1:]:
						m.append("--"+messages)
					# Wrap each of the following lines
					for messages in m:
						lm = len(messages)
						restmess = messages
						div = ( len(restmess)/w["width"] ) + 1
						spaces= (w["width"] * div) -  len(restmess)
						for seq in range(div):
							if mtype == "Me":
								cut_list.append(['cutme', '', '', restmess[:w["width"]] ])
							else:
								cut_list.append(['cut', '', '', restmess[:w["width"]] ])
							restmess = restmess[w["width"]:]
					pos += 1
					continue	
							
					# Short message
				if length +len(message) <= w["width"]:
					cut_list.append([mtype, timestamp, username, message])
					
					# long message
				elif length +len(message) > w["width"]:
					lm = len(message)
					mess = lm - ( (length + lm ) - w["width"])
					cut_list.append( [ mtype, timestamp, username, message[:mess] ] )
					restmess = message[mess:]
					div = ( len(restmess)/w["width"] ) + 1
					spaces= (w["width"] * div) -  len(restmess)
					for seq in range(div):
						#self.mucous.Help.Log("debug", str(div)+"--" + restmess[:w["width"]] )
						if mtype == "Me":
							cut_list.append(['cutme', '', '', restmess[:w["width"]] ])
						else:
							cut_list.append(['cut', '', '', restmess[:w["width"]] ])
						restmess = restmess[w["width"]:]
 						
				pos += 1
			return cut_list
		except Exception, e:
			# Exceptions are Inevitable
			self.mucous.Help.Log("debug", "LineWrap: " + str(e))
			
	## Draw Chat Log Window Text
	# @param self is ChatRooms (class)
	# @param roomlinenumber number of line in chat room log
	def DrawChatText(self, roomlinenumber):
		try:
			room = self.current
			mtype, timestamp, username, message2 = roomlinenumber
			lang = self.mucous.Config["mucous"]["language"]
			w = self.dimensions["chat"]
			room = self.mucous.dlang(room)
			length = 0
			tw = self.windows["text"]["chat"]
			message = ""
			message = message2
			
			try:
				if mtype == "Me":
					# /me message
					
					tw.addstr(timestamp)
					username = self.mucous.dlang(username)
					pre = " * %s " % username
					tw.addstr(pre, self.mucous.colors["green"] | curses.A_BOLD)
					s = message
					length += len(timestamp) + len(pre)+ len(s)
					tw.addstr(s, self.mucous.colors["green"] | curses.A_BOLD)
					
				elif mtype == "List":
					# List of users in Room
					
					pre = "Users in %s: "% room
					#self.textwin.addstr(pre)
					length +=  len(pre)
					for username, color in message:
						username = self.mucous.dlang(username)
						length += len(username)
						if color == "Me":
							tw.addstr(username, curses.A_BOLD)
						elif color == "Left":
							tw.addstr(username, self.mucous.colors["yellow"])
						elif color == "Banned":
							tw.addstr(username, self.mucous.colors["red"])
						elif color == "Buddies":
							tw.addstr(username, self.mucous.colors["green"])
						elif color == "NotLast":
							tw.addstr(username)
						elif color == "Normal":
							tw.addstr(username)
							
				elif mtype == "cut":
					s = message
					tw.addstr(s)
					length += len(s)
				elif mtype == "cutme":
					s = message
					tw.addstr(s, self.mucous.colors["green"] | curses.A_BOLD)
					length += len(s)
					
				elif mtype == "Date":
					
					self.mucous.FormatData.Hline(tw, curses.ACS_HLINE, 8)
					# Mucous status message
					pre = " "
					tw.addstr( pre)
					length += len(timestamp) + len(pre)
					#name = self.mucous.dlang(username)
					#tw.addstr(name)
					suf = " "
					tw.addstr(" ")
					length += len(suf)
					s = message
					tw.addstr(s, self.mucous.colors["cyan"] | curses.A_BOLD)
					length += len(s)
					if length < w["width"]:
						length += 1
						tw.addstr(" ")
					if length < w["width"]:
						ll = w["width"] - length
						length += ll
						self.mucous.FormatData.Hline(tw, curses.ACS_HLINE, ll )
				elif mtype == "Status":
					tw.addstr(timestamp+" ")
					length += len(timestamp)+1
					s = message
					tw.addstr("< ", self.mucous.colors["cyan"] ) 
					tw.addstr(s, self.mucous.colors["cyan"] | curses.A_BOLD)
					tw.addstr(" >", self.mucous.colors["cyan"] )
					length += len(s) + 4

							
				else:

					# Universal Timestamp
					
					tw.addstr(timestamp)
					# Normal user chat
					pre = " ["
					tw.addstr(pre)
					length += len(timestamp) + len(pre)
					
					name = self.mucous.dlang(username)
					length += len(name)
					
					if username == self.mucous.username:
						tw.addstr(username ,  curses.A_BOLD )
					elif username not in self.rooms[room]:
						tw.addstr(name, self.mucous.colors["yellow"])
					elif self.mucous.config.has_key("banned") and username in self.mucous.config["banned"].keys():
						tw.addstr(name, self.mucous.colors["red"])
					elif self.mucous.config.has_key("buddies") and  username in self.mucous.config["buddies"].keys():
						tw.addstr(name, self.mucous.colors["green"])
					else:
						tw.addstr(name)
			
					suf = "] "
					length += len(suf)
					tw.addstr(suf)
					if mtype == "Mentioned":
						x = message.split(" ")
						for e in x:
							if self.mucous.username not in e:
								length += len(e)
								tw.addstr(e)
							elif self.mucous.username in e:
								length += len(e)
								tw.addstr(e, self.mucous.colors["cyan"] | curses.A_BOLD)
							if e is not  x[-1]:
								if length < w["width"]:
									length += 1
									tw.addstr(" ")
									
					elif mtype == "Normal":
						
						s = message
						length += len(s) 
						tw.addstr(s)
						
	
			except Exception, e:
				pass
				#self.mucous.Help.Log("debug", "DrawChatText: " + str(e))
				# Exceptions are Inevitable
			try:
				if length < w["width"]:
					tw.addstr(" " * (w["width"] - length))
			except Exception, e:
				pass
		except Exception, e:
			self.mucous.Help.Log("debug", "DrawChatText: " + str(e))
			
	## Append message to Chat Log
	# @param self is ChatRooms (class)
	# @param mtype type of message
	# @param room room
	# @param user username
	# @param message text
	def AppendChat(self, mtype, room, user, message):
		try:
			if room == None:
				room = self.current
			if self.linewrapped != None:
				if self.scrolling["chatroom"] >= len(self.linewrapped) -1:
					self.scrolling["chatroom"] = -1
			if room == self.current:
				self.linewrapped = None
			full_message = [mtype, time.strftime("%H:%M:%S"), user, message]
			if len( self.logs["rooms"][room] ) >= 700:
				del self.logs["rooms"][room][0]
			
			self.logs["rooms"][room].append(full_message)
				
			if self.mucous.mode == "chat":
				if room == self.current and self.selected == "chatroom":
					
					if self.scrolling["chatroom"] == -1:
						self.FormatChatText()
				elif room == self.current and self.selected == "roombox":
					temp = self.scrolling["chatroom"]
					self.scrolling["chatroom"] = -1
					self.FormatChatText()
					self.scrolling["chatroom"] = temp
		except Exception,e :
			self.mucous.Help.Log("debug", "AppendChat: " + str(e))

	## Draw Chat Room Status Window Border 
	# @param self is ChatRooms (class)
	def DrawStatusWin(self):
		try:
			if self.shape in ("nostatuslog", "chat-only"):
				return
			w = self.dimensions["chat"]
			bw = self.windows["border"]["roomstatus"]
			
			if self.mucous.PopupMenu.show == True: raise  Exception,  "popup"
			
			if self.shape in ("noroombox", "big", "small", "rightlist", "widelist"):
				if self.selected == "roomstatus":
					bw.attron(self.mucous.colors["green"])
				else:
					bw.attroff(self.mucous.colors["green"])
				bw.border()
				bw.addstr(0, 3, "<")
				bw.addstr(0, 4, " Status Log ", self.mucous.colors["blue"] | curses.A_BOLD)
				bw.addstr(0, 16, ">")
				bw.noutrefresh()
		except:
			pass
				
	def WindowCycle(self):
		_list = None
		if self.shape == "chat-only":
			self.selected = "chatroom"
			return
		elif self.shape == "nostatuslog":
			_list = ["chatroom", "roombox"]
		elif self.shape ==  "noroombox":
			_list = ["chatroom", "roomstatus"]
		else:
			_list = ["chatroom", "roomstatus", "roombox"]
		if _list != None:
			self.selected = self.mucous.FormatData.RotateList("right", _list, self.selected, "no")
			self.Mode()
 	
	## Switch to another Chat Window Layout
	# @param self is ChatRooms (class)
	def ChatLayout(self):
		try:
# 			[ "small","big","widelist","rightlist","nostatuslog","chat-only","noroombox"]

			if self.shape == "noroombox":
				self.shape = "small"
				self.selected  = "roombox"
			elif self.shape == "small":
				self.shape = "big"
				self.selected  = "roombox"
			elif self.shape == "big":
				self.shape = "widelist"
				self.selected  = "roombox"
			elif self.shape == "widelist":
				self.shape = "rightlist"
				self.selected  = "roombox"
			elif self.shape == "rightlist":
				self.shape = "nostatuslog"
				self.selected  = "chatroom"
			elif self.shape == "nostatuslog":	
				self.shape = "chat-only"
				self.selected  = "chatroom"
			elif self.shape == "chat-only":
				self.shape = "noroombox"
				self.selected  = "chatroom"
				
			self.mucous.Config["mucous"]["roombox"] = self.shape
			self.Mode()
		except Exception, e:
			self.mucous.Help.Log("debug", "ChatLayout: " + str(e))
			
	
	## Change Room (Reset scrolling)
	# @param self is ChatRooms (class)
	# @param r room name
	def Change(self, r):
		self.scrolling["chatroom"] = self.scrolling["roomstatus"] = -1
		self.scrolling["roombox"] = 0
		self.SetRoom(r)
		self.TickersStartTimer()
		
	## Change Room
	# @param self is ChatRooms (class)
	# @param r room name
	def SetRoom(self, room):
		try:
			self.linewrapped = None
			self.current = room
			
			if self.mucous.mode != "chat":
				return
			
			# Change title in edit window
			if self.shape not in ("chat-only", "nostatuslog"):
				self.DrawStatusWin()
				self.DrawStatusText()
			self.mucous.SetEditTitle(self.current)
			# Display Next-room hotspot's text
			try:
				# Encoding button
				if self.current != None:
					if self.current in self.mucous.config["encoding.rooms"]:
						blah = self.mucous.config["encoding.rooms"][self.current]
					else:
						blah = self.mucous.config["encoding"]["network"]
					ibw = self.mucous.windows["inputborder"]
					ibw.addstr(0, self.mucous.w-17-len(blah)-4, "<" + (" " *( len(blah) +2) )+  ">")
					ibw.addstr(0, self.mucous.w-17-len(blah)-2, blah, self.mucous.colors["cyan"] | curses.A_BOLD)
					# Previous, Next Buttons
					ibw.addstr(0, self.mucous.w-17, "<      >")
					ibw.addstr(0, self.mucous.w-15, "Prev", self.mucous.colors["cyan"] | curses.A_BOLD)
					ibw.addstr(0, self.mucous.w-9, "<      >")
					ibw.addstr(0, self.mucous.w-7,"Next", self.mucous.colors["cyan"] | curses.A_BOLD)
	
					# Clean screen
					ibw.noutrefresh()
			except Exception, e:
				pass
			
			try:
				self.windows["input"].noutrefresh()
			except:
				pass
			self.DrawBox()
			
			# Display chat log
			if self.selected == "chatroom":
				self.windows["border"]["chat"].attron(self.mucous.colors["green"])
			else:
				self.windows["border"]["chat"].attroff(self.mucous.colors["green"])
			
			self.FormatChatText()
			
			# Clear Alert log
			if "%s" % self.current == self.mucous.Alerts.log:
				self.mucous.Alerts.setStatus("")
			
			
			try:
				self.windows["text"]["chat"].noutrefresh()
			except:
				pass
			
			self.mucous.Alerts.Check()
		except Exception, e:
			self.mucous.Help.Log("debug", "SetRoom: " + str(e))