Issue #275: Activate Syntax Highlighting with Coderay in Asciidoc templates

This commit is contained in:
Mario Zupan
2016-12-15 17:32:27 +01:00
parent b8b632905d
commit 6fa894938b
4 changed files with 149 additions and 5 deletions

View File

@ -2,7 +2,7 @@
[source,java]
----
public static bool isUsernameValid(string username) {
RegEx r = new Regex(^[A-Za-z0-9]{16}$);
RegEx r = new Regex("^[A-Za-z0-9]{16}$");
return r.isMatch(username);
}
@ -10,10 +10,10 @@ public static bool isUsernameValid(string username) {
PreparedStatement ps = null;
RecordSet rs = null;
try {
pUserName = request.getParameter(UserName);
pUserName = request.getParameter("UserName");
if ( isUsernameValid (pUsername);
ps = conn.prepareStatement(SELECT * FROM user_table
WHERE username = ? );
ps = conn.prepareStatement("SELECT * FROM user_table
WHERE username = ? ");
ps.setString(1, pUsername);
rs = ps.execute();
if ( rs.next() ) {