Created by: Durman
Addressed problem description
Node modules categories and node documentation categories are not 100% consistent. So there was magical conditions to translate the modules categories to docs ones. I reconsidered the approach and now categories does not take part in search of node documentations. It's completely based on the module names and it means that all node modules should have uniq names (even if they are in differen folders).
Also, now all nodes implement new method:
def get_doc_link(self, link_type='ONLINE') -> Optional[str]:
This method should be overridden by Sverchok's extensions if they want to use links to node documentations.
New way reviled two nodes which does not have documentation and were not marked as known problems:
- flip_surface.py
- ruled_surface.py
Preflight checklist
-
Code changes complete. -
Code documentation complete. -
Manual testing done. -
Unit-tests implemented. -
Ready for merge.