Quick Search:

View detailed chart Line History

line history graph

View Mode

Logical Physical

Show Arbitrary Diff

From to

Supports revisions and tags.

Watches and RSS

History

infrastructureSpike 14137 14061 trunk 14259 12623 9357

latest revision download trunk

14259 deleted | Diffs: previous, other | Lines: 0 ( +0, -62 )

Created: 2008-12-23 20:31:36 -0800 (14 days ago) | Author: adamfeuer | Changeset: 14259

changes to make project layout match Maven's suggested layout:

* moved application source code to src/main/java
* moved test source code to src/test/java
* updated some hard coded paths
* removed some File objects in favor of classpath resource loaders

14155 new/copied annotated / raw | Diffs: previous, other | Lines: 62 ( +62, -0 )

Created: 2008-11-25 13:19:48 -0800 (43 days ago) | Author: meonkeys | Changeset: 14155

Moved to: trunk/mifos/src/main/java/org/mifos/conf/build.properties 14259

Copied from: branches/infrastructureSpike/mifos/src/org/mifos/conf/build.properties 14137

Merged revisions 14062,14065,14073,14078-14080,14087-14093,14100-14107,14110,14112,14123,14134-14145,14148-14150 via svnmerge from
https://mifos.dev.java.net/svn/mifos/branches/infrastructureSpike

........
 r14062 | meonkeys | 2008-11-11 14:18:30 -0600 (Tue, 11 Nov 2008) | 39 lines
 
 Story 1116:
 
 * Replaced spring.2.0.5.jar with spring.2.5.5.jar (this was committed in
   revision 14060 on the trunk)
 * rebuilt and deployed to Tomcat
 * ran SeedData selenium script - successful
 * created a cash confirmation report successfully (which should have exercised
   spring).
 * ran unit tests successfully
 * added reference to spring dispatch servlet "cheetah" to web.xml, mapped
   "*.ftl" to it.
 * created WEB-INF/cheetah-servlet.xml, wiped out all config except
   genericController definition. mapped test.ftl to genericController.
 * Had to add spring-mvc.jar to lib directory to get it to compile.
 * Copied spring-beans-2.5.xsd to src/org/mifos/framework/util/resources/
 * In cheetah-servlet.xml, removed classpath locator for xsd file (needs to be
   fixed in future to remove dependency on on-line access to the file).
 * Had to add freemarker-2.3.13.jar to lib (We need Maven!!!!)
 * Had to upgrade log4j to log4j-1.2.14.jar.
 * Build and deploy tomcat was successful
 
 freemarker-2.3.13.jar
 * library version 2.3.13
 * http://freemarker.org
 * Visigoth BSD-style License
 * SHA-1 checksum: d5d66b544d9e4a89d7eed36ee0f393350d275796
 
 log4j-1.2.14.jar
 * library version 1.2.14
 * http://logging.apache.org/log4j/1.2/
 * Apache 2.0 License
 * SHA-1 checksum: 03b254c872b95141751f414e353a25c2ac261b51
 
 spring-webmvc-2.5.5.jar
 * library version 2.5.5
 * http://www.springsource.org
 * Apache 2.0 License
 * SHA-1 checksum: 0a158cb352b5319633ad9e75675e6eed780d285c
........
 r14065 | meonkeys | 2008-11-11 17:48:18 -0600 (Tue, 11 Nov 2008) | 12 lines
 
 Gazelle now has a Spring servlet. Deploy, then visit
 
     http://localhost:8080/mifos/test.ftl
 
 this will fetch
 
     CATALINA_HOME/webapps/mifos/WEB-INF/freemarker/test.ftl
 
 In the Gazelle source tree, this FreeMarker template is at
 
     src/org/mifos/WEB-INF/freemarker/test.ftl
