Changes between Initial Version and Version 2 of Ticket #25418
- Timestamp:
- Sep 17, 2015, 11:31:56 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25418
- Property Component Core (URLs) → Core (Other)
- Property Triage Stage Unreviewed → Accepted
- Property Type Uncategorized → Bug
- Property Version 1.8 → master
-
Ticket #25418 – Description
initial v2 1 1 Hi, 2 2 on the LAN, we don't use full scheme of host + domain + tld, so it could be fine if we could change this 3 3 {{{ 4 4 host_re = '(' + hostname_re + domain_re + tld_re + '|localhost)' 5 5 }}} 6 6 to 7 7 {{{ 8 8 host_re = '(' + hostname_re + domain_re + tld_re + '|' + hostname_re + '|localhost)' 9 9 }}} 10 10 regards