aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-06-29 16:09:52 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-02 22:55:44 +0100
commit40c8829369628927944c8a950524d482a663913e (patch)
tree2fdced8d962bbb190643e2774f2fd711c3cda4c0
parent124157b567469639c6c839233f42049a093ba083 (diff)
downloadbitbake-40c8829369628927944c8a950524d482a663913e.tar.gz
toaster: Revert the addition of analysis project mode selection
Partial revert of bb commit 2efc338cefd6e6e097af83d7dff63e9ba177d021 This feature was not ready to go live as the surrounding implementation work to make this usable has not yet been done. Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/toaster/toastergui/templates/newproject.html15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/toaster/toastergui/templates/newproject.html b/lib/toaster/toastergui/templates/newproject.html
index 1159d717a..745b79b1a 100644
--- a/lib/toaster/toastergui/templates/newproject.html
+++ b/lib/toaster/toastergui/templates/newproject.html
@@ -20,7 +20,7 @@
<label>Project name <span class="muted">(required)</span></label>
<input type="text" class="input-xlarge" required id="new-project-name" name="projectname">
</fieldset>
-
+<!--
<fieldset>
<label class="project-form">Project type</label>
<label class="project-form radio"><input type="radio" name="ptype" value="analysis" checked/> Analysis Project</label>
@@ -28,7 +28,8 @@
{% if releases.count > 0 %}
<label class="project-form radio"><input type="radio" name="ptype" value="build" checked /> Build Project</label>
{% endif %}
- </fieldset>
+ </fieldset> -->
+ <input type="hidden" name="ptype" value="build" />
{% if releases.count > 0 %}
<fieldset class="release">
@@ -63,7 +64,7 @@
</div>
</form>
</div>
-
+ <!--
<div class="span5 well">
<span class="help-block">
<h4>Toaster project types</h4>
@@ -76,7 +77,7 @@
<h4>Release</h4>
<p>If you create a <strong>build project</strong>, you will need to select a <strong>release</strong>,
which is the version of the build system you want to use to run your builds.</p>
- </div>
+ </div> -->
</div>
</div>
@@ -109,7 +110,7 @@
$('#description-' + new_release).fadeIn();
});
- // Hide the project release when you select an analysis project
+/* // Hide the project release when you select an analysis project
function projectType() {
if ($("input[type='radio']:checked").val() == 'build') {
$('.release').fadeIn();
@@ -122,8 +123,8 @@
$('input:radio').change(function(){
projectType();
- });
- })
+ }); */
+ });
</script>
{% endblock %}