summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2016-02-22 09:08:32 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-26 17:20:11 +0000
commit07eb4f274ca4f002a9280b2cf6e7b81bc17c4ed6 (patch)
tree33c8c1b531de07997b2b05512bbd1d11af494c6a /bitbake
parent12ade9b093a30d725e86d3da26e6f3152e1ca54f (diff)
downloadpoky-07eb4f274ca4f002a9280b2cf6e7b81bc17c4ed6.tar.gz
bitbake: toaster: comment out project release change
Although the support for building more than one release and how we handle the build directories is the subject of lively discussion, we all seem to agree on removing the ability to change the release of a project. The feature is currently not working but exposed to users, which is not a happy state of affairs. This patch comments out the controls that give access to the release changing functionality to hide them from users, but does not touch anything else. Once all moving pieces start to settle down, we can make a final decision regarding this feature, and clean up the code accordingly. [YOCTO #8917] (Bitbake rev: 3a8c6f7155517cd61a160595b81e7bed84ba4eaf) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/project.html19
1 files changed, 14 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/project.html b/bitbake/lib/toaster/toastergui/templates/project.html
index cc4745b126..125676881f 100644
--- a/bitbake/lib/toaster/toastergui/templates/project.html
+++ b/bitbake/lib/toaster/toastergui/templates/project.html
@@ -24,7 +24,9 @@
24 }); 24 });
25</script> 25</script>
26 26
27<div id="change-release-modal" class="modal hide fade in" tabindex="-1" role="dialog" aria-labelledby="change-release-modal" aria-hidden="false"> 27<!-- Comment out the ability to change the project release, until we decide what to do this functionality -->
28
29<!--div id="change-release-modal" class="modal hide fade in" tabindex="-1" role="dialog" aria-labelledby="change-release-modal" aria-hidden="false">
28 <div class="modal-header"> 30 <div class="modal-header">
29 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button> 31 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
30 <h3>Changing Yocto Project release to <span class="proposed-release-change-name"></span></h3> 32 <h3>Changing Yocto Project release to <span class="proposed-release-change-name"></span></h3>
@@ -39,7 +41,7 @@
39 <button id="change-release-and-rm-layers" data-dismiss="modal" type="submit" class="btn btn-primary">Change release and delete layers</button> 41 <button id="change-release-and-rm-layers" data-dismiss="modal" type="submit" class="btn btn-primary">Change release and delete layers</button>
40 <button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button> 42 <button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
41 </div> 43 </div>
42</div> 44</div-->
43 45
44 46
45<div class="row-fluid" id="project-page" style="display:none"> 47<div class="row-fluid" id="project-page" style="display:none">
@@ -79,12 +81,19 @@
79 <div class="well well-transparent"> 81 <div class="well well-transparent">
80 <h3>Project release</h3> 82 <h3>Project release</h3>
81 83
82 <p class="lead"><span id="project-release-title"></span> <i title="" data-original-title="" id="release-change-toggle" class="icon-pencil"></i></p> 84 <p class="lead"><span id="project-release-title"></span>
85
86 <!-- Comment out the ability to change the project release, until we decide what to do with this functionality -->
83 87
84 <form class="form-inline" id="change-release-form" style="display:none;"> 88 <!--i title="" data-original-title="" id="release-change-toggle" class="icon-pencil"></i-->
89 </p>
90
91 <!-- Comment out the ability to change the project release, until we decide what to do with this functionality -->
92
93 <!--form class="form-inline" id="change-release-form" style="display:none;">
85 <select></select> 94 <select></select>
86 <button class="btn" style="margin-left:5px;" id="change-release-btn">Change</button> <a href="#" id="cancel-release-change" class="btn btn-link">Cancel</a> 95 <button class="btn" style="margin-left:5px;" id="change-release-btn">Change</button> <a href="#" id="cancel-release-change" class="btn btn-link">Cancel</a>
87 </form> 96 </form-->
88 </div> 97 </div>
89 </div> 98 </div>
90 99