Navigation Menu

Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumebort committed Jan 31, 2010
0 parents commit c16c196
Show file tree
Hide file tree
Showing 292 changed files with 21,690 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
@@ -0,0 +1,10 @@
lib/play-scala.jar
.DS_Store
test-result
tmp
logs
eclipse
*.~*
dist
.sass-cache
.yardopts
45 changes: 45 additions & 0 deletions build.xml
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>

<project name="sass" default="build" basedir=".">

<path id="project.classpath">
<pathelement path="${play.path}/framework/classes"/>
<fileset dir="${play.path}/framework/lib">
<include name="*.jar"/>
</fileset>
<fileset dir="${play.path}/framework">
<include name="*.jar"/>
</fileset>
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</path>

<target name="build" depends="compile">

<copy todir="tmp/classes">
<fileset dir="src">
<include name="**/*.properties"/>
<include name="**/*.xml"/>
<include name="**/play.plugins"/>
<include name="**/play.static"/>
</fileset>
</copy>
<jar destfile="lib/play-sass.jar" basedir="tmp/classes">
<manifest>
<section name="Play-module">
<attribute name="Specification-Title" value="sass"/>
</section>
</manifest>
</jar>
<delete dir="tmp" />
</target>

<target name="compile">
<mkdir dir="tmp/classes" />
<javac srcdir="src" destdir="tmp/classes" target="1.5" debug="true">
<classpath refid="project.classpath" />
</javac>
</target>

</project>
15 changes: 15 additions & 0 deletions commands.py
@@ -0,0 +1,15 @@
# Here you can create play commands that are specific to the module

# Example below:
# ~~~~
if play_command == 'hello':
try:
print "~ Hello"
sys.exit(0)

except getopt.GetoptError, err:
print "~ %s" % str(err)
print "~ "
sys.exit(-1)

sys.exit(0)
4 changes: 4 additions & 0 deletions haml-2.2.16/CONTRIBUTING
@@ -0,0 +1,4 @@
Contributions are welcomed. Please see the following sites for guidelines:

http://haml-lang.com/development.html#contributing
http://sass-lang.com/development.html#contributing
20 changes: 20 additions & 0 deletions haml-2.2.16/MIT-LICENSE
@@ -0,0 +1,20 @@
Copyright (c) 2006-2009 Hampton Catlin, Nathan Weizenbaum, and Chris Eppstein

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2 comments on commit c16c196

@torbjornvatn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this module include the really cool iPhone template shown in this video: http://cuisine.reelance.com/ ?
I'm looking forward to trying this regardless of that though :)

@guillaumebort
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, we'll release a new module called play-mobile, using the sass module to create some mobile UI. A very beta version should be released soon. Stay tuned.

Please sign in to comment.