Important: In sources its not legal to have non utf-8 characters. To scan for, type the following in source folder after clean: find . "" -exec grep -I -H --color='auto' -P -n "[\x80-\xFF]" {} ;
- Implement textures, geometries and image loading cases in preloader
- Style gritter message (remove image background and use css3)
- Add Confirm Email to signup
- Fix Email regex pattern in js since two double points break the signup
- Save newsletter boolean during signup
Intial project import
- Go to the application folder
- Run play, the SBT prompt should show up
- Type compile to pre-compile the app
- Then type eclipse to generate the eclipse project files
- Open eclipse
- Select File -> Import… -> Existing projects into Workspace
- Pick your application folder and click Finish.
- export SBT_OPTS="-Xmx2G -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=2G -Xss2M -Duser.timezone=GMT"
Fix compilation issues
- Right click on the project, select Properties then Java Build Path
- In the Libraries tab, click Add Class Folder…
- Check target/scala-2.9.1/classes and target/scala-2.9.1/classes_managed
- Back in Java Build Path click Add external JARs…
- Select play\repository\local\org.scala-lang\scala-library\2.9.1\jars\scala-library.jar
Updated dependencies
- Go to the application folder
- Run play, the SBT prompt should show up
- Then type eclipse to generate the eclipse project files
The json api is located under /api and allows the to get informations from database or put new records.
These api errors could occur:
80000 - Form validation failed
The form validation failed for some reason, more detailed information will be send in body object.
80010 - Username/Password is incorrect
This error can be caused by an incorrect username or password.
All entities shouldnt us List's, on table generation with Hibernate important indices are missing (List's allows multiple references of same object!) The third party lib "deadbolt" uses interfaces with list, this must be changed too