r-gregmisc-users Mailing List for R gregmisc package (Page 24)
Brought to you by:
warnes
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
(12) |
Apr
(5) |
May
(3) |
Jun
(5) |
Jul
(2) |
Aug
(5) |
Sep
(7) |
Oct
(15) |
Nov
(34) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(3) |
Feb
(16) |
Mar
(28) |
Apr
(5) |
May
|
Jun
(5) |
Jul
(9) |
Aug
(50) |
Sep
(29) |
Oct
(9) |
Nov
(25) |
Dec
(7) |
2008 |
Jan
(6) |
Feb
(4) |
Mar
(5) |
Apr
(8) |
May
(26) |
Jun
(11) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(9) |
2009 |
Jan
|
Feb
(1) |
Mar
|
Apr
(2) |
May
(26) |
Jun
|
Jul
(10) |
Aug
(6) |
Sep
|
Oct
(7) |
Nov
(3) |
Dec
(2) |
2010 |
Jan
(45) |
Feb
(11) |
Mar
|
Apr
(1) |
May
(8) |
Jun
(7) |
Jul
(3) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(9) |
Dec
(1) |
2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
(14) |
Sep
(29) |
Oct
(3) |
Nov
|
Dec
(3) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(6) |
Jun
(59) |
Jul
|
Aug
(8) |
Sep
(21) |
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
(10) |
Apr
|
May
(18) |
Jun
(25) |
Jul
(18) |
Aug
(1) |
Sep
(6) |
Oct
(28) |
Nov
(4) |
Dec
(13) |
2014 |
Jan
(7) |
Feb
(5) |
Mar
(4) |
Apr
(36) |
May
(3) |
Jun
(7) |
Jul
(46) |
Aug
(14) |
Sep
(12) |
Oct
(2) |
Nov
|
Dec
(12) |
2015 |
Jan
(4) |
Feb
|
Mar
|
Apr
(80) |
May
(36) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ggr...@us...> - 2010-04-28 17:23:14
|
Revision: 1431 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1431&view=rev Author: ggrothendieck2 Date: 2010-04-28 17:23:08 +0000 (Wed, 28 Apr 2010) Log Message: ----------- fixed problems with R CMD CHECK Modified Paths: -------------- trunk/gtools/R/quantcut.R trunk/gtools/R/strmacro.R trunk/gtools/man/binsearch.Rd trunk/gtools/man/capture.Rd trunk/gtools/man/setTCPNoDelay.Rd Modified: trunk/gtools/R/quantcut.R =================================================================== --- trunk/gtools/R/quantcut.R 2010-02-27 20:56:39 UTC (rev 1430) +++ trunk/gtools/R/quantcut.R 2010-04-28 17:23:08 UTC (rev 1431) @@ -39,7 +39,7 @@ sapply(x, function(y) if(length(y)==2) y[c(2,2)] else y[2:3] ) - pairs <- mkpairs(strsplit(levs, '[^0-9+\\.\\-]+', extended=TRUE)) + pairs <- mkpairs(strsplit(levs, '[^0-9+\\.\\-]+')) rownames(pairs) <- c("lower.bound","upper.bound") colnames(pairs) <- levs Modified: trunk/gtools/R/strmacro.R =================================================================== --- trunk/gtools/R/strmacro.R 2010-02-27 20:56:39 UTC (rev 1430) +++ trunk/gtools/R/strmacro.R 2010-04-28 17:23:08 UTC (rev 1431) @@ -74,8 +74,7 @@ body <- gsub(pattern, value, - body, - extended=TRUE) + body) } #print(body) Modified: trunk/gtools/man/binsearch.Rd =================================================================== --- trunk/gtools/man/binsearch.Rd 2010-02-27 20:56:39 UTC (rev 1430) +++ trunk/gtools/man/binsearch.Rd 2010-04-28 17:23:08 UTC (rev 1431) @@ -64,8 +64,8 @@ \note{This function often returns two values for \code{where} and \code{value}. Be sure to check the \code{flag} parameter to see what these values mean.} -\seealso{ \code{\link[base]{optim}}, \code{\link[base]{optimize}}, - \code{\link[base]{uniroot}} } +\seealso{ \code{\link{optim}}, \code{\link{optimize}}, + \code{\link{uniroot}} } \examples{ ### Toy examples Modified: trunk/gtools/man/capture.Rd =================================================================== --- trunk/gtools/man/capture.Rd 2010-02-27 20:56:39 UTC (rev 1430) +++ trunk/gtools/man/capture.Rd 2010-04-28 17:23:08 UTC (rev 1431) @@ -33,7 +33,7 @@ \author{Gregory R. Warnes \email{gr...@ra...} } \seealso{ \code{\link[session]{texteval}}, - \code{\link[base]{capture.output}} + \code{\link{capture.output}} } \examples{ Modified: trunk/gtools/man/setTCPNoDelay.Rd =================================================================== --- trunk/gtools/man/setTCPNoDelay.Rd 2010-02-27 20:56:39 UTC (rev 1430) +++ trunk/gtools/man/setTCPNoDelay.Rd 2010-04-28 17:23:08 UTC (rev 1431) @@ -41,8 +41,8 @@ } \author{Gregory R. Warnes \email{gr...@ra...}} \seealso{ - \code{\link[utils]{make.socket}}, - \code{\link[utils]{socketConnection}} + \code{\link{make.socket}}, + \code{\link{socketConnection}} } \examples{ \dontrun{ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 20:56:45
|
Revision: 1430 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1430&view=rev Author: warnes Date: 2010-02-27 20:56:39 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Generalize apple script to allow use of Safari or Firefox Modified Paths: -------------- trunk/Stream-Launcher/Stream_Launcher.txt Modified: trunk/Stream-Launcher/Stream_Launcher.txt =================================================================== --- trunk/Stream-Launcher/Stream_Launcher.txt 2010-02-27 20:32:58 UTC (rev 1429) +++ trunk/Stream-Launcher/Stream_Launcher.txt 2010-02-27 20:56:39 UTC (rev 1430) @@ -1,6 +1,10 @@ --- +-- ------------ -- Open the most recent archived Glenn Beck/Rush Limbaugh audio/video stream +-- ------------ + -- +-- Construct appropriate date strings +-- set myDate to (current date) -- Substract up to two days @@ -16,10 +20,13 @@ set twoDigitYear to text -2 thru -1 of ("00" & ((year of myDate) - 2000)) set fourDigitYear to text -4 thru -1 of ("0000" & ((year of myDate) + 0)) - set audioCode to fourDigitYear * 10000 + twoDigitMonth * 100 + twoDigitDay set videoCode to twoDigitYear * 10000 + twoDigitMonth * 100 + twoDigitDay +-- +-- Target URLs +-- + set GLENN_AUDIO_ARCHIVE to "\"http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=shows/GLENNBECKREAL" & audioCode & "&site=glennbeck&type=real_show&ikey=http%3A%2F%2Fwww.premiereinteractive.com%2Fcgi-bin%2Fmembers.cgi%3Fstream%3Dshows%2FGLENNBECKREAL" & audioCode & "%26site%3Dglennbeck%26type%3Dreal_show\"" set GLENN_VIDEO_ARCHIVE to "\"http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=video/" & twoDigitYear & "/" & twoDigitMonth & "/glenncam" & videoCode & "-120b.rm&site=glennbeck&type=real_od&ikey=http%3A%2F%2Fwww.premiereinteractive.com%2Fcgi-bin%2Fmembers.cgi%3Fstream%3Dvideo%2F" & twoDigitYear & "%2F" & twoDigitMonth & "%2Fglenncam" & videoCode & "-120b.rm%26site%3Dglennbeck%26type%3Dreal_od\"" @@ -35,11 +42,17 @@ set TARGET_URL to RUSH_AUDIO_ARCHIVE -do shell script "open -a Firefox " & TARGET_URL +-- +-- Launch Web Browser with target URL +-- +set WebApp to "Firefox" + +do shell script "open -a " & WebApp & " " & TARGET_URL + delay 3 -tell application "Firefox" to activate +tell application WebApp to activate tell application "System Events" keystroke "w" using command down -- Command-w to close the current tab. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 20:33:06
|
Revision: 1429 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1429&view=rev Author: warnes Date: 2010-02-27 20:32:58 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Test commit Modified Paths: -------------- trunk/Stream-Launcher/Stream_Launcher.txt Modified: trunk/Stream-Launcher/Stream_Launcher.txt =================================================================== --- trunk/Stream-Launcher/Stream_Launcher.txt 2010-02-27 20:31:13 UTC (rev 1428) +++ trunk/Stream-Launcher/Stream_Launcher.txt 2010-02-27 20:32:58 UTC (rev 1429) @@ -47,3 +47,5 @@ TARGET_URL + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 20:31:19
|
Revision: 1428 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1428&view=rev Author: warnes Date: 2010-02-27 20:31:13 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Update logo for Rush AudioStream Modified Paths: -------------- trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt Modified: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 20:14:54
|
Revision: 1427 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1427&view=rev Author: warnes Date: 2010-02-27 20:14:48 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Update Glenn Beck Launchers with new Icon Modified Paths: -------------- trunk/Stream-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/Scripts/main.scpt trunk/Stream-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.icns trunk/Stream-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.icns trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns Modified: trunk/Stream-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Modified: trunk/Stream-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Modified: trunk/Stream-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Modified: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Modified: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 19:55:12
|
Revision: 1426 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1426&view=rev Author: warnes Date: 2010-02-27 19:54:58 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Rename Rush-Launcher to Stream-Launcher Added Paths: ----------- trunk/Stream-Launcher/ trunk/Stream-Launcher/Glenn Beck Recent Show - Audio.app/ trunk/Stream-Launcher/Glenn Beck Recent Show - Video.app/ trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist trunk/Stream-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt trunk/Stream-Launcher/Stream_Launcher.txt Removed Paths: ------------- trunk/Rush-Launcher/ trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist trunk/Stream-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt Deleted: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist 2010-02-27 18:29:02 UTC (rev 1424) +++ trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist 2010-02-27 19:54:58 UTC (rev 1426) @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>CFBundleAllowMixedLocalizations</key> - <true/> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleExecutable</key> - <string>applet</string> - <key>CFBundleIconFile</key> - <string>applet</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundleName</key> - <string>Rush AudioStream</string> - <key>CFBundlePackageType</key> - <string>APPL</string> - <key>CFBundleSignature</key> - <string>aplt</string> - <key>LSMinimumSystemVersionByArchitecture</key> - <dict> - <key>x86_64</key> - <string>10.6</string> - </dict> - <key>LSRequiresCarbon</key> - <true/> - <key>WindowState</key> - <dict> - <key>dividerCollapsed</key> - <false/> - <key>eventLogLevel</key> - <integer>0</integer> - <key>name</key> - <string>ScriptWindowState</string> - <key>positionOfDivider</key> - <real>336</real> - <key>savedFrame</key> - <string>231 174 1199 586 0 0 1440 878 </string> - <key>selectedTabView</key> - <string>event log</string> - </dict> -</dict> -</plist> Copied: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist (from rev 1425, trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist) =================================================================== --- trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist (rev 0) +++ trunk/Stream-Launcher/Rush AudioStream.app/Contents/Info.plist 2010-02-27 19:54:58 UTC (rev 1426) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Rush AudioStream</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>WindowState</key> + <dict> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>0</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>336</real> + <key>savedFrame</key> + <string>241 56 1199 586 0 0 1440 878 </string> + <key>selectedTabView</key> + <string>event log</string> + </dict> +</dict> +</plist> Deleted: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Copied: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt (from rev 1425, trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt) =================================================================== (Binary files differ) Deleted: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Copied: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns (from rev 1425, trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns) =================================================================== (Binary files differ) Deleted: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc =================================================================== (Binary files differ) Copied: trunk/Stream-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc (from rev 1425, trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc) =================================================================== (Binary files differ) Deleted: trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist 2010-02-27 18:29:02 UTC (rev 1424) +++ trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist 2010-02-27 19:54:58 UTC (rev 1426) @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>CFBundleAllowMixedLocalizations</key> - <true/> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleExecutable</key> - <string>applet</string> - <key>CFBundleIconFile</key> - <string>applet</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundleName</key> - <string>Rush DittoCam</string> - <key>CFBundlePackageType</key> - <string>APPL</string> - <key>CFBundleSignature</key> - <string>aplt</string> - <key>LSMinimumSystemVersionByArchitecture</key> - <dict> - <key>x86_64</key> - <string>10.6</string> - </dict> - <key>LSRequiresCarbon</key> - <true/> - <key>WindowState</key> - <dict> - <key>dividerCollapsed</key> - <false/> - <key>eventLogLevel</key> - <integer>0</integer> - <key>name</key> - <string>ScriptWindowState</string> - <key>positionOfDivider</key> - <real>336</real> - <key>savedFrame</key> - <string>274 15 1199 586 0 0 1440 878 </string> - <key>selectedTabView</key> - <string>event log</string> - </dict> -</dict> -</plist> Copied: trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist (from rev 1425, trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist) =================================================================== --- trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist (rev 0) +++ trunk/Stream-Launcher/Rush DittoCam.app/Contents/Info.plist 2010-02-27 19:54:58 UTC (rev 1426) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Rush DittoCam</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>WindowState</key> + <dict> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>0</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>336</real> + <key>savedFrame</key> + <string>241 56 1199 586 0 0 1440 878 </string> + <key>selectedTabView</key> + <string>event log</string> + </dict> +</dict> +</plist> Deleted: trunk/Stream-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Copied: trunk/Stream-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt (from rev 1425, trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt) =================================================================== (Binary files differ) Copied: trunk/Stream-Launcher/Stream_Launcher.txt (from rev 1425, trunk/Rush-Launcher/Stream_Launcher.txt) =================================================================== --- trunk/Stream-Launcher/Stream_Launcher.txt (rev 0) +++ trunk/Stream-Launcher/Stream_Launcher.txt 2010-02-27 19:54:58 UTC (rev 1426) @@ -0,0 +1,49 @@ +-- +-- Open the most recent archived Glenn Beck/Rush Limbaugh audio/video stream +-- +set myDate to (current date) + +-- Substract up to two days +if (weekday of myDate is Saturday) then + set myDate to myDate - 1 * days +end if +if (weekday of myDate is Sunday) then + set myDate to myDate - 2 * days +end if + +set twoDigitDay to text -2 thru -1 of ("00" & ((day of myDate) + 0)) +set twoDigitMonth to text -2 thru -1 of ("00" & ((month of myDate) + 0)) +set twoDigitYear to text -2 thru -1 of ("00" & ((year of myDate) - 2000)) +set fourDigitYear to text -4 thru -1 of ("0000" & ((year of myDate) + 0)) + + +set audioCode to fourDigitYear * 10000 + twoDigitMonth * 100 + twoDigitDay +set videoCode to twoDigitYear * 10000 + twoDigitMonth * 100 + twoDigitDay + +set GLENN_AUDIO_ARCHIVE to "\"http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=shows/GLENNBECKREAL" & audioCode & "&site=glennbeck&type=real_show&ikey=http%3A%2F%2Fwww.premiereinteractive.com%2Fcgi-bin%2Fmembers.cgi%3Fstream%3Dshows%2FGLENNBECKREAL" & audioCode & "%26site%3Dglennbeck%26type%3Dreal_show\"" + +set GLENN_VIDEO_ARCHIVE to "\"http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=video/" & twoDigitYear & "/" & twoDigitMonth & "/glenncam" & videoCode & "-120b.rm&site=glennbeck&type=real_od&ikey=http%3A%2F%2Fwww.premiereinteractive.com%2Fcgi-bin%2Fmembers.cgi%3Fstream%3Dvideo%2F" & twoDigitYear & "%2F" & twoDigitMonth & "%2Fglenncam" & videoCode & "-120b.rm%26site%3Dglennbeck%26type%3Dreal_od\"" + +set GLENN_AUDIO_LIVE to "" +set GLENN_VIDEO_LIVE to "" + +set RUSH_AUDIO_ARCHIVE to "\"http://stream.rushlimbaugh.com/cgi-bin/members.cgi?stream=shows/RUSHLIMBREAL" & audioCode & "&site=rushlimb&type=real_show\"" +set RUSH_VIDEO_ARCHIVE to "\"http://stream.rushlimbaugh.com/cgi-bin/members.cgi?stream=dittocam/rushlimb" & videoCode & "-128.rm&site=rushlimb&type=real_od\"" + +set RUSH_AUDIO_LIVE to "" +set RUSH_VIDEO_LIVE to "" + +set TARGET_URL to RUSH_AUDIO_ARCHIVE + +do shell script "open -a Firefox " & TARGET_URL + +delay 3 + +tell application "Firefox" to activate + +tell application "System Events" + keystroke "w" using command down -- Command-w to close the current tab. +end tell + +TARGET_URL + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 19:50:33
|
Revision: 1425 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1425&view=rev Author: warnes Date: 2010-02-27 19:50:08 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Use a single script for both Rush applications and for similar Glenn Beck ones Modified Paths: -------------- trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt Added Paths: ----------- trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Info.plist trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/MacOS/ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/MacOS/applet trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/PkgInfo trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/Scripts/ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/Scripts/main.scpt trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.icns trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.rsrc trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/description.rtfd/ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/description.rtfd/TXT.rtf trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Info.plist trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/MacOS/ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/MacOS/applet trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/PkgInfo trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/Scripts/ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/Scripts/main.scpt trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.icns trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.rsrc trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/description.rtfd/ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/description.rtfd/TXT.rtf trunk/Rush-Launcher/Stream_Launcher.txt Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Info.plist (rev 0) +++ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Info.plist 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Glenn Beck Recent Show - Audio</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>WindowState</key> + <dict> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>0</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>587</real> + <key>savedFrame</key> + <string>228 56 981 822 0 0 1440 878 </string> + <key>selectedTabView</key> + <string>event log</string> + </dict> +</dict> +</plist> Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/MacOS/applet =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/MacOS/applet ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/PkgInfo =================================================================== --- trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/PkgInfo (rev 0) +++ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/PkgInfo 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1 @@ +APPLaplt \ No newline at end of file Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/Scripts/main.scpt ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.icns ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.rsrc =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/applet.rsrc ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/description.rtfd/TXT.rtf =================================================================== --- trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/description.rtfd/TXT.rtf (rev 0) +++ trunk/Rush-Launcher/Glenn Beck Recent Show - Audio.app/Contents/Resources/description.rtfd/TXT.rtf 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1,4 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl} +{\colortbl;\red255\green255\blue255;} +} \ No newline at end of file Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Info.plist (rev 0) +++ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Info.plist 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Glenn Beck Recent Show - Video</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>WindowState</key> + <dict> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>0</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>587</real> + <key>savedFrame</key> + <string>228 56 981 822 0 0 1440 878 </string> + <key>selectedTabView</key> + <string>event log</string> + </dict> +</dict> +</plist> Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/MacOS/applet =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/MacOS/applet ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/PkgInfo =================================================================== --- trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/PkgInfo (rev 0) +++ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/PkgInfo 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1 @@ +APPLaplt \ No newline at end of file Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/Scripts/main.scpt ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.icns ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.rsrc =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/applet.rsrc ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/description.rtfd/TXT.rtf =================================================================== --- trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/description.rtfd/TXT.rtf (rev 0) +++ trunk/Rush-Launcher/Glenn Beck Recent Show - Video.app/Contents/Resources/description.rtfd/TXT.rtf 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1,4 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl} +{\colortbl;\red255\green255\blue255;} +} \ No newline at end of file Modified: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist 2010-02-27 18:29:02 UTC (rev 1424) +++ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist 2010-02-27 19:50:08 UTC (rev 1425) @@ -36,7 +36,7 @@ <key>positionOfDivider</key> <real>336</real> <key>savedFrame</key> - <string>231 174 1199 586 0 0 1440 878 </string> + <string>241 56 1199 586 0 0 1440 878 </string> <key>selectedTabView</key> <string>event log</string> </dict> Modified: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Modified: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Modified: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc =================================================================== (Binary files differ) Modified: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist 2010-02-27 18:29:02 UTC (rev 1424) +++ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist 2010-02-27 19:50:08 UTC (rev 1425) @@ -36,7 +36,7 @@ <key>positionOfDivider</key> <real>336</real> <key>savedFrame</key> - <string>274 15 1199 586 0 0 1440 878 </string> + <string>241 56 1199 586 0 0 1440 878 </string> <key>selectedTabView</key> <string>event log</string> </dict> Modified: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Added: trunk/Rush-Launcher/Stream_Launcher.txt =================================================================== --- trunk/Rush-Launcher/Stream_Launcher.txt (rev 0) +++ trunk/Rush-Launcher/Stream_Launcher.txt 2010-02-27 19:50:08 UTC (rev 1425) @@ -0,0 +1,49 @@ +-- +-- Open the most recent archived Glenn Beck/Rush Limbaugh audio/video stream +-- +set myDate to (current date) + +-- Substract up to two days +if (weekday of myDate is Saturday) then + set myDate to myDate - 1 * days +end if +if (weekday of myDate is Sunday) then + set myDate to myDate - 2 * days +end if + +set twoDigitDay to text -2 thru -1 of ("00" & ((day of myDate) + 0)) +set twoDigitMonth to text -2 thru -1 of ("00" & ((month of myDate) + 0)) +set twoDigitYear to text -2 thru -1 of ("00" & ((year of myDate) - 2000)) +set fourDigitYear to text -4 thru -1 of ("0000" & ((year of myDate) + 0)) + + +set audioCode to fourDigitYear * 10000 + twoDigitMonth * 100 + twoDigitDay +set videoCode to twoDigitYear * 10000 + twoDigitMonth * 100 + twoDigitDay + +set GLENN_AUDIO_ARCHIVE to "\"http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=shows/GLENNBECKREAL" & audioCode & "&site=glennbeck&type=real_show&ikey=http%3A%2F%2Fwww.premiereinteractive.com%2Fcgi-bin%2Fmembers.cgi%3Fstream%3Dshows%2FGLENNBECKREAL" & audioCode & "%26site%3Dglennbeck%26type%3Dreal_show\"" + +set GLENN_VIDEO_ARCHIVE to "\"http://www.premiereinteractive.com/cgi-bin/members.cgi?stream=video/" & twoDigitYear & "/" & twoDigitMonth & "/glenncam" & videoCode & "-120b.rm&site=glennbeck&type=real_od&ikey=http%3A%2F%2Fwww.premiereinteractive.com%2Fcgi-bin%2Fmembers.cgi%3Fstream%3Dvideo%2F" & twoDigitYear & "%2F" & twoDigitMonth & "%2Fglenncam" & videoCode & "-120b.rm%26site%3Dglennbeck%26type%3Dreal_od\"" + +set GLENN_AUDIO_LIVE to "" +set GLENN_VIDEO_LIVE to "" + +set RUSH_AUDIO_ARCHIVE to "\"http://stream.rushlimbaugh.com/cgi-bin/members.cgi?stream=shows/RUSHLIMBREAL" & audioCode & "&site=rushlimb&type=real_show\"" +set RUSH_VIDEO_ARCHIVE to "\"http://stream.rushlimbaugh.com/cgi-bin/members.cgi?stream=dittocam/rushlimb" & videoCode & "-128.rm&site=rushlimb&type=real_od\"" + +set RUSH_AUDIO_LIVE to "" +set RUSH_VIDEO_LIVE to "" + +set TARGET_URL to RUSH_AUDIO_ARCHIVE + +do shell script "open -a Firefox " & TARGET_URL + +delay 3 + +tell application "Firefox" to activate + +tell application "System Events" + keystroke "w" using command down -- Command-w to close the current tab. +end tell + +TARGET_URL + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-27 18:29:09
|
Revision: 1424 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1424&view=rev Author: warnes Date: 2010-02-27 18:29:02 +0000 (Sat, 27 Feb 2010) Log Message: ----------- Add two Mac OSX launchers for Rush limbaugh's audo and video streams Added Paths: ----------- trunk/Rush-Launcher/ trunk/Rush-Launcher/Rush AudioStream.app/ trunk/Rush-Launcher/Rush AudioStream.app/Contents/ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist trunk/Rush-Launcher/Rush AudioStream.app/Contents/MacOS/ trunk/Rush-Launcher/Rush AudioStream.app/Contents/MacOS/applet trunk/Rush-Launcher/Rush AudioStream.app/Contents/PkgInfo trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/description.rtfd/ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/description.rtfd/TXT.rtf trunk/Rush-Launcher/Rush DittoCam.app/ trunk/Rush-Launcher/Rush DittoCam.app/Contents/ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist trunk/Rush-Launcher/Rush DittoCam.app/Contents/MacOS/ trunk/Rush-Launcher/Rush DittoCam.app/Contents/MacOS/applet trunk/Rush-Launcher/Rush DittoCam.app/Contents/PkgInfo trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/applet.icns trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/applet.rsrc trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/description.rtfd/ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/description.rtfd/TXT.rtf Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist (rev 0) +++ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Info.plist 2010-02-27 18:29:02 UTC (rev 1424) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Rush AudioStream</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>WindowState</key> + <dict> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>0</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>336</real> + <key>savedFrame</key> + <string>231 174 1199 586 0 0 1440 878 </string> + <key>selectedTabView</key> + <string>event log</string> + </dict> +</dict> +</plist> Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/MacOS/applet =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush AudioStream.app/Contents/MacOS/applet ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/PkgInfo =================================================================== --- trunk/Rush-Launcher/Rush AudioStream.app/Contents/PkgInfo (rev 0) +++ trunk/Rush-Launcher/Rush AudioStream.app/Contents/PkgInfo 2010-02-27 18:29:02 UTC (rev 1424) @@ -0,0 +1 @@ +APPLaplt \ No newline at end of file Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/Scripts/main.scpt ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.icns ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/applet.rsrc ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/description.rtfd/TXT.rtf =================================================================== --- trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/description.rtfd/TXT.rtf (rev 0) +++ trunk/Rush-Launcher/Rush AudioStream.app/Contents/Resources/description.rtfd/TXT.rtf 2010-02-27 18:29:02 UTC (rev 1424) @@ -0,0 +1,4 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl} +{\colortbl;\red255\green255\blue255;} +} \ No newline at end of file Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist =================================================================== --- trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist (rev 0) +++ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Info.plist 2010-02-27 18:29:02 UTC (rev 1424) @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Rush DittoCam</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>WindowState</key> + <dict> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>0</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>336</real> + <key>savedFrame</key> + <string>274 15 1199 586 0 0 1440 878 </string> + <key>selectedTabView</key> + <string>event log</string> + </dict> +</dict> +</plist> Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/MacOS/applet =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush DittoCam.app/Contents/MacOS/applet ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/PkgInfo =================================================================== --- trunk/Rush-Launcher/Rush DittoCam.app/Contents/PkgInfo (rev 0) +++ trunk/Rush-Launcher/Rush DittoCam.app/Contents/PkgInfo 2010-02-27 18:29:02 UTC (rev 1424) @@ -0,0 +1 @@ +APPLaplt \ No newline at end of file Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/Scripts/main.scpt ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/applet.icns =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/applet.icns ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/applet.rsrc =================================================================== (Binary files differ) Property changes on: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/applet.rsrc ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/description.rtfd/TXT.rtf =================================================================== --- trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/description.rtfd/TXT.rtf (rev 0) +++ trunk/Rush-Launcher/Rush DittoCam.app/Contents/Resources/description.rtfd/TXT.rtf 2010-02-27 18:29:02 UTC (rev 1424) @@ -0,0 +1,4 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl} +{\colortbl;\red255\green255\blue255;} +} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ggr...@us...> - 2010-02-21 17:12:37
|
Revision: 1423 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1423&view=rev Author: ggrothendieck2 Date: 2010-02-21 17:12:30 +0000 (Sun, 21 Feb 2010) Log Message: ----------- isOpen problems fixed (isOpen must have changed in R since this worked in earlier versions). Also nba.xls link in read.xls.Rd disappeared. Replaced with similar link. Modified Paths: -------------- trunk/gdata/R/read.xls.R trunk/gdata/man/read.xls.Rd Modified: trunk/gdata/R/read.xls.R =================================================================== --- trunk/gdata/R/read.xls.R 2010-02-20 11:32:43 UTC (rev 1422) +++ trunk/gdata/R/read.xls.R 2010-02-21 17:12:30 UTC (rev 1423) @@ -5,7 +5,11 @@ { con <- tfn <- NULL on.exit({ - if (inherits(con, "connection") && isOpen(con)) close(con) + err <- FALSE + if (inherits(con, "connection")) { + tryCatch(op <- isOpen(con), error = function(x) err <<- TRUE) + if (!err && op) close(con) + } if (file.exists(tfn)) file.remove(tfn) }) Modified: trunk/gdata/man/read.xls.Rd =================================================================== --- trunk/gdata/man/read.xls.Rd 2010-02-20 11:32:43 UTC (rev 1422) +++ trunk/gdata/man/read.xls.Rd 2010-02-21 17:12:30 UTC (rev 1423) @@ -86,7 +86,7 @@ iris <- read.xls(xlsfile, perl="/usr/bin/perl") # read xls file from net - nba.url <- "http://lcb1.uoregon.edu/sergiok/DSC330HSP04/week5/NBA.xls" + nba.url <- "http://mgtclass.mgt.unm.edu/Bose/Excel/Tutorial.05/Cases/NBA.xls" nba <- read.xls(nba.url) # read xls file ignoring all lines prior to first containing State This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ggr...@us...> - 2010-02-20 11:32:49
|
Revision: 1422 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1422&view=rev Author: ggrothendieck2 Date: 2010-02-20 11:32:43 +0000 (Sat, 20 Feb 2010) Log Message: ----------- improved INSTALL file Modified Paths: -------------- trunk/gdata/INSTALL Modified: trunk/gdata/INSTALL =================================================================== --- trunk/gdata/INSTALL 2010-02-19 15:36:26 UTC (rev 1421) +++ trunk/gdata/INSTALL 2010-02-20 11:32:43 UTC (rev 1422) @@ -2,15 +2,62 @@ Windows ======= -On Windows, the perl based routines (read.xls, xls2sep, xls2csv, xls2tab, -xls2tsv, sheetNames, sheetCount) will not work with the perl in Rtools -but will work with ActiveState perl. +The instructions below relate to Windows only and are not relevant to other +platforms. -If you have ActiveState installed and the pl extension is associated with it -(which the ActiveState installer associates automatically) then these -routines will automatically locate ActiveState perl even if you omit the -perl= argument. +On Windows, the perl based routines (read.xls, xls2sep, xls2csv, xls2tab, +xls2tsv, sheetNames, sheetCount) will work with ActiveState perl but not with +Rtools perl. -Also ensure that the package was built with ActiveState Perl and not the perl -in Rtools. +If you have ActiveState perl installed and the pl extension is associated with +it (which the ActiveState installer associates automatically) then read.xls and +other perl based routines in gdata will automatically locate ActiveState perl +if you omit the perl= argument on these commands even if Rtools perl is ahead +of it on your path. e.g. + read.xls("mysheet.xls") + +Alternately you can use the perl= argument with a path to ActiveState perl to +ensure it uses the right one. e.g. + + read.xls("mysheet.xls", perl = "C:\\Perl\\bin\\perl.exe") + +Also ensure that gdata was built with ActiveState Perl and not Rtools perl. +This may require rebuilding gdata yourself like this: + +1. Download and install the following (which all have automatic Windows + installers and are therefore very easy to install): + + R (you likely already have R so you can likely skip this one) + http://www.r-project.org + + Rtools + http://www.murdoch-sutherland.com/Rtools/ + + ActiveState perl (ActivePerl) + http://www.activestate.com/activeperl/ + +2. If simply installing gdata in the usual way from within R results in + read.xls and associated perl-based routines not working then re-install + gdata yourself like this: + + Download gdata_*.tar.gz from: + http://cran.r-project.org/web/packages/gdata/index.html + + and install it at the Windows console (not from within R): + Rcmd INSTALL --build gdata_*.tar.gz + + Note: Rcmd is normally found in C:\Program Files\R\R-*\bin and if that + is not on your path the above command should be written: + "C:\Program Files\R\R-*\bin\Rcmd.exe" INSTALL --build gdata_*.tar.gz + + where the the path to Rcmd.exe should be replaced with the output of this + R command: + normalizePath(file.path(R.home(), "bin", "Rcmd.exe")) + + Note: On Vista and above you may need to run Rcmd as Administrator. + + Note: In the above the * in gdata_*.tar.gz should be replaced with the + current version of gdata as found on: + http://cran.r-project.org/web/packages/gdata/index.html + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ggr...@us...> - 2010-02-19 15:36:34
|
Revision: 1421 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1421&view=rev Author: ggrothendieck2 Date: 2010-02-19 15:36:26 +0000 (Fri, 19 Feb 2010) Log Message: ----------- added findPerl to locate ActiveState Perl on Windows if perl= not specified and Rtools perl would have otherwise been used. Also added INSTALL file. Modified Paths: -------------- trunk/gdata/R/dQuote.ascii.R trunk/gdata/R/read.xls.R trunk/gdata/R/sheetCount.R trunk/gdata/inst/NEWS Added Paths: ----------- trunk/gdata/INSTALL Added: trunk/gdata/INSTALL =================================================================== --- trunk/gdata/INSTALL (rev 0) +++ trunk/gdata/INSTALL 2010-02-19 15:36:26 UTC (rev 1421) @@ -0,0 +1,16 @@ + +Windows +======= + +On Windows, the perl based routines (read.xls, xls2sep, xls2csv, xls2tab, +xls2tsv, sheetNames, sheetCount) will not work with the perl in Rtools +but will work with ActiveState perl. + +If you have ActiveState installed and the pl extension is associated with it +(which the ActiveState installer associates automatically) then these +routines will automatically locate ActiveState perl even if you omit the +perl= argument. + +Also ensure that the package was built with ActiveState Perl and not the perl +in Rtools. + Modified: trunk/gdata/R/dQuote.ascii.R =================================================================== --- trunk/gdata/R/dQuote.ascii.R 2010-02-17 14:53:16 UTC (rev 1420) +++ trunk/gdata/R/dQuote.ascii.R 2010-02-19 15:36:26 UTC (rev 1421) @@ -7,3 +7,25 @@ ## dQuote.ascii <- function(x) paste('"',x,'"',sep='') +findPerl <- function(perl, verbose = "FALSE") { + + if (missing(perl)) { + if (.Platform$OS == "windows") { + perl <- Sys.which("perl") + if (perl == "") stop("perl not found. Use perl= argument.") + if (length(grep("rtools", tolower(perl))) > 0) { + perl.ftype <- shell("ftype perl", intern = TRUE) + if (length(grep("^perl=", perl.ftype)) > 0) { + perl <- sub('^perl="([^"]*)".*', "\\1", perl.ftype) + } + } + } + if (perl == "perl") perl <- Sys.which("perl") + } + + if (verbose) cat("Using perl at", perl, "\n") + + perl +} + + Modified: trunk/gdata/R/read.xls.R =================================================================== --- trunk/gdata/R/read.xls.R 2010-02-17 14:53:16 UTC (rev 1420) +++ trunk/gdata/R/read.xls.R 2010-02-19 15:36:26 UTC (rev 1421) @@ -16,6 +16,8 @@ ## translate from xls to csv/tsv/tab format (returns name of created file) + perl <- if (missing(perl)) findPerl(verbose = verbose) + else findPerl(perl, verbose = verbose) con <- xls2sep(xls, sheet, verbose=verbose, ..., method=method, perl = perl) ## load the csv file Modified: trunk/gdata/R/sheetCount.R =================================================================== --- trunk/gdata/R/sheetCount.R 2010-02-17 14:53:16 UTC (rev 1420) +++ trunk/gdata/R/sheetCount.R 2010-02-19 15:36:26 UTC (rev 1421) @@ -1,8 +1,14 @@ -sheetCount <- function(xls, verbose = FALSE, perl = "perl") +sheetCount <- function(xls, verbose = FALSE, perl = "perl") { + perl <- if (missing(perl)) findPerl(verbose = verbose) + else findPerl(perl, verbose = verbose) sheetCmd(xls, cmd="sheetCount.pl", verbose=verbose, perl=perl) +} -sheetNames <- function(xls, verbose = FALSE, perl = "perl") +sheetNames <- function(xls, verbose = FALSE, perl = "perl") { + perl <- if (missing(perl)) findPerl(verbose = verbose) + else findPerl(perl, verbose = verbose) sheetCmd(xls, cmd="sheetNames.pl", verbose=verbose, perl=perl) +} sheetCmd <- function(xls, cmd="sheetCount.pl", verbose=FALSE, perl="perl") { @@ -40,6 +46,7 @@ ## ## execution command + cmd <- paste(perl, sc, dQuote.ascii(xls), sep=" ") ## ## Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-02-17 14:53:16 UTC (rev 1420) +++ trunk/gdata/inst/NEWS 2010-02-19 15:36:26 UTC (rev 1421) @@ -1,3 +1,11 @@ +CHANGES IN 2.7.0 (2010-02-19) + +Enhancements: + +- on Windows attempts to locate ActiveState perl if perl= not specified and + Rtools perl would have otherwise been used in read.xls and other perl + dependent functions. + CHANGES IN 2.7.0 (2010-01-25) ----------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-02-17 14:53:26
|
Revision: 1420 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1420&view=rev Author: warnes Date: 2010-02-17 14:53:16 +0000 (Wed, 17 Feb 2010) Log Message: ----------- Improve performance of hist2d thanks to suggestion by Joerg van den Hoff. Modified Paths: -------------- trunk/gplots/DESCRIPTION trunk/gplots/R/hist2d.R trunk/gplots/inst/NEWS Modified: trunk/gplots/DESCRIPTION =================================================================== --- trunk/gplots/DESCRIPTION 2010-01-28 19:58:26 UTC (rev 1419) +++ trunk/gplots/DESCRIPTION 2010-02-17 14:53:16 UTC (rev 1420) @@ -4,7 +4,7 @@ Depends: gtools, gdata, stats, caTools, grid Recommends: datasets, grid Suggests: gtools -Version: 2.7.4 +Version: 2.7.5 Author: Gregory R. Warnes. Includes R source code and/or documentation contributed by (in alphabetical order): Ben Bolker, Lodewijk Bonebakker, Robert Gentleman, Wolfgang Modified: trunk/gplots/R/hist2d.R =================================================================== --- trunk/gplots/R/hist2d.R 2010-01-28 19:58:26 UTC (rev 1419) +++ trunk/gplots/R/hist2d.R 2010-02-17 14:53:16 UTC (rev 1420) @@ -25,13 +25,13 @@ if(same.scale) { - x.cuts <- seq( from=min(x,y), to=max(x,y), length=nbins[1]+1) - y.cuts <- seq( from=min(x,y), to=max(x,y), length=nbins[2]+1) + x.cuts <- seq( from=min(x,y), to=max(x,y), length=nbins[1]+1, labels=FALSE) + y.cuts <- seq( from=min(x,y), to=max(x,y), length=nbins[2]+1, labels=FALSE) } else { - x.cuts <- seq( from=min(x), to=max(x), length=nbins[1]+1) - y.cuts <- seq( from=min(y), to=max(y), length=nbins[2]+1) + x.cuts <- seq( from=min(x), to=max(x), length=nbins[1]+1, labels=FALSE) + y.cuts <- seq( from=min(y), to=max(y), length=nbins[2]+1, labels=FALSE) } Modified: trunk/gplots/inst/NEWS =================================================================== --- trunk/gplots/inst/NEWS 2010-01-28 19:58:26 UTC (rev 1419) +++ trunk/gplots/inst/NEWS 2010-02-17 14:53:16 UTC (rev 1420) @@ -1,3 +1,11 @@ +Release 2.7.5 - ?? +-------------------------- + +Improvements: + +- Performance of 'hist2d' improved thanks to a suggestion from i + Joerg van den Hoff. + Release 2.7.4 - 2009-11-12 -------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-28 19:58:32
|
Revision: 1419 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1419&view=rev Author: warnes Date: 2010-01-28 19:58:26 +0000 (Thu, 28 Jan 2010) Log Message: ----------- Update for release 2.7.1 Modified Paths: -------------- trunk/gdata/DESCRIPTION trunk/gdata/inst/NEWS Modified: trunk/gdata/DESCRIPTION =================================================================== --- trunk/gdata/DESCRIPTION 2010-01-28 19:56:21 UTC (rev 1418) +++ trunk/gdata/DESCRIPTION 2010-01-28 19:58:26 UTC (rev 1419) @@ -3,8 +3,8 @@ Description: Various R programming tools for data manipulation Depends: R (>= 2.6.0) Imports: gtools -Version: 2.7.0 -Date: 2010-01-25 +Version: 2.7.1 +Date: 2010-01-27 Author: Gregory R. Warnes, with contributions from Ben Bolker, Gregor Gorjanc, Gabor Grothendieck, Ales Korosec, Thomas Lumley, Don MacQueen, Arni Magnusson, Jim Rogers, and others Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-01-28 19:56:21 UTC (rev 1418) +++ trunk/gdata/inst/NEWS 2010-01-28 19:58:26 UTC (rev 1419) @@ -1,6 +1,14 @@ CHANGES IN 2.7.0 (2010-01-25) ----------------------------- +Bug Fixes: + +- Fix building of Perl libraries on Win32 + + +CHANGES IN 2.7.0 (2010-01-25) +----------------------------- + Enhancements: - read.xls() now supports Excel 2007 'xlsx' files. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-28 19:56:30
|
Revision: 1418 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1418&view=rev Author: warnes Date: 2010-01-28 19:56:21 +0000 (Thu, 28 Jan 2010) Log Message: ----------- xls2sep(): Show output of perl call when verbose=T Modified Paths: -------------- trunk/gdata/R/xls2sep.R Modified: trunk/gdata/R/xls2sep.R =================================================================== --- trunk/gdata/R/xls2sep.R 2010-01-28 16:43:50 UTC (rev 1417) +++ trunk/gdata/R/xls2sep.R 2010-01-28 19:56:21 UTC (rev 1418) @@ -92,6 +92,7 @@ if(verbose) cat("Executing '", cmd, "'... \n\n") ## results <- system(cmd, intern=!verbose) + if(verbose) cat(results,"\n\n") ## if (verbose) cat("Done.\n\n") ## This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-28 16:44:22
|
Revision: 1417 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1417&view=rev Author: warnes Date: 2010-01-28 16:43:50 +0000 (Thu, 28 Jan 2010) Log Message: ----------- More Win32 fixes Modified Paths: -------------- trunk/gdata/src/build.bat Modified: trunk/gdata/src/build.bat =================================================================== --- trunk/gdata/src/build.bat 2010-01-28 16:00:12 UTC (rev 1416) +++ trunk/gdata/src/build.bat 2010-01-28 16:43:50 UTC (rev 1417) @@ -10,6 +10,7 @@ echo ** Replace Unix symlinks with copies .. cd ../../inst/perl +del xls2tab.pl.lnk xls2tsv.pl.lnk sheetNames.pl.lnk copy xls2csv.pl xls2tab.pl copy xls2csv.pl xls2tsv.pl copy sheetCount.pl sheetNames.pl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-28 16:00:27
|
Revision: 1416 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1416&view=rev Author: warnes Date: 2010-01-28 16:00:12 +0000 (Thu, 28 Jan 2010) Log Message: ----------- More work on Win32 building Modified Paths: -------------- trunk/gdata/src/Makefile trunk/gdata/src/Makefile.win trunk/gdata/src/build.bat Modified: trunk/gdata/src/Makefile =================================================================== --- trunk/gdata/src/Makefile 2010-01-28 03:58:46 UTC (rev 1415) +++ trunk/gdata/src/Makefile 2010-01-28 16:00:12 UTC (rev 1416) @@ -15,4 +15,4 @@ distclean: rm -rf ../inst/perl/darwin-2level - rm -rf ../inst/perl/MSWin32-x86-multi-thread + rm -rf ../inst/perl/MSWin32-x86-multi-thread Modified: trunk/gdata/src/Makefile.win =================================================================== --- trunk/gdata/src/Makefile.win 2010-01-28 03:58:46 UTC (rev 1415) +++ trunk/gdata/src/Makefile.win 2010-01-28 16:00:12 UTC (rev 1416) @@ -3,7 +3,7 @@ default: tar xzf ${TARGET}.tar.gz build.bat - # make clean + make -f Makefile.win clean clean: rm -rf ${TARGET} Modified: trunk/gdata/src/build.bat =================================================================== --- trunk/gdata/src/build.bat 2010-01-28 03:58:46 UTC (rev 1415) +++ trunk/gdata/src/build.bat 2010-01-28 16:00:12 UTC (rev 1416) @@ -1,6 +1,16 @@ + set TARGET=Compress-Raw-Zlib-2.024 set SHELL= + +echo ** Bulding Perl library %TARGET% .. cd %TARGET% perl Makefile.PL PREFIX=../../inst/perl LIB=../../inst/perl dmake dmake install + +echo ** Replace Unix symlinks with copies .. +cd ../../inst/perl +copy xls2csv.pl xls2tab.pl +copy xls2csv.pl xls2tsv.pl +copy sheetCount.pl sheetNames.pl + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-28 03:58:52
|
Revision: 1415 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1415&view=rev Author: warnes Date: 2010-01-28 03:58:46 +0000 (Thu, 28 Jan 2010) Log Message: ----------- Support building Compress::Raw::Zlib perl package under windows. Modified Paths: -------------- trunk/gdata/src/Makefile Added Paths: ----------- trunk/gdata/src/Makefile.win trunk/gdata/src/build.bat Modified: trunk/gdata/src/Makefile =================================================================== --- trunk/gdata/src/Makefile 2010-01-26 04:21:52 UTC (rev 1414) +++ trunk/gdata/src/Makefile 2010-01-28 03:58:46 UTC (rev 1415) @@ -15,3 +15,4 @@ distclean: rm -rf ../inst/perl/darwin-2level + rm -rf ../inst/perl/MSWin32-x86-multi-thread Added: trunk/gdata/src/Makefile.win =================================================================== --- trunk/gdata/src/Makefile.win (rev 0) +++ trunk/gdata/src/Makefile.win 2010-01-28 03:58:46 UTC (rev 1415) @@ -0,0 +1,14 @@ +TARGET=Compress-Raw-Zlib-2.024 + +default: + tar xzf ${TARGET}.tar.gz + build.bat + # make clean + +clean: + rm -rf ${TARGET} + rm -rf ../inst/perl/share + +distclean: + rm -rf ../inst/perl/darwin-2level + rm -rf ../inst/perl/MSWin32-x86-multi-thread Added: trunk/gdata/src/build.bat =================================================================== --- trunk/gdata/src/build.bat (rev 0) +++ trunk/gdata/src/build.bat 2010-01-28 03:58:46 UTC (rev 1415) @@ -0,0 +1,6 @@ +set TARGET=Compress-Raw-Zlib-2.024 +set SHELL= +cd %TARGET% +perl Makefile.PL PREFIX=../../inst/perl LIB=../../inst/perl +dmake +dmake install This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-26 04:21:58
|
Revision: 1414 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1414&view=rev Author: warnes Date: 2010-01-26 04:21:52 +0000 (Tue, 26 Jan 2010) Log Message: ----------- Tag release 2.7.0 of gdata. Added Paths: ----------- tags/gdata-2.7.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-26 04:12:08
|
Revision: 1413 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1413&view=rev Author: warnes Date: 2010-01-26 04:12:00 +0000 (Tue, 26 Jan 2010) Log Message: ----------- Fix typos Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-01-26 04:11:29 UTC (rev 1412) +++ trunk/gdata/inst/NEWS 2010-01-26 04:12:00 UTC (rev 1413) @@ -16,14 +16,12 @@ New Functions: - sheetCount() and sheetNames() to determine the number and names of - worksheets in an Excel file, respecively. + worksheets in an Excel file, respectively. Bug Fixes: - Fix formatting warning in frameApply(). -- Modify unit tests to avoid issues related to zime zones. - - Resolve crash of "ll(.GlobalEnv)" - @@ -33,7 +31,7 @@ Bug Fixes -- Modify unit tests to avoid issues related to zime zones. +- Modify unit tests to avoid issues related to time zones. CHANGES IN 2.6.0 (2009-07-15) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-26 04:11:35
|
Revision: 1412 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1412&view=rev Author: warnes Date: 2010-01-26 04:11:29 +0000 (Tue, 26 Jan 2010) Log Message: ----------- Show more details in sheetCount() when verbose=TRUE Modified Paths: -------------- trunk/gdata/R/sheetCount.R Modified: trunk/gdata/R/sheetCount.R =================================================================== --- trunk/gdata/R/sheetCount.R 2010-01-24 23:30:26 UTC (rev 1411) +++ trunk/gdata/R/sheetCount.R 2010-01-26 04:11:29 UTC (rev 1412) @@ -49,13 +49,15 @@ if(verbose) { cat("\n") - cat("Extracting sheet count from\n") + cat("Extracting sheet information from\n") cat(" ", dQuote.ascii(xls), "\n") cat("... \n\n") } ## - results <- system(cmd, intern=TRUE) - tc <- textConnection(results) + output <- system(cmd, intern=TRUE) + if(verbose) cat("Results: ", output, "\n") + ## + tc <- textConnection(output) results <- read.table(tc, as.is=TRUE, header=FALSE) close(tc) results <- unlist(results) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-25 00:43:06
|
Revision: 1411 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1411&view=rev Author: warnes Date: 2010-01-24 23:30:26 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Replace two calls to 'dQuote', to 'dQuote.ascii' Modified Paths: -------------- trunk/gdata/R/xls2sep.R Modified: trunk/gdata/R/xls2sep.R =================================================================== --- trunk/gdata/R/xls2sep.R 2010-01-24 23:26:17 UTC (rev 1410) +++ trunk/gdata/R/xls2sep.R 2010-01-24 23:30:26 UTC (rev 1411) @@ -68,8 +68,8 @@ ## ## execution command - cmd <- paste(dQuote(perl), - dQuote(script), + cmd <- paste(dQuote.ascii(perl), + dQuote.ascii(script), dQuote.ascii(xls), dQuote.ascii(targetFile), dQuote.ascii(sheet), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-24 23:26:23
|
Revision: 1410 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1410&view=rev Author: warnes Date: 2010-01-24 23:26:17 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Add code to apply the examples from the 'official' C PROGRAM DEVELOPER'S KIT Added Paths: ----------- trunk/SII/test/ trunk/SII/test/test_sii.R Added: trunk/SII/test/test_sii.R =================================================================== --- trunk/SII/test/test_sii.R (rev 0) +++ trunk/SII/test/test_sii.R 2010-01-24 23:26:17 UTC (rev 1410) @@ -0,0 +1,82 @@ +## This file runs the R 'sii' code on the examples provided with the +## 'official' C PROGRAM DEVELOPER-F\xA2S KIT available at-A +## http://www.sii.to/html/programs.html to ensure that it yields the +## correct results. + +library(SII) + +## OCTAVE.TST 0.491 Octave Procedure +OCTAVE.TST=sii( + speech=c(50.00,40,40,30,20,0.0), + noise=c(70,65,45,25,1.00,-15.00), + threshold=c(0.00,0,0,0,0,7.10), + method="octave" + ) +stopifnot(round(OCTAVE.TST$sii,3)==0.491) + +## OCTAVE_1.TST 0.323 Octave Procedure With Alternative Band Importance +OCTAVE_1.TST=sii( + speech=c(50.00,40,40,30,20,0.0), + noise=c(70,65,45,25,1.00,-15.00), + threshold=c(0.00,0,0,0,0,7.10), + importance=c(0,0,1,0,0,0), + method="octave" + ) +stopifnot(round(OCTAVE_1.TST$sii,3)==0.323) + +## TO.TST 0.445 1/3-Octave Procedure +TO.TST=sii( + speech=c(90,5,40,40,40,40,40,40,40,40,40,40,40,40,-10,-10,-10,-10), + noise=c(10,-10,-10,75,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,10,10,10,10), + threshold=c(90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), + method="one-third octave" + ) +stopifnot(round(TO.TST$sii,3)==0.445) + +## TO_1.TST 0.438 1/3-Octave Procedure With Alternative Band Importance Function +TO_1.TST=sii( + speech=c(90,5,40,40,40,40,40,40,40,40,40,40,40,40,-10,-10,-10,-10), + noise=c(10,-10,-10,75,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,10,10,10,10), + threshold=c(90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), + importance=c(0,0,0,0,0,0,0,0,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0), + method="one-third octave" + ) +stopifnot(round(TO_1.TST$sii,3)==0.438) + + +## CB.TST 0.273 Critical Band Procedure +CB.TST=sii( + speech=c(-10,-10,-10,90,5,40,40,40,40,40,40,40,40,40,40,40,40,-10,-10,-10,-10), + noise=c(10,10,10,10,-10,-10,70,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,10,10,10,10), + threshold=c(0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), + ) +stopifnot(round(CB.TST$sii,3)==0.273) + +## CB_1.TST 0.410 Critical Band Procedure With Alternative Band Importance Function +CB_1.TST=sii( + speech=c(-10,-10,-10,90,5,40,40,40,40,40,40,40,40,40,40,40,40,-10,-10,-10,-10), + noise=c(10,10,10,10,-10,-10,70,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,10,10,10,10), + threshold=c(0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), + importance=c(0,0,0,0,0,0,0,0,0,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0,0,0) + ) +stopifnot(round(CB_1.TST$sii,3)==0.410) + +# ECB.TST 0.278 Equally-Contributing Critical Band Procedure +ECB.TST=sii( + speech=c(-10,90,5,40,40,40,40,40,40,40,40,40,40,40,40,-10,-10), + noise=c(10,10,-10,-10,70,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,10,10), + threshold=c(0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), + method="equal-contributing" + ) +stopifnot(round(ECB.TST$sii,3)==0.278) + +# ECB_1.TST 0.410 Equally-Contribution Critical Band Procedure With Alternative Band Importance Function +ECB_1.TST=sii( + speech=c(-10,90,5,40,40,40,40,40,40,40,40,40,40,40,40,-10,-10), + noise=c(10,10,-10,-10,70,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,10,10), + threshold=c(0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), + importance=c(0,0,0,0,0,0,0,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0), + method="equal-contributing" + ) +stopifnot(round(ECB_1.TST$sii,3)==0.410) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-24 23:22:54
|
Revision: 1409 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1409&view=rev Author: warnes Date: 2010-01-24 23:22:47 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Correct typo Modified Paths: -------------- trunk/SII/R/print.SII.R trunk/SII/R/sii.R Modified: trunk/SII/R/print.SII.R =================================================================== --- trunk/SII/R/print.SII.R 2010-01-24 19:25:26 UTC (rev 1408) +++ trunk/SII/R/print.SII.R 2010-01-24 23:22:47 UTC (rev 1409) @@ -1,5 +1,5 @@ `print.SII` <- -function (x, digits = 2, ...) +function (x, digits=3, ...) { cat("\n") cat("SII:", round(x$sii, digits), "\n") Modified: trunk/SII/R/sii.R =================================================================== --- trunk/SII/R/sii.R 2010-01-24 19:25:26 UTC (rev 1408) +++ trunk/SII/R/sii.R 2010-01-24 23:22:47 UTC (rev 1409) @@ -71,7 +71,7 @@ } else if(length(importance) != nrow(table)) - stop("`importance' vector have length ", nrow(table), "for method `",method,"'.") + stop("`importance' vector must have length ", nrow(table), " for method `",method,"'.") else table[,"Ii"] <- importance This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-24 19:25:32
|
Revision: 1408 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1408&view=rev Author: warnes Date: 2010-01-24 19:25:26 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Remove auto-generated pdf files from svn Removed Paths: ------------- trunk/gdata/inst/doc/mapLevels.pdf trunk/gdata/inst/doc/unknown.pdf Deleted: trunk/gdata/inst/doc/mapLevels.pdf =================================================================== (Binary files differ) Deleted: trunk/gdata/inst/doc/unknown.pdf =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-24 19:18:57
|
Revision: 1407 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1407&view=rev Author: warnes Date: 2010-01-24 19:18:37 +0000 (Sun, 24 Jan 2010) Log Message: ----------- create 'distclean' to remove perl binary dir, currently mac-only Modified Paths: -------------- trunk/gdata/src/Makefile Modified: trunk/gdata/src/Makefile =================================================================== --- trunk/gdata/src/Makefile 2010-01-24 19:13:22 UTC (rev 1406) +++ trunk/gdata/src/Makefile 2010-01-24 19:18:37 UTC (rev 1407) @@ -12,4 +12,6 @@ clean: rm -rf ${TARGET} rm -rf ../inst/perl/share - #rm -rf ../inst/perl/darwin-2level + +distclean: + rm -rf ../inst/perl/darwin-2level This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |