Mercurial > p > roundup > code
diff doc/customizing.txt @ 6421:9c57f2814597
Fix issue2551122 (MultilinkHTMLProperty sorted method issue)
The sorted method of MultilinkHTMLProperty does a string sort even if
the property is an integer.
Fixed so that the orderprop for the linked class is used.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 23 May 2021 18:00:55 -0400 |
| parents | 586865e08f42 |
| children | 2917231d8076 |
line wrap: on
line diff
--- a/doc/customizing.txt Sun May 23 17:41:23 2021 -0400 +++ b/doc/customizing.txt Sun May 23 18:00:55 2021 -0400 @@ -3305,7 +3305,10 @@ creation date at the start of the list. The default for ``NoneFirst`` is False so these files will sort at the end by default. (Note creation date is never unset, but you - get the idea.) + get the idea.) If you combine NoneFirst with + ``reverse=True`` the meaning of NoneFirst is inverted: + True sorts None/unset at the end and False sorts at the + beginning. reverse only on Multilink properties - produce a list of the linked items in reverse order isset returns True if the property has been set to a value
