Open
Conversation
Adds Parameter liststyle=[STYLE] to use together with depth>1. where style can be one of: default - the same as not given relative - will print relative names for pages full - will print fully qualified pagenames
Author
|
@cosmocode could you please review this pr |
|
I would really like this! Could this be merged? |
|
I totally aprove this! For example: Full: Relative: Default: For me there is just one single problem: is missing an option that show page without underscore and uppercase ( If i insert this code, at line 124: elseif($data['liststyle'] == human')
{
$item['id_name'] = ucwords(str_replace('_', ' ', substr($item['id'],strlen($data['ns'])+1)));
};Gives me this: Not exactly what i want, but much better. I want this: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I needed use depth > 1, but resulting list was quite unstructured.
So i added Parameter liststyle=[STYLE] to make it more structured.
where style can be one of:
default - the same as not given
relative - will print relative names for pages
full - will print fully qualified pagenames
Other styles could also be implemented, but this was already fine for my needs.
What do you think?
Regards, Daniel