........
 r14073 | meonkeys | 2008-11-12 14:22:50 -0600 (Wed, 12 Nov 2008) | 14 lines
 
 Story 1104.
 
 Set up initial acceptance test framework for Rhino based on Cheetah
 technologies.
 
 This is in-progress work: the maven build is incomplete. Left to do:
 [_] fix Spring configuration: test-context.xml is not on the classpath?
 [_] set up "hello world"-like single-page test, hitting legacy login page
 [_] set up "hello world"-like single-page test, hitting FreeMarker page
 [_] automate install of Gazelle war into local Maven repository
     * this is currently being done by hand
     * this may be an ant task
     * this may be an ant task that calls maven
........
 r14078 | meonkeys | 2008-11-13 11:09:33 -0600 (Thu, 13 Nov 2008) | 2 lines
 
 using the same contents as ping.ftl from Cheetah
........
 r14079 | meonkeys | 2008-11-13 13:00:54 -0600 (Thu, 13 Nov 2008) | 3 lines
 
 Pruned a couple of directories not under active development and not part of any
 known deployment: mifosSOAP, www.
........
 r14080 | meonkeys | 2008-11-13 13:30:31 -0600 (Thu, 13 Nov 2008) | 9 lines
 
 Story 1104
 
 * don't need test-context.xml (was used to set up database stuff in Cheetah)
 * turned off PMD stuff
 * fix expected/actual ordering for assertEquals in PingPage#verifyPage
 * copied over SeleniumSpeedControl from Cheetah
 * copied over ui-test-context.xml from Cheetah
 * renamed test.ftl as ping.ftl
........
 r14087 | keithpierce | 2008-11-14 09:00:29 -0600 (Fri, 14 Nov 2008) | 1 line
 
 Creating top-level Maven project to drive legacy build and new acceptance tests for Gazelle.
........
 r14088 | keithpierce | 2008-11-14 10:11:03 -0600 (Fri, 14 Nov 2008) | 1 line
 
 adding wrapper pom.xml for legacy application in an attempt to simply run the existing ant build in-place
........
 r14089 | keithpierce | 2008-11-14 11:36:31 -0600 (Fri, 14 Nov 2008) | 1 line
 
 Fixed top-level pom to run ant. Ant runs but doesn't yet work correctly -- possible classpath issues.
........
 r14090 | vanmh | 2008-11-14 11:43:47 -0600 (Fri, 14 Nov 2008) | 2 lines
 
 Added cheetah-serviceInterfaces jar and implemented ApplicationInformationService interface with test.
........
 r14091 | keithpierce | 2008-11-14 13:14:38 -0600 (Fri, 14 Nov 2008) | 1 line
 
 Further work on pom-ant connection -- gets farther but chokes.
........
 r14092 | keithpierce | 2008-11-14 14:16:54 -0600 (Fri, 14 Nov 2008) | 1 line
 
 Added dependencies to make Ant run.
........
 r14093 | meonkeys | 2008-11-14 15:24:00 -0600 (Fri, 14 Nov 2008) | 3 lines
 
 replace ant dependency (needed for legacy svn-revision task) with one that
 exists in Maven repository/ies.
........
 r14100 | meonkeys | 2008-11-17 08:56:27 -0600 (Mon, 17 Nov 2008) | 5 lines
 
 * inheritAll defaults to true; removed
 * inheritRefs is probably not needed since there are no references defined in Maven that Ant needs (yet)
 
 See http://ant.apache.org/manual/CoreTasks/ant.html
........
 r14101 | keithpierce | 2008-11-17 10:50:39 -0600 (Mon, 17 Nov 2008) | 1 line
 
 Added maven-install-plugin to install Mifos war file into the Maven repository for acceptance tests.
........
 r14102 | meonkeys | 2008-11-17 11:07:06 -0600 (Mon, 17 Nov 2008) | 2 lines
 
 reindented -- tabs only
........
 r14103 | meonkeys | 2008-11-17 11:10:28 -0600 (Mon, 17 Nov 2008) | 3 lines
 
 Make Selenium RC work like Cheetah currently does. This would be useful
 parameterized.
