diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/projectconf.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/projectconf.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projectconf.html b/bitbake/lib/toaster/toastergui/templates/projectconf.html index 0e9712b39e..933c588f34 100644 --- a/bitbake/lib/toaster/toastergui/templates/projectconf.html +++ b/bitbake/lib/toaster/toastergui/templates/projectconf.html | |||
@@ -41,7 +41,7 @@ | |||
41 | </div> | 41 | </div> |
42 | <button id="apply-change-dl_dir" class="btn btn-default" type="button">Save</button> | 42 | <button id="apply-change-dl_dir" class="btn btn-default" type="button">Save</button> |
43 | <button id="cancel-change-dl_dir" type="button" class="btn btn-link">Cancel</button> | 43 | <button id="cancel-change-dl_dir" type="button" class="btn btn-link">Cancel</button> |
44 | <p class="help-block" id="hintError-dl_dir" style="display:none;">The directory path cannot include spaces or any of these characters: . \ ? % * : | " " < ></p> | 44 | <p class="help-block" id="hintError-dl_dir" style="display:none;">The directory path cannot include spaces or any of these characters: \ ? % * : | " " < ></p> |
45 | <p class="help-block" id="hintError-initialChar-dl_dir" style="display:none;">The directory path should either start with a /, e.g. /home/toaster/downloads; or with a variable, e.g. ${TOPDIR}/downloads.</p> | 45 | <p class="help-block" id="hintError-initialChar-dl_dir" style="display:none;">The directory path should either start with a /, e.g. /home/toaster/downloads; or with a variable, e.g. ${TOPDIR}/downloads.</p> |
46 | </form> | 46 | </form> |
47 | </dd> | 47 | </dd> |
@@ -151,7 +151,7 @@ | |||
151 | </div> | 151 | </div> |
152 | <button id="apply-change-sstate_dir" class="btn btn-default" type="button">Save</button> | 152 | <button id="apply-change-sstate_dir" class="btn btn-default" type="button">Save</button> |
153 | <button id="cancel-change-sstate_dir" type="button" class="btn btn-link">Cancel</button> | 153 | <button id="cancel-change-sstate_dir" type="button" class="btn btn-link">Cancel</button> |
154 | <p class="help-block" id="hintError-sstate_dir" style="display:none;">The directory path cannot include spaces or any of these characters: . \ ? % * : | " " < ></p> | 154 | <p class="help-block" id="hintError-sstate_dir" style="display:none;">The directory path cannot include spaces or any of these characters: \ ? % * : | " " < ></p> |
155 | <p class="help-block" id="hintError-initialChar-sstate_dir" style="display:none;">The directory path should either start with a /, e.g. /home/toaster/sstate-cache; or with a variable, e.g. ${TOPDIR}/sstate-cache.</p> | 155 | <p class="help-block" id="hintError-initialChar-sstate_dir" style="display:none;">The directory path should either start with a /, e.g. /home/toaster/sstate-cache; or with a variable, e.g. ${TOPDIR}/sstate-cache.</p> |
156 | </form> | 156 | </form> |
157 | </dd> | 157 | </dd> |
@@ -594,7 +594,7 @@ $(document).ready(function() { | |||
594 | var input = $(this); | 594 | var input = $(this); |
595 | var reBeginWithSlash = /^\//; | 595 | var reBeginWithSlash = /^\//; |
596 | var reCheckVariable = /^\$/; | 596 | var reCheckVariable = /^\$/; |
597 | var re = /([ <>\\|":\.%\?\*]+)/; | 597 | var re = /([ <>\\|":%\?\*]+)/; |
598 | var invalidDir = re.test(input.val()); | 598 | var invalidDir = re.test(input.val()); |
599 | var invalidSlash = reBeginWithSlash.test(input.val()); | 599 | var invalidSlash = reBeginWithSlash.test(input.val()); |
600 | var invalidVar = reCheckVariable.test(input.val()); | 600 | var invalidVar = reCheckVariable.test(input.val()); |
@@ -961,7 +961,7 @@ $(document).ready(function() { | |||
961 | var input = $(this); | 961 | var input = $(this); |
962 | var reBeginWithSlash = /^\//; | 962 | var reBeginWithSlash = /^\//; |
963 | var reCheckVariable = /^\$/; | 963 | var reCheckVariable = /^\$/; |
964 | var re = /([ <>\\|":\.%\?\*]+)/; | 964 | var re = /([ <>\\|":%\?\*]+)/; |
965 | var invalidDir = re.test(input.val()); | 965 | var invalidDir = re.test(input.val()); |
966 | var invalidSlash = reBeginWithSlash.test(input.val()); | 966 | var invalidSlash = reBeginWithSlash.test(input.val()); |
967 | var invalidVar = reCheckVariable.test(input.val()); | 967 | var invalidVar = reCheckVariable.test(input.val()); |