summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-11-18 12:43:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-10 11:16:11 +0000
commit7d24b00d0e996739139ba29ed8e554437488b6bc (patch)
tree857e94076aa9664bdd5f29ab6e74972098a65b6c /bitbake/lib/toaster/bldviewer
parent340c35e9d1f8fcaa39d708c3d5e432e0856af34c (diff)
downloadpoky-7d24b00d0e996739139ba29ed8e554437488b6bc.tar.gz
bitbake: toaster: Analysis API variablehistory update
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 (Bitbake rev: f304332da3a51b15e864a853989fe5fbaf5f6079) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldviewer')
-rw-r--r--bitbake/lib/toaster/bldviewer/api.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldviewer/api.py b/bitbake/lib/toaster/bldviewer/api.py
index f761ba65a9..a586734eb9 100644
--- a/bitbake/lib/toaster/bldviewer/api.py
+++ b/bitbake/lib/toaster/bldviewer/api.py
@@ -33,5 +33,6 @@ urlpatterns = patterns('bldviewer.views',
33 url(r'^recipes$', 'model_explorer', {'model_name':'recipe'}, name='recipe'), 33 url(r'^recipes$', 'model_explorer', {'model_name':'recipe'}, name='recipe'),
34 url(r'^recipe_dependencies$', 'model_explorer', {'model_name':'recipe_dependency'}, name='recipe_dependencies'), 34 url(r'^recipe_dependencies$', 'model_explorer', {'model_name':'recipe_dependency'}, name='recipe_dependencies'),
35 url(r'^variables$', 'model_explorer', {'model_name':'variable'}, name='variables'), 35 url(r'^variables$', 'model_explorer', {'model_name':'variable'}, name='variables'),
36 url(r'^variableshistory$', 'model_explorer', {'model_name':'variablehistory'}, name='variablehistory'),
36 url(r'^logmessages$', 'model_explorer', {'model_name':'logmessage'}, name='logmessages'), 37 url(r'^logmessages$', 'model_explorer', {'model_name':'logmessage'}, name='logmessages'),
37) 38)