Skip to content

Commit

Permalink
bringing it up to date with latest upstream changes. also credits.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Oct 24, 2010
1 parent cfc7442 commit 8bf32a1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
15 changes: 14 additions & 1 deletion build/build.xml
Expand Up @@ -225,11 +225,13 @@
<!-- <!--
<delete dir="./${dir.publish}/${dir.js.lib}/"/> <delete dir="./${dir.publish}/${dir.js.lib}/"/>
<delete file="./${dir.publish}/${dir.js}/libs-${build.number}.js"/> <delete file="./${dir.publish}/${dir.js}/libs-${build.number}.js"/>
-->
<delete includeemptydirs="true"> <delete includeemptydirs="true">
<fileset dir="./${dir.publish}/${dir.js.libs}/" includes="*.js" excludes="*.min.js"/> <fileset dir="./${dir.publish}/${dir.js.libs}/" includes="*.js" excludes="*.min.js"/>
</delete> </delete>
-->
</target> </target>


<!-- JS, Delete concatenated libs file (only if concat.scripts and delete.unoptimized are defined) --> <!-- JS, Delete concatenated libs file (only if concat.scripts and delete.unoptimized are defined) -->
Expand Down Expand Up @@ -274,6 +276,7 @@
<!-- <delete file="./publish/css/style-${build.number}.css"/> --> <!-- <delete file="./publish/css/style-${build.number}.css"/> -->
</target> </target>



<!-- <!--
IMAGES: png IMAGES: png
--> -->
Expand All @@ -283,18 +286,21 @@
<arg value="-o7"/> <arg value="-o7"/>
<fileset dir="./${dir.publish}/${dir.images}"> <fileset dir="./${dir.publish}/${dir.images}">
<exclude name="*.jpg"/> <exclude name="*.jpg"/>
<exclude name=".gitignore"/>
</fileset> </fileset>
</apply> </apply>
<apply executable="optipng" osfamily="mac"> <apply executable="optipng" osfamily="mac">
<arg value="-o7"/> <arg value="-o7"/>
<fileset dir="./${dir.publish}/${dir.images}"> <fileset dir="./${dir.publish}/${dir.images}">
<exclude name="*.jpg"/> <exclude name="*.jpg"/>
<exclude name=".gitignore"/>
</fileset> </fileset>
</apply> </apply>
<apply executable="tools/optipng-0.6.4-exe/optipng.exe" osfamily="windows"> <apply executable="tools/optipng-0.6.4-exe/optipng.exe" osfamily="windows">
<arg value="-o7"/> <arg value="-o7"/>
<fileset dir="./${dir.publish}/${dir.images}"> <fileset dir="./${dir.publish}/${dir.images}">
<exclude name="*.jpg"/> <exclude name="*.jpg"/>
<exclude name=".gitignore"/>
</fileset> </fileset>
</apply> </apply>
</target> </target>
Expand Down Expand Up @@ -353,6 +359,13 @@
<!-- switch any google CDN reference to minified --> <!-- switch any google CDN reference to minified -->
<replaceregexp match="(\d|\d(\.\d)+)\/jquery\.js" replace="\1/jquery.min.js" file="./${dir.publish}/${file.index}" flags=""/> <replaceregexp match="(\d|\d(\.\d)+)\/jquery\.js" replace="\1/jquery.min.js" file="./${dir.publish}/${file.index}" flags=""/>


<!-- switch modernizr to minified -->
<replace token="modernizr-1.6pre.js" value="modernizr-1.6pre.min.js" file="./${dir.publish}/${file.index}"/>

<echo>kill off those versioning flags</echo>
<replaceregexp match='\?v=\d+">' replace='">' file="./${dir.publish}/${file.index}" flags=""/>


</target> </target>




Expand Down
6 changes: 6 additions & 0 deletions images/.gitignore
@@ -0,0 +1,6 @@
*
!.gitignore




13 changes: 0 additions & 13 deletions index.html
Expand Up @@ -60,12 +60,6 @@






<style>




</style>


<body> <body>


Expand All @@ -84,13 +78,6 @@ <h1 contenteditable>MOTHER EFFING TEXT-SHADOW</h1>
<textarea></textarea> <textarea></textarea>


<br><br><tt>Made by <a href=http://paulirish.com>Paul Irish</a></tt> <br><br><tt>Made by <a href=http://paulirish.com>Paul Irish</a></tt>
<script>




</script>





<!-- Javascript at the bottom for fast page loading --> <!-- Javascript at the bottom for fast page loading -->
Expand Down

0 comments on commit 8bf32a1

Please sign in to comment.