[bitbake-devel] [PATCH 01/11] toaster: Analysis API variablehistory update

Paul Eggleton paul.eggleton at linux.intel.com
Mon Dec 9 19:07:07 UTC 2013


From: Alexandru DAMIAN <alexandru.damian at intel.com>

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 at intel.com>
---
 lib/toaster/bldviewer/api.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/toaster/bldviewer/api.py b/lib/toaster/bldviewer/api.py
index f761ba6..a586734 100644
--- a/lib/toaster/bldviewer/api.py
+++ b/lib/toaster/bldviewer/api.py
@@ -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'),
 )
-- 
1.8.1.2




More information about the bitbake-devel mailing list