Skip to content

Commit

Permalink
adapt for mobile divice
Browse files Browse the repository at this point in the history
  • Loading branch information
zimmem committed Apr 24, 2013
1 parent a68bdf8 commit 3b9ae72
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,11 @@
<artifactId>jdo-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-core</artifactId>
<version>3.1.3</version>
</dependency>
</dependencies>
</plugin>

Expand Down Expand Up @@ -324,7 +329,10 @@
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.7.4</version>
<version>1.7.7</version>
<configuration>
<address>0.0.0.0</address>
</configuration>
</plugin>

<!-- Upload application to the appspot automatically, during release:perform -->
Expand Down Expand Up @@ -382,14 +390,14 @@

<!-- Specify AppEngine version for your project. It should match SDK version pointed to by ${gae.home} property (Typically, one used by your Eclipse plug-in) -->
<spring.version>3.2.0.RELEASE</spring.version>
<gae.version>1.7.4</gae.version>
<gae.version>1.7.7</gae.version>
<!-- Upload to http://test.latest.<applicationName>.appspot.com by default -->
<gae.application.version>${maven.build.timestamp}</gae.application.version>
<gae.home>
${settings.localRepository}/com/google/appengine/appengine-java-sdk/${gae.version}/appengine-java-sdk-${gae.version}
</gae.home>
<datanucleus.version>1.1.5</datanucleus.version>

<!-- do not user https when upload to gae -->
<insecure>true</insecure>
</properties>
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/WEB-INF/velocity/layout/default.vm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#foreach($data in $metas.all)
<meta name="$!{data.name}" content="$!esc.html(${data.content})"/>
#end
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;">
<link type="text/css" rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="/static/bootstrap/css/bootstrap-responsive.min.css" />
<link type="text/css" rel="stylesheet" href="/static/google-code-prettify/prettify.css" />
Expand Down

0 comments on commit 3b9ae72

Please sign in to comment.