]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
toaster: Analysis API variablehistory update
authorAlexandru DAMIAN <alexandru.damian@intel.com>
Mon, 18 Nov 2013 12:43:18 +0000 (12:43 +0000)
committerPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 9 Dec 2013 18:58:25 +0000 (18:58 +0000)
This patch updates the Analysis REST API to expose
the variablehistory information. A UI tool can query
this API to get a picture on how a variable value got
to its final form.

The documentation for VariableHistory is updated on
Wiki https://wiki.yoctoproject.org/wiki/Analysis_REST_API_Contracts

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
lib/toaster/bldviewer/api.py

index f761ba65a95d45c561b671ad9e4e0319571f9857..a586734eb96ae3f121efbd942c41357cdcbee319 100644 (file)
@@ -33,5 +33,6 @@ urlpatterns = patterns('bldviewer.views',
         url(r'^recipes$', 'model_explorer', {'model_name':'recipe'}, name='recipe'),
         url(r'^recipe_dependencies$', 'model_explorer',  {'model_name':'recipe_dependency'}, name='recipe_dependencies'),
         url(r'^variables$', 'model_explorer',  {'model_name':'variable'}, name='variables'),
+        url(r'^variableshistory$', 'model_explorer',  {'model_name':'variablehistory'}, name='variablehistory'),
         url(r'^logmessages$', 'model_explorer',  {'model_name':'logmessage'}, name='logmessages'),
 )