https://github.com/voldemort/voldemort
Revision 82f80b6e05dec4c95986144fd294871a43617e8d authored by Arunachalam Thirupathi on 10 July 2015, 20:25:23 UTC, committed by Arunachalam Thirupathi on 10 July 2015, 20:25:23 UTC
The previous refactor was done from my mac book which did not
replace the tabs with spaces. This messed up lot of the editing.
Instead of re-doing the change with spaces, I just formatted the code
which is easier and no re-verification is required.

you can review teh commit by adding ?w=1 on github url
or use the git diff -w if you are using the command line to ignore
the whitespaces and there are not many changes.
1 parent 168cb69
Raw File
Tip revision: 82f80b6e05dec4c95986144fd294871a43617e8d authored by Arunachalam Thirupathi on 10 July 2015, 20:25:23 UTC
Fix the white space changes
Tip revision: 82f80b6
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

  <listener>
    <listener-class>voldemort.server.http.VoldemortServletContextListener</listener-class>
  </listener>

  <servlet>
    <servlet-name>store-servlet</servlet-name>
    <servlet-class>voldemort.server.http.StoreServlet</servlet-class>
  </servlet>
  
  <servlet>
    <servlet-name>admin-servlet</servlet-name>
    <servlet-class>voldemort.server.http.gui.AdminServlet</servlet-class>
  </servlet>
  
  <servlet>
    <servlet-name>query-servlet</servlet-name>
    <servlet-class>voldemort.server.http.gui.QueryServlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>admin-servlet</servlet-name>
    <url-pattern>/admin</url-pattern>
  </servlet-mapping>
  
  <servlet-mapping>
    <servlet-name>query-servlet</servlet-name>
    <url-pattern>/query</url-pattern>
  </servlet-mapping>

  <servlet-mapping>
    <servlet-name>store-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
  </servlet-mapping>

</web-app>
back to top