summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-11-18 12:43:18 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-12-09 18:58:25 +0000
commitf304332da3a51b15e864a853989fe5fbaf5f6079 (patch)
tree8f0bdd4f55772f7cce34c8ab5524118afaf3d489 /lib
parent8f453bb11d72afc90a986ac604b3477d97eaf9a8 (diff)
downloadbitbake-f304332da3a51b15e864a853989fe5fbaf5f6079.tar.gz
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 Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/toaster/bldviewer/api.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/toaster/bldviewer/api.py b/lib/toaster/bldviewer/api.py
index f761ba65a..a586734eb 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'),
)