Opened 17 years ago
Closed 17 years ago
#9092 closed (fixed)
Validation of project and application names isn't thorough enough
| Reported by: | Tom Mortimer-Jones | Owned by: | nobody |
|---|---|---|---|
| Component: | Core (Other) | Version: | 1.0 |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Accepted | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
As project and application names get used as a Python modules they have to follow the correct naming convention (see here). The current check allows for the name to start with a number which is not allowed.
Attachments (1)
Change History (3)
by , 17 years ago
comment:1 by , 17 years ago
| Component: | Uncategorized → Core framework |
|---|---|
| Has patch: | set |
| Triage Stage: | Unreviewed → Accepted |
comment:2 by , 17 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Maybe something like
"^[_a-zA-Z]\w*"could be more readable regexp.