log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
libervia-backend
annotate frontends/wix/constants.py @ 112:
f551e44adb25
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Primitivus first draft - Sortilège is recoded using urwid, and renamed in Primitivus as it is no more based on curses - soritlege code moved to sortilege_old, and deprecated - Primitivus first draft, begining of ProfileManager widget
author
Goffi <goffi@goffi.org>
date
Wed, 30 Jun 2010 14:24:24 +0800 (2010-06-30)
parents
f271fff3a713
children
1438a1337732
Ignore whitespace changes -
Everywhere:
Within whitespace:
At end of lines:
rev
line source
72
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
1
import
sys
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
2
import
__builtin__
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
3
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
4
__builtin__
.
__dict__
[
'IMAGE_DIR'
]
=
sys
.
path
[
0
]
+
'/images'
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
5
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
6
__builtin__
.
__dict__
[
'msgOFFLINE'
]
=
_
(
"offline"
)
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
7
__builtin__
.
__dict__
[
'msgONLINE'
]
=
_
(
"online"
)
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
8
__builtin__
.
__dict__
[
'const_DEFAULT_GROUP'
]
=
"Unclassed"
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
9
__builtin__
.
__dict__
[
'const_STATUS'
]
=
[(
""
,
_
(
"Online"
),
None
),
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
10
(
"chat"
,
_
(
"Free for chat"
),
"green"
),
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
11
(
"away"
,
_
(
"AFK"
),
"brown"
),
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
12
(
"dnd"
,
_
(
"DND"
),
"red"
),
f271fff3a713
MUC implementation: first draft
Goffi <goffi@goffi.org>
parents:
diff
changeset
+
−
13
(
"xa"
,
_
(
"Away"
),
"red"
)]