Initail import of source.
commit7e788128b02a4029c289d77d60bd68dfa1ac202b
authorTommy Wang <tommy@gaixie.org>
Sun, 25 Jul 2010 17:15:27 +0000 (26 01:15 +0800)
committerTommy Wang <tommy@gaixie.org>
Sun, 25 Jul 2010 17:15:27 +0000 (26 01:15 +0800)
tree413302e9006cdf36fb5f0109c275347dbd0025db
Initail import of source.
53 files changed:
.gitignore [new file with mode: 0644]
LICENSE.txt [new file with mode: 0644]
NOTICE.txt [new file with mode: 0644]
README.txt [new file with mode: 0644]
jibu-core/pom.xml [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/JibuException.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/CDL.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/Cookie.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/CookieList.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/HTTP.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/HTTPTokener.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONArray.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONException.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONML.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONObject.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONString.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONStringer.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONTokener.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/JSONWriter.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/XML.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/json/XMLTokener.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/MD5.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/dao/SecurityDAOFactory.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/dao/UserDAO.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/dao/impl/UserDAODerby.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/dao/impl/UserDAOPgSQL.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/model/User.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/service/LoginService.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/security/service/UserService.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/utils/BeanConverter.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/utils/ConnectionUtils.java [new file with mode: 0644]
jibu-core/src/main/java/org/gaixie/jibu/utils/StringConverter.java [new file with mode: 0644]
jibu-core/src/main/resources/dbcp.properties [new file with mode: 0644]
jibu-core/src/main/resources/dbscripts/derby/createdb.sql [new file with mode: 0644]
jibu-core/src/main/resources/dbscripts/hsqldb/createdb.sql [new file with mode: 0644]
jibu-core/src/main/resources/jibu.properties [new file with mode: 0644]
jibu-core/src/main/resources/logback.xml [new file with mode: 0644]
jibu-core/src/test/java/org/gaixie/jibu/DbUnitTest.java [new file with mode: 0644]
jibu-core/src/test/java/org/gaixie/jibu/security/service/LoginServiceTest.java [new file with mode: 0644]
jibu-core/src/test/java/org/gaixie/jibu/security/service/UserServiceTest.java [new file with mode: 0644]
jibu-core/src/test/java/org/gaixie/jibu/utils/BeanConverterTest.java [new file with mode: 0644]
jibu-core/src/test/java/org/gaixie/jibu/utils/Person.java [new file with mode: 0644]
jibu-core/src/test/resources/dataset.xml [new file with mode: 0644]
jibu-web/jibu-core-extjs/pom.xml [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/java/org/gaixie/jibu/security/filter/LoginFilter.java [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/java/org/gaixie/jibu/security/servlet/LoginServlet.java [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/java/org/gaixie/jibu/security/servlet/MainServlet.java [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/webapp/WEB-INF/web.xml [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/webapp/config.jsp [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/webapp/index.html [new file with mode: 0644]
jibu-web/jibu-core-extjs/src/main/webapp/js/main.js [new file with mode: 0644]
jibu-web/pom.xml [new file with mode: 0644]
pom.xml [new file with mode: 0644]