Commit 54266b1e9965588c40d0dc6e0437027ef2524ad9

Authored by Tiago Bortoletto Vaz
1 parent dbac92b9
Exists in master and in 1 other branch add_vagrant

All fields unchecked.

Showing 1 changed file with 10 additions and 10 deletions   Show diff stats
src/web/templates/index.html
... ... @@ -66,7 +66,7 @@ function toggle() {
66 66 <label><input type="hidden">Weighting:</label>
67 67 </div>
68 68 <div>
69   - <label class="special"><input type="radio" name="weight" value="BM25" checked > BM25</label>
  69 + <label class="special"><input type="radio" name="weight" value="BM25" > BM25</label>
70 70 </div>
71 71 <div>
72 72 <label class="special"><input type="radio" name="weight" value="trad"> Traditional</label>
... ... @@ -75,7 +75,7 @@ function toggle() {
75 75 <label><input type="hidden">Strategy:</label>
76 76 </div>
77 77 <div>
78   - <label class="special"><input type="radio" name="strategy" value="content" checked> Content-based</label>
  78 + <label class="special"><input type="radio" name="strategy" value="content"> Content-based</label>
79 79 </div>
80 80 <div>
81 81 <label class="special"><input type="radio" name="strategy" value="collab"> Collaborative</label>
... ... @@ -90,7 +90,7 @@ function toggle() {
90 90 <label><input type="hidden" class="DEPENDS ON strategy BEING content OR strategy BEING hybrid">Content representation:</label>
91 91 </div>
92 92 <div>
93   - <label class="special"><input type="radio" name="content" value="tag" checked class="DEPENDS ON strategy BEING content OR strategy BEING hybrid"> tag</label>
  93 + <label class="special"><input type="radio" name="content" value="tag" class="DEPENDS ON strategy BEING content OR strategy BEING hybrid"> tag</label>
94 94 </div>
95 95 <div>
96 96 <label class="special"><input type="radio" name="content" value="desc" class="DEPENDS ON strategy BEING content OR strategy BEING hybrid"> description</label>
... ... @@ -102,10 +102,10 @@ function toggle() {
102 102 <label><input type="hidden" class="DEPENDS ON strategy BEING collab OR strategy BEING hybrid">Clustering:</label>
103 103 </div>
104 104 <div>
105   - <label class="special"><input type="radio" name="cluster" checked value="True" class="DEPENDS ON strategy BEING collab OR strategy BEING hybrid"> yes</label>
  105 + <label class="special"><input type="radio" name="cluster" value="yes" class="DEPENDS ON strategy BEING collab OR strategy BEING hybrid"> yes</label>
106 106 </div>
107 107 <div>
108   - <label class="special"><input type="radio" name="cluster" value="False" class="DEPENDS ON strategy BEING collab OR strategy BEING hybrid"> no</label>
  108 + <label class="special"><input type="radio" name="cluster" value="no" class="DEPENDS ON strategy BEING collab OR strategy BEING hybrid"> no</label>
109 109 </div>
110 110 <div>
111 111 <label><input type="hidden" class="DEPENDS ON strategy BEING hybrid">Neighborhood:</label>
... ... @@ -117,19 +117,19 @@ function toggle() {
117 117 <label><input type="hidden" class="DEPENDS ON strategy BEING hybrid">Personal profile:</label>
118 118 </div>
119 119 <div>
120   - <label class=special><input type="checkbox" name="profile_desktop" class="DEPENDS ON strategy BEING hybrid" checked> Desktop</label>
  120 + <label class=special><input type="checkbox" name="profile_desktop" class="DEPENDS ON strategy BEING hybrid" > Desktop</label>
121 121 </div>
122 122 <div>
123   - <label class=special><input type="checkbox" name="profile_admin" class="DEPENDS ON strategy BEING hybrid" checked> Admin</label>
  123 + <label class=special><input type="checkbox" name="profile_admin" class="DEPENDS ON strategy BEING hybrid" > Admin</label>
124 124 </div>
125 125 <div>
126   - <label class=special><input type="checkbox" name="profile_devel" class="DEPENDS ON strategy BEING hybrid" checked> Devel</label>
  126 + <label class=special><input type="checkbox" name="profile_devel" class="DEPENDS ON strategy BEING hybrid" > Devel</label>
127 127 </div>
128 128 <div>
129   - <label class=special><input type="checkbox" name="profile_science" class="DEPENDS ON strategy BEING hybrid" checked> Science</label>
  129 + <label class=special><input type="checkbox" name="profile_science" class="DEPENDS ON strategy BEING hybrid" > Science</label>
130 130 </div>
131 131 <div>
132   - <label class=special><input type="checkbox" name="profile_arts" class="DEPENDS ON strategy BEING hybrid" checked> Arts</label>
  132 + <label class=special><input type="checkbox" name="profile_arts" class="DEPENDS ON strategy BEING hybrid" > Arts</label>
133 133 </div>
134 134 </fieldset>
135 135 </div>
... ...