You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe
When I list hostnames I find that sorting by TLD, then second level domain, etc. is better than raw alphabetical sort, as all hosts in the same sub-domain are close together.
Describe the solution you'd like
Right now I'm doing something like this (kinda works but it's limited):
Is your feature request related to a problem? Please describe
When I list hostnames I find that sorting by TLD, then second level domain, etc. is better than raw alphabetical sort, as all hosts in the same sub-domain are close together.
Describe the solution you'd like
Right now I'm doing something like this (kinda works but it's limited):
… if it was JavaScript I would probably sort by
fqdn.split('.').reverse().join('.')
, maybe a specific new sorting function could be added.Aliaksandr Valialkin suggested a name like
sort_by_label_fqdn(q, "label_name")
.Describe alternatives you've considered
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: