Commit 9f43e1b9 authored by Evan W. Patton's avatar Evan W. Patton Committed by Jeffrey I. Schiller

Remove unused appstats

Change-Id: I902029ad88598ecff611603234d78345e85d1a7a
parent ccaf1506
...@@ -11,28 +11,6 @@ ...@@ -11,28 +11,6 @@
<filter-class>com.google.appinventor.server.OdeAuthFilter</filter-class> <filter-class>com.google.appinventor.server.OdeAuthFilter</filter-class>
</filter> </filter>
<!-- Filter for application statistics. See:
http://code.google.com/appengine/docs/java/tools/appstats.html
Note that all requests are logged, including appstats ones.
The only way I see to not log the appstats ones is to
explicitly list all the ones we do want, which seems
error-prone.
-->
<!-- App Stats Disabled
<filter>
<filter-name>appstats</filter-name>
<filter-class>com.google.appengine.tools.appstats.AppstatsFilter</filter-class>
<init-param>
<param-name>logMessage</param-name>
<param-value>Appstats available: /appstats/details?time={ID}</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>appstats</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
-->
<!-- Security constraints: require login for these urls --> <!-- Security constraints: require login for these urls -->
<!-- This is how we implement Google Account login --> <!-- This is how we implement Google Account login -->
...@@ -62,7 +40,6 @@ ...@@ -62,7 +40,6 @@
<!-- Security constraint: require admin access for the appstats url --> <!-- Security constraint: require admin access for the appstats url -->
<security-constraint> <security-constraint>
<web-resource-collection> <web-resource-collection>
<url-pattern>/appstats/*</url-pattern>
<url-pattern>/convert/</url-pattern> <url-pattern>/convert/</url-pattern>
</web-resource-collection> </web-resource-collection>
<auth-constraint> <auth-constraint>
...@@ -345,16 +322,6 @@ ...@@ -345,16 +322,6 @@
<!-- TODO: Optionally add a <welcome-file-list> tag to display a welcome file. --> <!-- TODO: Optionally add a <welcome-file-list> tag to display a welcome file. -->
<!-- appstats-->
<servlet>
<servlet-name>appstats</servlet-name>
<servlet-class>com.google.appengine.tools.appstats.AppstatsServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>appstats</servlet-name>
<url-pattern>/appstats/*</url-pattern>
</servlet-mapping>
<!-- components --> <!-- components -->
<servlet> <servlet>
<servlet-name>componentService</servlet-name> <servlet-name>componentService</servlet-name>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment