Skip to content

Commit

Permalink
Item165:
Browse files Browse the repository at this point in the history
lost the jquery.shake.js file 

fixed Makefile not to remove interim js files when compressing them



git-svn-id: http://svn.foswiki.org/trunk@599 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Nov 13, 2008
1 parent e77349e commit 7d5fa41
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 45 deletions.
2 changes: 1 addition & 1 deletion JQueryPlugin/data/TWiki/JQueryPlugin.txt
Expand Up @@ -97,7 +97,7 @@ The following themes are provided:
| Plugin Author(s): | Michael Daum |
| Copyright: | 2007-2008 Michael Daum http://michaeldaumconsulting.com |
| License: | GPL |
| Plugin Version: | v1.00 |
| Plugin Version: | v1.01 |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 13 Nov 2008: | added automaxexpand for TABPANES ;\
added jquery.shake plugin; \
Expand Down
2 changes: 1 addition & 1 deletion JQueryPlugin/lib/TWiki/Plugins/JQueryPlugin.pm
Expand Up @@ -26,7 +26,7 @@ use vars qw(
);

$VERSION = '$Rev$';
$RELEASE = '1.00';
$RELEASE = '1.01';
$SHORTDESCRIPTION = 'jQuery <nop>JavaScript library for NextWiki';
$NO_PREFS_IN_TOPIC = 1;

Expand Down
2 changes: 2 additions & 0 deletions JQueryPlugin/lib/TWiki/Plugins/JQueryPlugin/MANIFEST
Expand Up @@ -181,6 +181,7 @@ pub/TWiki/JQueryPlugin/jquery.rating.js 0644
pub/TWiki/JQueryPlugin/jquery.rating.js.gz 0644
pub/TWiki/JQueryPlugin/jquery.rating.uncompressed.css 0644
pub/TWiki/JQueryPlugin/jquery.rating.uncompressed.js 0644
pub/TWiki/JQueryPlugin/jquery.shake.js 0644
pub/TWiki/JQueryPlugin/jquery.shake.js.gz 0644
pub/TWiki/JQueryPlugin/jquery.shake.uncompressed.js 0644
pub/TWiki/JQueryPlugin/jquery.shrinkurls.js 0644
Expand Down Expand Up @@ -367,6 +368,7 @@ pub/TWiki/JQueryPlugin/ui.sortable.js 0644
pub/TWiki/JQueryPlugin/ui.sortable.js.gz 0644
pub/TWiki/JQueryPlugin/ui.sortable.uncompressed.js 0644
pub/TWiki/JQueryPlugin/ui.tabs.js 0644
pub/TWiki/JQueryPlugin/ui.tabs.js.gz 0644
pub/TWiki/JQueryPlugin/ui.tabs.uncompressed.js 0644
pub/TWiki/JQueryPlugin/wikiringlogo40x40.png 0644
tools/minifycss 0755
Expand Down
84 changes: 41 additions & 43 deletions JQueryPlugin/pub/TWiki/JQueryPlugin/Makefile
@@ -1,45 +1,45 @@
TWIKIROOT=~/twiki/trunk/core
TARGET= \
effects.blind.js.gz \
effects.bounce.js.gz \
effects.clip.js.gz \
effects.core.js.gz \
effects.drop.js.gz \
effects.explode.js.gz \
effects.fold.js.gz \
effects.highlight.js.gz \
effects.pulsate.js.gz \
effects.scale.js.gz \
effects.shake.js.gz \
effects.slide.js.gz \
effects.transfer.js.gz \
jquery-all.css.gz \
jquery-all.js.gz \
jquery.autocomplete.js.gz \
jquery.cycle.js.gz \
jquery.cycle.trans.js.gz \
jquery.debug.js.gz \
jquery.form.js.gz \
jquery.maskedinput.js.gz \
jquery.rating.css.gz \
jquery.rating.js.gz \
jquery.shake.js.gz \
jquery.spinner.js.gz \
jquery.superfish.css.gz \
jquery.superfish.js.gz \
jquery.validate.additional-methods.js.gz \
jquery.validate.js.gz \
ui.accordion.js.gz \
ui.core.js.gz \
ui.datepicker.js.gz \
ui.dialog.js.gz \
ui.draggable.js.gz \
ui.droppable.js.gz \
ui.mouse.js.gz \
ui.resizable.js.gz \
ui.selectable.js.gz \
ui.slider.js.gz \
ui.sortable.js.gz \
effects.blind.js \
effects.bounce.js \
effects.clip.js \
effects.core.js \
effects.drop.js \
effects.explode.js \
effects.fold.js \
effects.highlight.js \
effects.pulsate.js \
effects.scale.js \
effects.shake.js \
effects.slide.js \
effects.transfer.js \
jquery-all.css \
jquery-all.js \
jquery.autocomplete.js \
jquery.cycle.js \
jquery.cycle.trans.js \
jquery.debug.js \
jquery.form.js \
jquery.maskedinput.js \
jquery.rating.css \
jquery.rating.js \
jquery.shake.js \
jquery.spinner.js \
jquery.superfish.css \
jquery.superfish.js \
jquery.validate.additional-methods.js \
jquery.validate.js \
ui.accordion.js \
ui.core.js \
ui.datepicker.js \
ui.dialog.js \
ui.draggable.js \
ui.droppable.js \
ui.mouse.js \
ui.resizable.js \
ui.selectable.js \
ui.slider.js \
ui.sortable.js \
ui.tabs.js


Expand All @@ -50,9 +50,7 @@ GZIP=gzip

.SUFFIXES: .js .css

all: $(TARGET)
clean:
rm -f $(TARGET)
all: $(TARGET) $(TARGET:.js=.js.gz)

JS_VALIDATE_SOURCE=\
jquery.validate.uncompressed.js \
Expand Down
Binary file modified JQueryPlugin/pub/TWiki/JQueryPlugin/jquery-all.js.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions JQueryPlugin/pub/TWiki/JQueryPlugin/jquery.shake.js
@@ -0,0 +1,3 @@
jQuery.fn.shake=function(intShakes,intDistance,intDuration){this.each(function(){$(this).css({position:'relative'});for(var x=1;x<=intShakes;x++){$(this).animate({left:(intDistance*-1)},(((intDuration/intShakes)/4)))
.animate({left:intDistance},((intDuration/intShakes)/2))
.animate({left:0},(((intDuration/intShakes)/4)));}});return this;};;
Binary file modified JQueryPlugin/pub/TWiki/JQueryPlugin/jquery.shake.js.gz
Binary file not shown.
Binary file added JQueryPlugin/pub/TWiki/JQueryPlugin/ui.tabs.js.gz
Binary file not shown.

0 comments on commit 7d5fa41

Please sign in to comment.