........
 r14104 | meonkeys | 2008-11-17 11:15:00 -0600 (Mon, 17 Nov 2008) | 3 lines
 
 Fixed Selenium RC path(?) to Firefox 2 for workstations with only Firefox 2
 installed.
........
 r14105 | meonkeys | 2008-11-17 13:51:19 -0600 (Mon, 17 Nov 2008) | 2 lines
 
 use the "package" phase instead
........
 r14106 | meonkeys | 2008-11-17 13:51:40 -0600 (Mon, 17 Nov 2008) | 2 lines
 
 Fix mapping of ping.ftl
........
 r14107 | meonkeys | 2008-11-17 13:52:40 -0600 (Mon, 17 Nov 2008) | 5 lines
 
 Story 1104
 
 take a few measures to decrease the build time of the legacy build by avoiding
 unnecessary(?) "clean" steps
........
 r14110 | vanmh | 2008-11-17 20:17:51 -0600 (Mon, 17 Nov 2008) | 6 lines
 
 Added Spring configuration, additional libraries, tlds and properties files to support the page:
 
 http://localhost:8080/mifos/appInfoNoSecurity.ftl
 
 Still need to include css configuration to get nice formatting for rendering.
........
 r14112 | meonkeys | 2008-11-18 13:54:02 -0600 (Tue, 18 Nov 2008) | 5 lines
 
 provide profile for Hudson continuous integration server
 
 (cut and pasted continuous-integration section from Cheetah
 acceptanceTesting/pom.xml)
........
 r14123 | vanmh | 2008-11-19 17:22:39 -0600 (Wed, 19 Nov 2008) | 1 line
 
 Update to use messages.properties from cheetah-userInterface.jar and remove the duplicated messages.properties from gazelle.
........
 r14134 | keithpierce | 2008-11-20 14:15:04 -0600 (Thu, 20 Nov 2008) | 1 line
 
 Removing acceptance test files that are now referenced in the dependent cheetah testFramework jar, and added testFramework .jar as a dependency to gazelle acceptance test.
........
 r14135 | meonkeys | 2008-11-20 14:20:54 -0600 (Thu, 20 Nov 2008) | 3 lines
 
 This is the new top-level source directory for Gazelle. Adding sub-modules to
 the Eclipse Java Build Path
........
 r14136 | meonkeys | 2008-11-20 14:49:36 -0600 (Thu, 20 Nov 2008) | 3 lines
 
 Directory used as base for acceptanceTests project in Eclipse moved "up" one
 level, so these .classpath and .project are not necessary.
........
 r14137 | adamfeuer | 2008-11-20 15:20:28 -0600 (Thu, 20 Nov 2008) | 2 lines
 
 changes to support running gazelle under WTP
........
 r14138 | adamfeuer | 2008-11-20 19:02:25 -0600 (Thu, 20 Nov 2008) | 2 lines
 
 changes to make gazelle work with Eclipse Maven builder and WTP
........
 r14139 | adamfeuer | 2008-11-20 20:04:24 -0600 (Thu, 20 Nov 2008) | 2 lines
 
 more changes to remove errors while using Eclipse Maven Plugin
........
 r14140 | adamfeuer | 2008-11-20 22:47:54 -0600 (Thu, 20 Nov 2008) | 2 lines
 
 setting version of maven-properties-plugin
........
 r14141 | meonkeys | 2008-11-21 09:36:03 -0600 (Fri, 21 Nov 2008) | 2 lines
 
 tell Eclipse about acceptanceTests source directories
........
 r14142 | meonkeys | 2008-11-21 09:41:52 -0600 (Fri, 21 Nov 2008) | 4 lines
 
 acceptanceTests/src/test/resources and its lone inhabitant,
 ui-test-context.xml, appear to have vanished. Removing from the classpath for
 now...
