Skip to content

Commit b23dcce

Browse files
committed
Correct merge error in code to reference new help URL in editor menu.
2 parents d072cfd + c135b92 commit b23dcce

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

src/main/java/com/parallax/server/blocklyprop/config/ServletsModule.java

-5
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
import com.parallax.server.blocklyprop.servlets.PrivacyPolicyServlet;
2828
import com.parallax.server.blocklyprop.servlets.ConfirmRequestServlet;
2929
import com.parallax.server.blocklyprop.servlets.ConfirmServlet;
30-
import com.parallax.server.blocklyprop.servlets.HelpSearchServlet;
31-
import com.parallax.server.blocklyprop.servlets.HelpServlet;
3230
import com.parallax.server.blocklyprop.servlets.NewOAuthUserServlet;
3331
import com.parallax.server.blocklyprop.servlets.OAuthGoogleServlet;
3432
import com.parallax.server.blocklyprop.servlets.PasswordResetRequestServlet;
@@ -130,9 +128,6 @@ protected void configureServlets() {
130128
serve("/public/clientinstructions").with(TextileClientInstructionsServlet.class);
131129
serve("/public/changelog").with(TextileChangeLogServlet.class);
132130

133-
// Help
134-
serve("/public/help").with(HelpServlet.class);
135-
serve("/public/helpsearch").with(HelpSearchServlet.class);
136131

137132
// OAuth
138133
serve("/oauth/newuser").with(NewOAuthUserServlet.class);

src/main/java/com/parallax/server/blocklyprop/config/SetupConfig.java

-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import com.parallax.server.blocklyprop.SessionData;
3030
import com.parallax.server.blocklyprop.jsp.Properties;
3131
import com.parallax.server.blocklyprop.monitoring.Monitor;
32-
import com.parallax.server.blocklyprop.utils.HelpFileInitializer;
3332
import java.sql.Driver;
3433
import java.sql.DriverManager;
3534
import java.util.Enumeration;
@@ -40,9 +39,6 @@
4039
import org.slf4j.Logger;
4140
import org.slf4j.LoggerFactory;
4241

43-
// import java.sql.SQLException;
44-
// import ch.qos.logback.classic.LoggerContext;
45-
4642

4743
/**
4844
*
@@ -73,7 +69,6 @@ protected void configure() {
7369
bind(SessionData.class);
7470
bind(Properties.class).asEagerSingleton();
7571

76-
bind(HelpFileInitializer.class).asEagerSingleton();
7772
bind(Monitor.class).asEagerSingleton();
7873

7974
// Configure the backend data store

src/main/java/com/parallax/server/blocklyprop/servlets/HelpSearchServlet.java

+4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333
/**
3434
*
3535
* @author Michel
36+
*
37+
* @deprecated The help system has been moved to learn.parallax.com
38+
*
3639
*/
40+
@Deprecated
3741
@Singleton
3842
public class HelpSearchServlet extends HttpServlet {
3943

src/main/java/com/parallax/server/blocklyprop/servlets/HelpServlet.java

+3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
/**
2424
*
2525
* @author Michel
26+
*
27+
* @deprecated Help system is now hosted on learn.parallax.com
2628
*/
29+
@Deprecated
2730
@Singleton
2831
public class HelpServlet extends HttpServlet {
2932

src/main/java/com/parallax/server/blocklyprop/utils/HelpFileInitializer.java

+3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@
3737
/**
3838
*
3939
* @author Michel
40+
*
41+
* @deprecated The help system has been moved to learn.parallax.com
4042
*/
43+
@Deprecated
4144
@Singleton
4245
public class HelpFileInitializer {
4346

src/main/webapp/my/projects.jsp

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
--%>
66
<%@page contentType="text/html" pageEncoding="UTF-8"%>
77
<%@ include file="/WEB-INF/includes/include.jsp"%>
8-
<!DOCTYPE html!>
9-
<html>
8+
<!DOCTYPE html>
109
<head>
1110
<meta name="application-name" content="BlocklyProp"/>
1211
<meta name="msapplication-TileColor" content="#FFFFFF" />

0 commit comments

Comments
 (0)