rspec/rules/S1926/html/rule.adoc

62 lines
1.4 KiB
Plaintext
Raw Normal View History

== Why is this an issue?
2021-04-28 16:49:39 +02:00
Web applications can be made available in multiple languages through the use of internationalization. This allows the server to plug in the correct version of a piece of text based on the language chosen, but it requires that internationalization messages be used instead of hard-coded text.
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,html]
2021-04-28 16:49:39 +02:00
----
<form method="post">
<label for="username">Username:</label> <!-- Noncompliant -->
<input type="text" id="username" name="username">
<br>
<label for="password">Password:</label> <!-- Noncompliant -->
<input type="password" id="password" name="password">
<br>
<input type="submit" name="submit" value="${buttonValue}">
</form>
----
=== Compliant solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,html]
2021-04-28 16:49:39 +02:00
----
<form method="post">
<label for="username"><fmt:message key="login.label.username" />:</label>
<input type="text" id="username" name="username">
<br>
<label for="password"><fmt:message key="login.label.password" />:</label>
<input type="password" id="password" name="password">
<br>
<input type="submit" name="submit" value="${buttonValue}">
</form>
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Define this label in the resource bundle.
=== Parameters
.attributes
****
----
outputLabel.value, outputText.value
----
Attributes
****
endif::env-github,rspecator-view[]