[root]/trunk/encuestame/encuestame-core/src/main/resources

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 242 (100.0%) | 2756 (100.0%) | 11.3 |
| juanpicado | 214 (88.4%) | 2549 (92.5%) | 11.9 |
| dianmorales | 27 (11.2%) | 206 (7.5%) | 7.6 |
| dbellorin | 1 (0.4%) | 1 (0.0%) | 1.0 |
Twitter Signin Account. (Alfa mode)
1 lines of code changed in 1 file:
Notification Json Test Cases.
Removed Cron Job unused code.
1 lines of code changed in 1 file:
Fixed job classnotfound.
Fixed web.xml
Reorder classes.
1 lines of code changed in 1 file:
Reorder Test Cases.
0 lines of code changed in 24 files:
Moving classes.
20 lines of code changed in 3 files:
Period Enum.
New Search Exception.
Utils.
3 lines of code changed in 1 file:
Class to represente item on search.
New methods on front end dao.
Service to front end.
3 lines of code changed in 1 file:
FrontEnd Dao.
7 lines of code changed in 1 file:
Reordered domains.
50 lines of code changed in 2 files:
Test cases on web module.
4 lines of code changed in 3 files:
Refactor Survey Folder
4 lines of code changed in 2 files:
Add / Edit Project.
4 lines of code changed in 3 files:
Change Package Pojo Name to Domain
73 lines of code changed in 3 files:
Add Configuration to New Domain and new methods in SurveyDao
2 lines of code changed in 2 files:
Working on project.
2 lines of code changed in 1 file:
Notification admon bar, work in progress.
5 lines of code changed in 2 files:
New Notification Domain.
Pagination on Tweetpoll.
12 lines of code changed in 5 files:
* TweetPoll updated front end.
* New rest json url.
* New votes pages.
4 lines of code changed in 2 files:
<?xml version="1.0" encoding="UTF-8"?>
<profilesXml xmlns="http://maven.apache.org/PROFILES/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/PROFILES/1.0.0 http://maven.apache.org/xsd/profiles-1.0.0.xsd">
<profiles>
<profile>
<id>dev</id>
<activation>
<property>
<name>env</name>
<value>dev</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>true</surefire.failures.ignore>
<app.proxypass>false</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>root</hibernate.datasource.user>
<hibernate.datasource.password>root</hibernate.datasource.password>
<hibernate.datasource.classname>com.mysql.jdbc.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.MySQLInnoDBDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited>type=InnoDB</hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>update</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:mysql://localhost:3306/encuestame_core?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:mysql://localhost:3306/encuestame_test?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>${user.home}/opt/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.FSDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>production</id>
<activation>
<property>
<name>env</name>
<value>production</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>false</surefire.failures.ignore>
<app.proxypass>true</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>root</hibernate.datasource.user>
<hibernate.datasource.password>root</hibernate.datasource.password>
<hibernate.datasource.classname>com.mysql.jdbc.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.MySQLInnoDBDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited>type=InnoDB</hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>none</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:mysql://localhost:3306/encuestame_core?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:mysql://localhost:3306/encuestame_test?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdYtLsSAAAAAP98Llz3_aXPcdGxTwm9kZyLIWPo</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdYtLsSAAAAAH6xwPkpkB5FjngnkLxGqiH-hNYb</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>/home/tomcat/opt/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.FSDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RSgbdwE2aUlyCI3uCjWvtWqU5aeGhQ0tRKJIZXI0jtqNYSqVInXwiMfFA</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>hudson</id>
<activation>
<property>
<name>env</name>
<value>hudson</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>true</surefire.failures.ignore>
<app.proxypass>false</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>root</hibernate.datasource.user>
<hibernate.datasource.password>root</hibernate.datasource.password>
<hibernate.datasource.classname>com.mysql.jdbc.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.MySQLInnoDBDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited>type=InnoDB</hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>update</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:mysql://localhost:3306/encuestame_core?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:mysql://localhost:3306/encuestame_test?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>/home/tomcat/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.RAMDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>default</id>
<activation>
<property>
<name>env</name>
<value>default</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>false</surefire.failures.ignore>
<app.proxypass>false</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>sa</hibernate.datasource.user>
<hibernate.datasource.password></hibernate.datasource.password>
<hibernate.datasource.classname>org.hsqldb.jdbcDriver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.HSQLDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited></hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>create</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:hsqldb:mem:encuestame_core</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:hsqldb:mem:encuestame_test</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>${user.home}/opt/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.RAMDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>dmorales</id>
<activation>
<property>
<name>env</name>
<value>dmorales</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>true</surefire.failures.ignore>
<app.proxypass>false</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>root</hibernate.datasource.user>
<hibernate.datasource.password>root</hibernate.datasource.password>
<hibernate.datasource.classname>com.mysql.jdbc.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.MySQLInnoDBDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited>type=InnoDB</hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>none</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:mysql://localhost:3306/encuestame_core?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:mysql://localhost:3306/encuestame_test?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>${user.home}/opt/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.RAMDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>juanpicado</id>
<activation>
<property>
<name>env</name>
<value>juanpicado</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>false</surefire.failures.ignore>
<app.proxypass>true</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>root</hibernate.datasource.user>
<hibernate.datasource.password>root</hibernate.datasource.password>
<hibernate.datasource.classname>com.mysql.jdbc.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.MySQLInnoDBDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited>type=InnoDB</hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>update</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:mysql://localhost:3306/encuestame_core?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:mysql://localhost:3306/encuestame_test?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>/home/jpicado/opt/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.FSDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>dbellorin</id>
<activation>
<property>
<name>env</name>
<value>dbellorin</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>false</surefire.failures.ignore>
<app.proxypass>true</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>root</hibernate.datasource.user>
<hibernate.datasource.password>root</hibernate.datasource.password>
<hibernate.datasource.classname>com.mysql.jdbc.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.MySQLInnoDBDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.delimited>type=InnoDB</hibernate.datasource.delimited>
<hibernate.datasource.hbm2ddl.auto>update</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:mysql://localhost:3306/encuestame_core?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:mysql://localhost:3306/encuestame_test?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>C:\opt\encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.FSDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
<profile>
<id>postgres</id>
<activation>
<property>
<name>env</name>
<value>postgres</value>
</property>
</activation>
<properties>
<encuestame.logs.path>logs</encuestame.logs.path>
<surefire.failures.ignore>true</surefire.failures.ignore>
<app.proxypass>false</app.proxypass>
<!-- Encuestame Properties -->
<encuestame.properties.path>classpath:encuestame-config.properties</encuestame.properties.path>
<encuestame.url>http://localhost:8080/encuestame/</encuestame.url>
<!-- Hibernate Properties -->
<hibernate.datasource.user>postgres</hibernate.datasource.user>
<hibernate.datasource.password>postgres</hibernate.datasource.password>
<hibernate.datasource.classname>org.postgresql.Driver</hibernate.datasource.classname>
<hibernate.datasource.dialect>org.hibernate.dialect.PostgreSQLDialect</hibernate.datasource.dialect>
<hibernate.datasource.showsql>false</hibernate.datasource.showsql>
<hibernate.datasource.hbm2ddl.auto>update</hibernate.datasource.hbm2ddl.auto>
<hibernate.datasource.core.urldb>jdbc:postgresql://localhost/encuestame_core</hibernate.datasource.core.urldb>
<hibernate.datasource.junit.urldb>jdbc:postgresql://localhost/encuestame_test</hibernate.datasource.junit.urldb>
<hibernate.properties.path>classpath:hibernate.prod.properties</hibernate.properties.path>
<hibernate.test.properties.path>classpath:hibernate.test.properties</hibernate.test.properties.path>
<log4j.properties.path>classpath:log4j.properties</log4j.properties.path>
<!-- reCaptcha -->
<encuestame.recaptcha>true</encuestame.recaptcha>
<encuestame.recaptcha.publickey>6LdyFwUAAAAAAP6p1IeqUM7uMKUYyPazw-haEAUU</encuestame.recaptcha.publickey>
<encuestame.recaptcha.privatekey>6LdyFwUAAAAAAGB3BsjX-j5EgYzULsR3ftiUvwUd</encuestame.recaptcha.privatekey>
<encuestame.recaptcha.recaptchaserver>http://api.recaptcha.net</encuestame.recaptcha.recaptchaserver>
<encuestame.recaptcha.includenoscript>false</encuestame.recaptcha.includenoscript>
<!-- Lucene Properties -->
<lucene.index.path>${user.home}/opt/encuestameIndex</lucene.index.path>
<lucene.index.provider>org.hibernate.search.store.FSDirectoryProvider</lucene.index.provider>
<lucene.properties.path>classpath:lucene.index.properties</lucene.properties.path>
<!-- Google Maps -->
<google.maps.key>ABQIAAAAZf9tmUBWs70LNEs037RG0RTwM0brOpm-All5BF6PoaKBxRWWERTrwDQRedgAhFT4DDMSCMctxb4CWg</google.maps.key>
<!-- Mail Properties -->
<mail.host>smtp.gmail.com</mail.host>
<mail.port>465</mail.port>
<mail.protocol>smtps</mail.protocol>
<mail.username>encuestamettest@gmail.com</mail.username>
<mail.password>encuestamettest123</mail.password>
<mail.noresponse>encuestamettest@gmail.com</mail.noresponse>
<mail.encoding>UTF-8</mail.encoding>
<!-- SMTP -->
<mail.smtp.auth>false</mail.smtp.auth>
<mail.smtp.starttls.enable>false</mail.smtp.starttls.enable>
<mail.smtp.starttls.required>false</mail.smtp.starttls.required>
<!-- SMTPS -->
<mail.smtps.debug>true</mail.smtps.debug>
<mail.smtps.auth>true</mail.smtps.auth>
<mail.smtps.starttls.enable>true</mail.smtps.starttls.enable>
<mail.smtps.starttls.required>false</mail.smtps.starttls.required>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>default</activeProfile>
</activeProfiles>
</profilesXml>
1 lines of code changed in 1 file:
Builded Json class, and the first chart service.
7 lines of code changed in 1 file:
New ChartService.
14 lines of code changed in 1 file:
Spring Json with Jackson framework, first test service.
OAuth structure, first steps.
15 lines of code changed in 1 file:
Fixed twitter test cases with OAuth.
7 lines of code changed in 1 file:
New Domains and Test Cases
* Surveys Domains to control dependencies in Question and Survey pagination, also
Folder will contain many surveys
4 lines of code changed in 2 files:
Publish paths.
7 lines of code changed in 1 file:
Publish paths.
0 lines of code changed in 1 file:
Updating to OAuth authentication ... work in progress.
19 lines of code changed in 4 files:
New Filter, if user is logged, redirect to dashboard.
Update security tag with JSF+Facelets+Spring Security tags, update namespaces.
32 lines of code changed in 3 files:
Working on New Design and Style.
* Remove jQuery and add Prototype
4 lines of code changed in 1 file:
Update lib's to
* Spring Framework and Spring Security 3.0.3
* Removed Spring Modules (ehcache, not compatible with Spring 3.0)
* Spring webflow to 2.1.1 (Fixed problem with Spring Sec and security tags)
22 lines of code changed in 3 files:
New Survey's Pojo.
* Pagination and Folder Survey's Pojo
* Dependencies in questions or exclusion Login in questions
8 lines of code changed in 2 files:
Editing TweetPoll.
3 lines of code changed in 2 files:
Update Domain plural names.
2 lines of code changed in 1 file:
Update Domain plural names.
1 lines of code changed in 1 file:
Update Domain plural names.
6 lines of code changed in 2 files:
Hash Tag methods on TweetPoll Service.
3 lines of code changed in 1 file:
HashTag Dao.
Moved email templates.
Updated data test mysql.
52 lines of code changed in 5 files:
Fixed Bug.Add parent property to Poll Service
1 lines of code changed in 1 file:
New Domain, Hash Tag.
Fixed Serialize bean bug.
2 lines of code changed in 2 files:
Property for force proxy pass.
6 lines of code changed in 1 file:
(65 more)