........
 r14143 | meonkeys | 2008-11-21 09:44:15 -0600 (Fri, 21 Nov 2008) | 9 lines
 
 Let subversion manage newlines in plain text files. This is a whitespace-only
 code change. This will ease future merges and isolate us from platform
 differences in newlines.
 
 Please see the following post on mifos-developer for a more detailed
 explanation and instructions on how you can make sure new text files have the
 svn:eol-style property set properly:
 http://article.gmane.org/gmane.comp.finance.mifos.devel/4172
........
 r14144 | keithpierce | 2008-11-21 10:48:11 -0600 (Fri, 21 Nov 2008) | 2 lines
 
 Added acceptance tests to test logging in to Mifos - Mingle story 1131
 ( http://mingle.mifos.org/projects/mifos/cards/1131 )
........
 r14145 | keithpierce | 2008-11-21 14:29:53 -0600 (Fri, 21 Nov 2008) | 1 line
 
 Refactor acceptance test page objects to better clarify and focus responsibilities of the classes.
........
 r14148 | adamfeuer | 2008-11-21 18:49:06 -0600 (Fri, 21 Nov 2008) | 2 lines
 
 updated cheetah-userInterface-0.0.3-SNAPSHOT.jar; changes to spring cheetah-servlet.xml to enable the css to work for the appInfoNoSecurity page
........
 r14149 | adamfeuer | 2008-11-21 19:28:01 -0600 (Fri, 21 Nov 2008) | 2 lines
 
 added acceptance test for story 1103 - appInfoNoSecurity.ftl
........
 r14150 | adamfeuer | 2008-11-21 20:18:04 -0600 (Fri, 21 Nov 2008) | 2 lines
 
 clean up of acceptance tests - used ids in login test, moved AppInfoNoSecurity navigation to its page object
........

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

12623 annotated / raw | Diffs: previous, other | Lines: 62 ( +8, -1 )

Created: 2008-03-27 19:27:17 -0700 (9 months ago) | Author: meonkeys | Changeset: 12623

Copied (2 times):

Allow developers to stop unit tests immediately after the first problem by
customizing "test.haltonerror" and "test.haltonfailure" boolean values in their
my.build.properties.

All unit tests pass and test deployment succeeded.

Branch point for: glim infrastructureSpike issue_1339 issue_1513 issue_1519 issue_1601 issue_2088 issue_2148 issue_2153 issue_2184 issue_2204 issue_2232 loanDefaultsCleanup localeRework v1.1.x v1.2.x waitingForCleanTrunkBuild

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

12225 annotated / raw | Diffs: previous, other | Lines: 55 ( +2, -2 )

Created: 2007-12-14 17:18:24 -0800 (12 months ago) | Author: vanmh | Changeset: 12225

Work in progress on i18n story #125: Allow lookup labels stored in the database to override corresponding values in properties files.

Includes updating Entity names to remove whitespace.

Branch point for: chartOfAccounts hibernateUpgrade issue1535 meonkeys

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

12119 annotated / raw | Diffs: previous, other | Lines: 55 ( +1, -0 )

Created: 2007-09-12 14:09:58 -0700 (15 months ago) | Author: vanmh | Changeset: 12119

Copied to: branches/mifosTomsIIRMWork/conf/build.properties 12208

added a deploy target for Tomcat

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

11794 annotated / raw | Diffs: previous, other | Lines: 54 ( +2, -2 )

Created: 2007-06-08 09:08:14 -0700 (19 months ago) | Author: gsteff | Changeset: 11794

Copied to: branches/mifosWithFitNesse/conf/build.properties 12091

New survey types and amit's group date validation changes

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

10783 annotated / raw | Diffs: previous, other | Lines: 54 ( +12, -3 )

Created: 2006-09-15 11:27:03 -0700 (2 years 3 months ago) | Author: jkingdon | Changeset: 10783

Copied (2 times):

The only thing we need to know about the web server is
where to copy mifos.war.  So rearrange the env.JBOSS_HOME
and all that accordingly.

Branch point for: cron_jobs_fix tag:Iteration-13 tag:Iteration-14 tag:Stabilization tag:Stabilization_Patch

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

10422 annotated / raw | Diffs: previous, other | Lines: 45 ( +4, -5 )

Created: 2006-08-11 14:05:40 -0700 (2 years 4 months ago) | Author: jdailey | Changeset: 10422

modifying svn properties , removing cvs

Branch point for: tag:Intermediate release Iteration-12 tag:Iteration-11 tag:Iteration-12

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

10260 annotated / raw | Diffs: previous, other | Lines: 46 ( +2, -2 )

Created: 2006-07-16 23:07:38 -0700 (2 years 5 months ago) | Author: aditi_vasuv | Changeset: 10260

Updated Mifos to mifos

Branch point for: tag:Iteration-10 tag:Iteration-9

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

10074 new/moved annotated / raw | Diffs: previous, other | Lines: 46 ( +46, -0 )

Created: 2006-06-26 00:57:13 -0700 (2 years 6 months ago) | Author: twong | Changeset: 10074

Moved from: mifosrepo/trunk/mifos/conf/build.properties 9790

Moving body of mifos code to its place in the new repository.

Branch point for: tag:Iteration-7 tag:Iteration-8

Tags: Iteration-8

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

9790 new/moved annotated / raw | Diffs: previous, other | Lines: 46 ( +46, -0 )

Created: 2006-06-12 01:02:21 -0700 (2 years 6 months ago) | Author: sreedhark | Changeset: 9790

Moved from: mifosrepo/trunk/DevSpace/mifos/conf/build.properties 9789

Moved to: trunk/mifos/conf/build.properties 10074

Copied to: mifosrepo/trunk/mifos1/conf/build.properties 9997

Moved mifos to under "trunk"

Branch point for: tag:Iteration-6

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

9789 new/moved annotated / raw | Diffs: previous, other | Lines: 46 ( +46, -0 )

Created: 2006-06-12 00:58:45 -0700 (2 years 6 months ago) | Author: sreedhark | Changeset: 9789

Moved from: mifosrepo/trunk/DevSpace/WorkSpace/conf/build.properties 9357

Moved to: mifosrepo/trunk/mifos/conf/build.properties 9790

Renamed WorkSpace to mifos

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

9357 new annotated / raw | Lines: 46 ( +46, -0 )

Created: 2006-04-28 11:42:29 -0700 (2 years 8 months ago) | Author: amit | Changeset: 9357

Moved to: mifosrepo/trunk/DevSpace/mifos/conf/build.properties 9789

Added the conf directory which contains configurable properties for build, db connection, data source etc. This is done to ensure that no files in the source tree are modified during build.

Tags: Iteration-4 GK-Betarelease Iteration-5

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

latest revision download Branch infrastructureSpike

14137 new/moved annotated / raw | Diffs: previous, other | Lines: 62 ( +62, -0 )

Created: 2008-11-20 13:20:28 -0800 (48 days ago) | Author: adamfeuer | Changeset: 14137

Moved from: branches/infrastructureSpike/mifos/conf/build.properties 14061

Copied to: trunk/mifos/src/org/mifos/conf/build.properties 14155

changes to support running gazelle under WTP

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

14061 new annotated / raw | Diffs: previous, other | Lines: 62 ( +62, -0 )

Created: 2008-11-11 11:35:55 -0800 (57 days ago) | Author: meonkeys | Changeset: 14061

Moved to: branches/infrastructureSpike/mifos/src/org/mifos/conf/build.properties 14137

Branching for Mingle story 1101

Properties

 svn:eol-style = native
 svn:keywords = Author Date Id Revision

Crucible: Open Source License registered to Atlassian.
Atlassian Crucible, painless code review. (Version:1.6.1 Build:build-r20568 2008-09-30) - Administration - Page generated 2009-01-07 19:32 -0800