Re: [Wikitech-l] Call graph creator applied to MediaWiki and extensions

2016-11-11 Thread bawolff
Hi, I think we used to have callgraphs on svn.wikimedia.org (What is modern day doc.wikimedia.org), but they got disabled ~2012 (See commit 1ce4aab13ce). However, If you're interested in this sort of thing you could also try generating the doxygen call graphs yourself by setting CALL_GRAPH = YES

Re: [Wikitech-l] Call graph creator applied to MediaWiki and extensions

2016-11-11 Thread Gergo Tisza
Sounds like a cool project! If you are not specifically interested in static graphs, you can also use profilers (XDebug, xhprof) to capture calls as they happen and display them with KCacheGrind or something similar. That gives you call graphs which include information like percentage of time

[Wikitech-l] Call graph creator applied to MediaWiki and extensions

2016-11-09 Thread Seb35
Hello, I wanted to share a recent work I’ve done to better visualise the dependencies between classes, with the call graph [1]. For the extension I am currently developping (MediaWikiFarm [2]), I wanted to obtain the call graph. First I did it by hand, but then I found a program doing the