Commit graph

365 commits

Author SHA1 Message Date
Andrew Abogado
ad60b77493 Add simple description on wireframe-flow 2015-02-02 10:47:29 +08:00
Andrew Abogado
c615864fab Add wireframe flow for reference 2015-02-02 00:08:30 +08:00
Lim Han
c0154f1b10 LH :: Changed the controllers to match the new layout 2015-02-01 23:52:19 +08:00
Lim Han
4e6e38e428 LH :: Added images to be used with layout 2015-01-29 16:27:26 +08:00
Lim Han
3d4b8b2a89 Merge branch 'han' 2015-01-29 15:17:32 +08:00
Nguyen Anh Tuan, Tony
2cbd654b77 TN: Make main page scroll down to Vets when clicking on the link 2015-01-29 08:17:15 +08:00
Andrew Abogado
e241fe9276 Improve navbar 2015-01-28 09:44:42 +08:00
Andrew Abogado
5e035395b5 Allow server access from outside 2015-01-28 09:43:10 +08:00
Nguyen Anh Tuan, Tony
2a49046ff0 TN: Copy Andrew work over to the landing folder. Integrate Angular to
here
2015-01-27 06:57:12 +08:00
Lim Han
e5379c1178 LH :: Merged the styles from Andrew into the Spring web application 2015-01-26 22:54:59 +08:00
Andrew Abogado
b17f0d165a Add README on how to run the "Pet Clinic Front-end" code 2015-01-24 16:34:32 +08:00
Andrew Abogado
0e36e4726a Remove the 'dist' directory from the .gitignore file 2015-01-24 15:09:11 +08:00
Andrew Abogado
9d6f7e8f6f Intial dist subtree commit 2015-01-24 15:08:11 +08:00
Andrew Abogado
aa9f6e98b2 Add show page and link to Discover page 2015-01-23 18:37:33 +08:00
Andrew Abogado
842da2548b Simplify Subscribe to just regular mailto email; Update copy on social 2015-01-23 16:31:12 +08:00
Lim Han
664e5459c3 LH :: Updated controllers to include pets and about page 2015-01-21 23:25:33 +08:00
Andrew Abogado
e31c48d36f Add discover pet owners page 2015-01-21 15:37:13 +08:00
Andrew Abogado
98bce5bd13 Add minor copy edits & subscribe to blog form 2015-01-21 11:41:04 +08:00
Andrew Abogado
94e37c7801 Structure content properly on home page 2015-01-20 16:50:47 +08:00
Andrew Abogado
d0352e1414 Excluse .DS_Store hidden files 2015-01-20 16:34:59 +08:00
Andrew Abogado
a877f87ad3 Remove old pet-clinic-boilerplate folder 2015-01-20 01:18:01 +08:00
Andrew Abogado
b1924a1dc9 Add files folder 2015-01-20 01:16:01 +08:00
Andrew Abogado
86901251d6 Replace favicon 2015-01-20 01:12:23 +08:00
Andrew Abogado
9fa1907bc7 First commit for Yo generated app 2015-01-20 01:10:31 +08:00
Andrew Abogado
84667fb202 Grunt auto optimize 2015-01-19 21:00:23 +08:00
Andrew Abogado
41f7de315f Import bootstrap and jquery; Clean up unused JS 2015-01-19 18:42:48 +08:00
Andrew Abogado
6186f99531 Add header, footer, supplementary info markup 2015-01-19 17:57:11 +08:00
Andrew Abogado
0c1009da45 Add initial HTML5 markup, meta, favicon, font, minified global.css and production.js 2015-01-19 17:43:59 +08:00
Andrew Abogado
2423be0653 Add generated favicons on static assets 2015-01-19 17:42:41 +08:00
Andrew Abogado
a781729c07 Add assets source 2015-01-19 17:24:43 +08:00
Andrew Abogado
318f6a5a48 Remove unused images 2015-01-19 16:55:57 +08:00
Andrew Abogado
97a47be358 Add a simple documentation on how to run grunt 2015-01-19 16:54:30 +08:00
Andrew Abogado
9341828d6a Add Pet Clinic static boilerplate using grunt 2015-01-19 16:40:20 +08:00
Nguyen Anh Tuan, Tony
5a86f83951 Tony: Create Angular route and first controller. Using DevOops theme 2015-01-18 17:03:04 +08:00
Lim Han
eff4dbbe1d LH :: Added assets folder 2015-01-12 20:53:16 +08:00
Lim Han
8dd7512104 LH :: Enabled jackson serialization of jodatime 2015-01-07 07:00:03 +08:00
Lim Han
e598094a25 LH :: Created the rest controllers for the backend services 2014-12-14 17:26:18 +08:00
michaelisvy
7080682d3e workaround because there seems to be a conflict
There seems to be a conflict between the following:

1) New MVC namespace syntax:
<mvc:content-negotiation use-not-acceptable="true">
	    	<mvc:default-views>
	      		<bean class="org.springframework.web.servlet.view.JstlView">
	      			<property name="url" value="" />
	      		</bean>
	    	</mvc:default-views>
	  	</mvc:content-negotiation>

2) Inside my Unit test:
ResultActions actions =
this.mockMvc.perform(get("/vets.xml").accept(MediaType.TEXT_XML));
        actions.andDo(print()); // action is logged into the console

        actions.andExpect(status().isOk());
2014-12-05 13:41:55 +08:00
michaelisvy
ecefae2073 Upgraded to latest Spring Data and AspectJ 2014-12-05 13:40:07 +08:00
michaelisvy
d7b100f90d Removed 'Help' from menu
We were planning to create a ‘help’ but it never happened
2014-11-28 13:54:31 +09:00
michaelisvy
49c39b65dc renamed headTag.jsp -> staticFiles.jsp 2014-11-28 13:52:09 +09:00
michaelisvy
85c8237fb5 added comment on <mvc:default-servlet-handler /> 2014-11-28 13:40:46 +09:00
michaelisvy
6e079b23bb Error control on description was missing
Took that opportunity to use custom tag (14 lines versus 2 lines)
2014-11-28 13:25:17 +09:00
michaelisvy
f0bf692767 Moving "visit" object to request scope
Previously was in session scope (doesn’t scale as well)
2014-11-28 13:19:25 +09:00
michaelisvy
92e7ab43be Simplified ContentNegoViewResolver config
- Now using namespace, much simpler (11 lines instead of 27)
- Just a minor issue with:
<bean class="org.springframework.web.servlet.view.JstlView">
	<property name="url" value="" />
</bean>
(should investigate later if we can remove “url” attribute
2014-11-28 12:45:57 +09:00
michaelisvy
8929d373ec upgraded to Spring Data 1.7.0 2014-10-18 23:39:29 +08:00
michaelisvy
475f5f5349 migrated to Spring 4.1.1.RELEASE
Also had to make changes because Spring now uses com.rometools for RSS
feeds
See here for more details: https://jira.spring.io/browse/SPR-11893
2014-10-18 23:36:15 +08:00
michaelisvy
f5cf426e43 upgraded to Joda Time 2.5 2014-10-18 22:28:30 +08:00
michaelisvy
74f683aaa9 Fixed typo 2014-10-18 22:13:01 +08:00
Mic
0a03a05590 moved to AspectJ 1.8.2 and Dandelion 0.10.1 2014-08-26 10:51:01 +08:00