At line 69 added 2 lines. |
|
|
At line 105 changed 1 line. |
import org.appfuse.util.AbstractObjectReader; |
import org.appfuse.fop.AbstractObjectReader; |
At line 215 changed 1 line. |
Place the user2fo.xsl stylesheet in src/web/**/fop/user2fo.xsl. |
Place the user2fo.xsl stylesheet in src/service/**/fop/xsl/user2fo.xsl. |
At line 333 changed 1 line. |
To support the execution of the User service level test, we need another helper file. This file (attached at the end) is called FOPHelper.java and lives in src/service/**/utils. |
To support the execution of the User service level test, we need another helper file. This file (attached at the end) is called FOPHelper.java and lives in src/service/**/fop. |
At line 386 changed 1 line. |
File xslFile = new File(baseDir, "./src/web/org/appfuse/webapp/fop/user2fo.xsl"); |
File xslFile = new File(baseDir, "./src/service/org/appfuse/fop/xsl/user2fo.xsl"); |
At line 412 changed 2 lines. |
[junit] [appfuse] DEBUG [main] UserManagerTest.testGeneratePDF(88) | Input: a User object |
[junit] [appfuse] DEBUG [main] UserManagerTest.testGeneratePDF(89) | Stylesheet: ././src/web/org/appfuse/webapp/fop/user2fo.xsl |
[junit] [appfuse] DEBUG [main] UserManagerTest.testGeneratePDF(88) | Input: a UserInputSource object |
[junit] [appfuse] DEBUG [main] UserManagerTest.testGeneratePDF(89) | Stylesheet: ././src/service/org/appfuse/fop/xsl/user2fo.xsl |
At line 546 changed 1 line. |
new ClassPathResource("/org/appfuse/webapp/fop/user2fo.xsl"); |
new ClassPathResource("/org/appfuse/fop/xsl/user2fo.xsl"); |
At line 604 removed 4 lines. |
# |
|
|
|
At line 655 changed 1 line. |
Also inside the package-web target add this line: |
Also inside the package-web target add this block: |
At line 658 changed 1 line. |
<include name="**/*.xsl"/> |
|
<fileset dir="src/service"> |
<include name="**/*.xsl"/> |
</fileset> |
|
At line 667 removed 1 line. |
<include name="**/*.xsl"/> |
At line 670 added 3 lines. |
<fileset dir="src/service"> |
<include name="**/*.xsl"/> |
</fileset> |
At line 671 removed 1 line. |
which ensures the xsl file is deployed. |
At line 676 added 2 lines. |
which ensures the xsl file is deployed into our runtime classpath. |
|
At line 677 changed 1 line. |
*src/web/org/appfuse/webapp/fop/user2fo.xsl |
|
At line 685 added 1 line. |
*src/service/org/appfuse/fop/xsl/user2fo.xsl |
At line 692 changed 1 line. |
*Ensure the xsl file is within your webapps/appfuse/WEB-INF/classes/** runtime directory somewhere |
*Ensure the xsl file is within your webapps/appfuse/WEB-INF/classes/** runtime directory |