forked from tjanczuk/edge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support double edge for node 5.9.1, edge.js v5.0.2
- Loading branch information
Showing
7 changed files
with
53 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Edge.js" version="4.4.1" targetFramework="net45" /> | ||
<package id="Edge.js" version="5.9.1" targetFramework="net45" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
' UnZip a file script | ||
' | ||
' By Justin Godden 2010 | ||
' | ||
' It's a mess, I know!!! | ||
' | ||
|
||
' Dim ArgObj, var1, var2 | ||
Set ArgObj = WScript.Arguments | ||
|
||
If (Wscript.Arguments.Count > 0) Then | ||
var1 = ArgObj(0) | ||
Else | ||
var1 = "" | ||
End if | ||
|
||
If var1 = "" then | ||
strFileZIP = "example.zip" | ||
Else | ||
strFileZIP = var1 | ||
End if | ||
|
||
'The location of the zip file. | ||
REM Set WshShell = CreateObject("Wscript.Shell") | ||
REM CurDir = WshShell.ExpandEnvironmentStrings("%%cd%%") | ||
Dim sCurPath | ||
sCurPath = CreateObject("Scripting.FileSystemObject").GetAbsolutePathName(".") | ||
strZipFile = sCurPath & "\" & strFileZIP | ||
'The folder the contents should be extracted to. | ||
outFolder = sCurPath & "\" | ||
|
||
WScript.Echo ( "Extracting file " & strFileZIP) | ||
|
||
Set objShell = CreateObject( "Shell.Application" ) | ||
Set objSource = objShell.NameSpace(strZipFile).Items() | ||
Set objTarget = objShell.NameSpace(outFolder) | ||
intOptions = 256 | ||
objTarget.CopyHere objSource, intOptions | ||
|
||
WScript.Echo ( "Extracted." ) | ||
|
||
' This bit is for testing purposes | ||
REM Dim MyVar | ||
REM MyVar = MsgBox ( strZipFile, 65, "MsgBox Example" |