]> WPIA git - gigi.git/commitdiff
UPD: Rename PingconfigForm to PingConfigForm
authorFelix Dörre <felix@dogcraft.de>
Sun, 14 Sep 2014 09:22:27 +0000 (11:22 +0200)
committerFelix Dörre <felix@dogcraft.de>
Sun, 14 Sep 2014 09:22:27 +0000 (11:22 +0200)
src/org/cacert/gigi/pages/account/domain/DomainAddForm.java
src/org/cacert/gigi/pages/account/domain/DomainOverview.java
src/org/cacert/gigi/pages/account/domain/PingConfigForm.java [moved from src/org/cacert/gigi/pages/account/domain/PingconfigForm.java with 97% similarity]
src/org/cacert/gigi/pages/account/domain/PingConfigForm.templ [moved from src/org/cacert/gigi/pages/account/domain/PingconfigForm.templ with 100% similarity]

index 7c198b726f2a39ac9cfc85d2bd3004226bb98b81..f9f8011775626d703c2e10dacbb46e0b0a956ba2 100644 (file)
@@ -20,12 +20,12 @@ public class DomainAddForm extends Form {
 
     private User target;
 
 
     private User target;
 
-    PingconfigForm pcf;
+    PingConfigForm pcf;
 
     public DomainAddForm(HttpServletRequest hsr, User target) throws GigiApiException {
         super(hsr);
         this.target = target;
 
     public DomainAddForm(HttpServletRequest hsr, User target) throws GigiApiException {
         super(hsr);
         this.target = target;
-        pcf = new PingconfigForm(hsr, null);
+        pcf = new PingConfigForm(hsr, null);
     }
 
     @Override
     }
 
     @Override
index b12eb42323f40cace4c156aa3817209b89e9ad58..2ca5d3aeedd7d7cf864c05660f98231c04cb39bb 100644 (file)
@@ -36,7 +36,7 @@ public class DomainOverview extends Page {
             }
             new DomainPinglogForm(req, d).output(resp.getWriter(), getLanguage(req), new HashMap<String, Object>());
             try {
             }
             new DomainPinglogForm(req, d).output(resp.getWriter(), getLanguage(req), new HashMap<String, Object>());
             try {
-                new PingconfigForm(req, d).output(resp.getWriter(), getLanguage(req), new HashMap<String, Object>());
+                new PingConfigForm(req, d).output(resp.getWriter(), getLanguage(req), new HashMap<String, Object>());
             } catch (GigiApiException e) {
                 e.format(resp.getWriter(), getLanguage(req));
             }
             } catch (GigiApiException e) {
                 e.format(resp.getWriter(), getLanguage(req));
             }
similarity index 97%
rename from src/org/cacert/gigi/pages/account/domain/PingconfigForm.java
rename to src/org/cacert/gigi/pages/account/domain/PingConfigForm.java
index dd8444e6738a436681945c9e120bbc08e0c21e03..460866cd1bdfd12e2e368a7269a6d5f116ca1b4d 100644 (file)
@@ -19,7 +19,7 @@ import org.cacert.gigi.output.template.Template;
 import org.cacert.gigi.ping.SSLPinger;
 import org.cacert.gigi.util.RandomToken;
 
 import org.cacert.gigi.ping.SSLPinger;
 import org.cacert.gigi.util.RandomToken;
 
-public class PingconfigForm extends Form {
+public class PingConfigForm extends Form {
 
     public enum SSLType {
         DIRECT, XMPP, XMPP_SERVER, SMTP, IMAP;
 
     public enum SSLType {
         DIRECT, XMPP, XMPP_SERVER, SMTP, IMAP;
@@ -50,9 +50,9 @@ public class PingconfigForm extends Form {
 
     private SSLType[] sslTypes = new SSLType[MAX_SSL_TESTS];
 
 
     private SSLType[] sslTypes = new SSLType[MAX_SSL_TESTS];
 
-    private final Template t = new Template(PingconfigForm.class.getResource("PingconfigForm.templ"));
+    private final Template t = new Template(PingConfigForm.class.getResource("PingConfigForm.templ"));
 
 
-    public PingconfigForm(HttpServletRequest hsr, Domain target) throws GigiApiException {
+    public PingConfigForm(HttpServletRequest hsr, Domain target) throws GigiApiException {
         super(hsr);
         this.target = target;
         if (target == null) {
         super(hsr);
         this.target = target;
         if (target == null) {