mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 06:27:17 +02:00
Allow multi-character keys for EvForm cells and tables. This was due to a too restrictive regex. Resolves #1014.
This commit is contained in:
parent
1da9217a18
commit
49087b50d1
3 changed files with 4 additions and 5 deletions
|
|
@ -1145,7 +1145,6 @@ class ContribRPObject(DefaultObject):
|
|||
if searchdata.lower() in ("me", "self",):
|
||||
return [self] if quiet else self
|
||||
|
||||
|
||||
if use_nicks:
|
||||
# do nick-replacement on search
|
||||
searchdata = self.nicks.nickreplace(searchdata, categories=("object", "player"), include_player=True)
|
||||
|
|
|
|||
|
|
@ -232,8 +232,8 @@ class EvForm(object):
|
|||
table_coords = {}
|
||||
|
||||
# Locate the identifier tags and the horizontal end coords for all forms
|
||||
re_cellchar = re.compile(r"%s+([^%s%s])%s+" % (cellchar, INVALID_FORMCHARS, cellchar, cellchar))
|
||||
re_tablechar = re.compile(r"%s+([^%s%s|])%s+" % (tablechar, INVALID_FORMCHARS, tablechar, tablechar))
|
||||
re_cellchar = re.compile(r"%s+([^%s%s]+)%s+" % (cellchar, INVALID_FORMCHARS, cellchar, cellchar))
|
||||
re_tablechar = re.compile(r"%s+([^%s%s|+])%s+" % (tablechar, INVALID_FORMCHARS, tablechar, tablechar))
|
||||
for iy, line in enumerate(_to_ansi(form, regexable=True)):
|
||||
# find cells
|
||||
ix0 = 0
|
||||
|
|
@ -429,7 +429,7 @@ def _test():
|
|||
form = EvForm("evennia.utils.evform_test")
|
||||
|
||||
# add data to each tagged form cell
|
||||
form.map(cells={1: "|gTom the Bouncer",
|
||||
form.map(cells={"AA": "|gTom the Bouncer",
|
||||
2: "|yGriatch",
|
||||
3: "A sturdy fellow",
|
||||
4: 12,
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ TABLECHAR = "c"
|
|||
FORM = """
|
||||
.------------------------------------------------.
|
||||
| |
|
||||
| Name: xxxxx1xxxxx Player: xxxxxxx2xxxxxxx |
|
||||
| Name: xxxxxAAxxxx Player: xxxxxxx2xxxxxxx |
|
||||
| xxxxxxxxxxx |
|
||||
| |
|
||||
>----------------------------------------------<
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue