├── Demo ├── Files │ └── My Documents │ │ ├── New Text Document.txt │ │ ├── StyleSheet.css │ │ ├── _hidden │ │ └── Secret.txt │ │ ├── JScript.js │ │ ├── New ZIP archive.zip │ │ ├── desktop.ini │ │ ├── _settings.txt │ │ ├── My Pictures │ │ ├── Sunset.jpg │ │ ├── Winter.jpg │ │ ├── Blue hills.jpg │ │ └── Water lilies.jpg │ │ ├── New Microsoft Word Document.doc │ │ ├── New Microsoft Excel Worksheet.xls │ │ ├── New Microsoft PowerPoint Presentation.ppt │ │ ├── New HTML File.htm │ │ ├── #Special+Chars$ │ │ ├── New HTML File.htm │ │ ├── New'HTML'File.htm │ │ ├── New+HTML+File.htm │ │ └── Yet Another@Test&File=With$Special#Chars.htm │ │ └── Web.config ├── Templates │ ├── StyleSheet.css │ ├── JScript.js │ └── HTMLPage.htm ├── Nuvola │ ├── icons │ │ ├── Copy.gif │ │ ├── Copy.png │ │ ├── Move.gif │ │ ├── Move.png │ │ ├── View.gif │ │ ├── View.png │ │ ├── Delete.gif │ │ ├── Delete.png │ │ ├── Rename.gif │ │ ├── Rename.png │ │ ├── FileLarge.gif │ │ ├── FileLarge.png │ │ ├── FileSmall.gif │ │ ├── FileSmall.png │ │ ├── FolderUp.gif │ │ ├── FolderUp.png │ │ ├── NewFolder.gif │ │ ├── Process.gif │ │ ├── Refresh.gif │ │ ├── FolderLarge.gif │ │ ├── FolderLarge.png │ │ ├── FolderSmall.gif │ │ ├── FolderSmall.png │ │ ├── RootFolderLarge.gif │ │ ├── RootFolderLarge.png │ │ ├── RootFolderSmall.gif │ │ └── RootFolderSmall.png │ ├── 16x16 │ │ ├── folder_home.gif │ │ ├── folder_home.png │ │ ├── folder_photo.gif │ │ ├── folder_photo.png │ │ ├── folder_favorite.gif │ │ └── folder_favorite.png │ └── 32x32 │ │ ├── folder_home.gif │ │ ├── folder_home.png │ │ ├── folder_photo.gif │ │ ├── folder_photo.png │ │ ├── folder_favorite.gif │ │ └── folder_favorite.png ├── images │ ├── 16x16 │ │ ├── edit.gif │ │ ├── html.gif │ │ ├── text.gif │ │ ├── word.gif │ │ ├── xml.gif │ │ ├── zip.gif │ │ ├── excel.gif │ │ ├── image.gif │ │ ├── media.gif │ │ ├── script.gif │ │ ├── smile.gif │ │ ├── favorites.jpg │ │ ├── notepad.png │ │ ├── PowerPoint.gif │ │ ├── compressed.gif │ │ ├── mydocuments.jpg │ │ ├── mypictures.jpg │ │ └── styleSheet.gif │ └── 32x32 │ │ ├── Word.gif │ │ ├── html.gif │ │ ├── xml.gif │ │ ├── Thumbs.db │ │ ├── excel.gif │ │ ├── image.gif │ │ ├── media.gif │ │ ├── script.gif │ │ ├── favorites.jpg │ │ ├── notepad.png │ │ ├── PowerPoint.gif │ │ ├── compressed.gif │ │ ├── mydocuments.jpg │ │ ├── mypictures.jpg │ │ └── styleSheet.gif ├── Bin │ └── Interop.Shell32.dll ├── Tango │ ├── 16x16 │ │ ├── folder.png │ │ ├── user-home.png │ │ ├── emblem-favorite.png │ │ ├── emblem-photos.png │ │ ├── folder-remote.png │ │ └── text-x-generic.png │ └── 32x32 │ │ ├── folder.png │ │ ├── user-home.png │ │ ├── emblem-favorite.png │ │ ├── emblem-photos.png │ │ └── text-x-generic.png ├── IZWebFileManagerThumbnailHandler.ashx ├── App_Themes │ └── Default │ │ ├── IZWebFileManager.VS2005 │ │ ├── Copy.gif │ │ ├── Move.gif │ │ ├── Delete.gif │ │ ├── Rename.gif │ │ ├── FolderUp.gif │ │ ├── ToolbarBG.gif │ │ ├── ToolbarL.gif │ │ └── ToolbarR.gif │ │ ├── IZWebFileManager.Office2003 │ │ ├── Copy.gif │ │ ├── Move.gif │ │ ├── Delete.gif │ │ ├── Loader.gif │ │ ├── Rename.gif │ │ ├── FolderUp.gif │ │ ├── ToolbarBG.gif │ │ ├── ToolbarL.gif │ │ ├── ToolbarR.gif │ │ ├── DetailsColumnBG.gif │ │ └── DetailsColumnLeftBorder.gif │ │ └── IZWebFileManager.VS2005.skin ├── App_Browsers │ └── BrowserFile.browser ├── FileDownload.aspx.cs ├── App_Code │ └── DirectoryManager.cs ├── Programming.aspx ├── Styles.aspx ├── VS2005.aspx ├── Office2003.aspx ├── CustomUploadBar.aspx.cs ├── FileDownload.aspx ├── RootDirectories.aspx ├── SelectedItems.aspx ├── CustomUploadBar.aspx ├── Nuvola.aspx ├── RootDirectories.aspx.cs ├── SelectedItems.aspx.cs ├── CancelOpenCommand.aspx ├── Tango.aspx ├── MasterPage.master ├── Web.config └── Web.sitemap ├── TODO.txt ├── nant.bat ├── tools └── nant │ ├── examples │ ├── HelloWorld │ │ ├── HelloWorld.js │ │ ├── HelloWorld.cs │ │ ├── HelloWorld.vb │ │ └── default.build │ ├── Solution │ │ ├── cpp │ │ │ ├── WinForms │ │ │ │ ├── resource.h │ │ │ │ ├── app.ico │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── Form1.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── WinForms.sln │ │ │ │ ├── cpp.build │ │ │ │ ├── app.rc │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Form1.h │ │ │ │ └── Form1.resX │ │ │ └── default.build │ │ ├── cs │ │ │ ├── WinForms │ │ │ │ ├── App.ico │ │ │ │ ├── WinForms.sln │ │ │ │ ├── cs.build │ │ │ │ ├── Form1.cs │ │ │ │ └── Form1.resx │ │ │ └── default.build │ │ ├── vb │ │ │ ├── default.build │ │ │ └── WinForms │ │ │ │ ├── WinForms.sln │ │ │ │ ├── vb.build │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Form1.vb │ │ │ │ └── Form1.resx │ │ └── vjs │ │ │ ├── default.build │ │ │ └── WinForms │ │ │ ├── WinForms.sln │ │ │ ├── vjs.build │ │ │ ├── Form1.jsl │ │ │ └── Form1.resx │ ├── Simple │ │ ├── Simple.cs │ │ └── Simple.build │ ├── NUnit2 │ │ └── ReferenceAssemblies │ │ │ ├── Helper.cs │ │ │ ├── ReferenceTest.cs │ │ │ └── default.build │ ├── StyleTask │ │ └── SimpleExtensionObject │ │ │ ├── SimpleExtension.dll │ │ │ ├── circles.xml │ │ │ ├── SimpleExtension.cs │ │ │ ├── circle.xsl │ │ │ └── SimpleExtension.build │ ├── examples.build │ ├── UserTask │ │ ├── UserTask.cs │ │ └── default.build │ ├── ScriptTask │ │ └── script-sample.build │ └── Filters │ │ └── ReplaceCharacter │ │ └── default.build │ ├── bin │ ├── NAnt.exe │ ├── scvs.exe │ ├── log4net.dll │ ├── NAnt.Core.dll │ ├── NAnt.NUnit.dll │ ├── NAnt.DotNetTasks.dll │ ├── NAnt.MSNetTasks.dll │ ├── NAnt.NUnit1Tasks.dll │ ├── NAnt.NUnit2Tasks.dll │ ├── NAnt.VSNetTasks.dll │ ├── NAnt.Win32Tasks.dll │ ├── NAnt.VisualCppTasks.dll │ ├── NAnt.CompressionTasks.dll │ ├── NDoc.Documenter.NAnt.dll │ ├── lib │ │ ├── net │ │ │ └── 1.0 │ │ │ │ ├── NDoc.Core.dll │ │ │ │ ├── nunit.core.dll │ │ │ │ ├── nunit.util.dll │ │ │ │ ├── NDoc.ExtendedUI.dll │ │ │ │ ├── nunit-console.exe │ │ │ │ ├── nunit.framework.dll │ │ │ │ ├── NDoc.Documenter.Msdn.dll │ │ │ │ └── nunit-console-runner.dll │ │ └── common │ │ │ ├── 1.1 │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.util.dll │ │ │ ├── nunit-console.exe │ │ │ ├── nunit.framework.dll │ │ │ └── nunit-console-runner.dll │ │ │ ├── 2.0 │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.util.dll │ │ │ ├── nunit-console.exe │ │ │ ├── nunit.framework.dll │ │ │ └── nunit-console-runner.dll │ │ │ └── neutral │ │ │ ├── NDoc.Core.dll │ │ │ ├── NUnitCore.dll │ │ │ ├── NDoc.ExtendedUI.dll │ │ │ ├── NDoc.Documenter.Msdn.dll │ │ │ ├── ICSharpCode.SharpCvsLib.dll │ │ │ ├── ICSharpCode.SharpZipLib.dll │ │ │ └── ICSharpCode.SharpCvsLib.Console.dll │ ├── NAnt.SourceControlTasks.dll │ └── extensions │ │ └── common │ │ └── 2.0 │ │ ├── NAnt.MSBuild.dll │ │ └── NAnt.MSBuild.xml │ └── doc │ ├── sdk │ └── NAnt-SDK.chm │ └── help │ ├── images │ ├── arrow.gif │ ├── logo.gif │ └── bullet.gif │ ├── introduction │ ├── getting-started.gif │ ├── index.html │ ├── fog0000000042.html │ └── fog0000000081.html │ ├── elements │ ├── NAnt.Core.Types.RawXml.html │ ├── NAnt.Core.Filters.ChainableReader.html │ └── NAnt.Core.Tasks.InElement.html │ ├── functions │ ├── platform.get-name().html │ ├── platform.is-unix().html │ ├── platform.is-windows().html │ ├── project.get-base-directory().html │ ├── nant.get-base-directory().html │ ├── framework.get-runtime-framework().html │ ├── framework.get-target-framework().html │ ├── nant.get-assembly().html │ ├── path.get-temp-path().html │ ├── platform.is-win32().html │ ├── project.get-name().html │ ├── framework.get-description().html │ ├── directory.get-current-directory().html │ ├── project.get-buildfile-path().html │ ├── path.get-temp-file-name().html │ ├── dns.get-host-name().html │ ├── datetime.now().html │ ├── environment.get-machine-name().html │ ├── framework.get-version().html │ ├── environment.newline().html │ ├── project.get-default-target().html │ ├── framework.get-clr-version().html │ ├── target.get-current-target().html │ ├── math.round(System.Double).html │ ├── project.get-buildfile-uri().html │ ├── task.exists(System.String).html │ ├── datetime.get-hour(System.DateTime).html │ ├── datetime.get-year(System.DateTime).html │ ├── datetime.get-month(System.DateTime).html │ └── datetime.get-day(System.DateTime).html │ └── enums │ └── NAnt.NUnit.Types.FormatterType.html ├── IZWebFileManager ├── resources │ ├── go.png │ ├── Copy.gif │ ├── Empty.gif │ ├── Move.gif │ ├── View.gif │ ├── clear.png │ ├── Bullet.gif │ ├── Delete.gif │ ├── PopOut.gif │ ├── Process.gif │ ├── Refresh.gif │ ├── Rename.gif │ ├── search.png │ ├── CheckMark.gif │ ├── FileLarge.gif │ ├── FileSmall.gif │ ├── FolderUp.gif │ ├── NewFolder.gif │ ├── PopOutRtl.gif │ ├── drag_copy.cur │ ├── drag_move.cur │ ├── toolbarbg.gif │ ├── FolderLarge.gif │ ├── FolderSmall.gif │ ├── RootFolderLarge.gif │ ├── RootFolderSmall.gif │ ├── toolbarbtndown_B.gif │ ├── toolbarbtndown_L.gif │ ├── toolbarbtndown_LB.gif │ ├── toolbarbtndown_LT.gif │ ├── toolbarbtndown_R.gif │ ├── toolbarbtndown_RB.gif │ ├── toolbarbtndown_RT.gif │ ├── toolbarbtndown_T.gif │ ├── toolbarbtnhover_B.gif │ ├── toolbarbtnhover_L.gif │ ├── toolbarbtnhover_R.gif │ ├── toolbarbtnhover_T.gif │ ├── toolbarbtnhover_LB.gif │ ├── toolbarbtnhover_LT.gif │ ├── toolbarbtnhover_RB.gif │ ├── toolbarbtnhover_RT.gif │ ├── detailscolumnheader_R.gif │ ├── detailscolumnheader_RB.gif │ └── WebForm.d.ts ├── FileManagerCommandMethod.cs ├── Properties │ └── VersionAssemblyInfo.cs ├── HiddenItemStyle.cs ├── Components │ └── ViewStateExtensions.cs ├── LICENSE.txt ├── SortMode.cs ├── ToolbarImages.cs ├── FileManagerCommandTargets.cs ├── OuterBorderStyle.cs ├── FileManagerCommands.cs └── ThumbnailHandler.cs └── .gitignore /Demo/Files/My Documents/New Text Document.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo/Templates/StyleSheet.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- 1 | _ FileManager: upload file size limit -------------------------------------------------------------------------------- /Demo/Templates/JScript.js: -------------------------------------------------------------------------------- 1 | // JScript File 2 | 3 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/StyleSheet.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/_hidden/Secret.txt: -------------------------------------------------------------------------------- 1 | Secret.txt 2 | -------------------------------------------------------------------------------- /nant.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "tools\nant\bin\NAnt.exe" %* 3 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/JScript.js: -------------------------------------------------------------------------------- 1 | // JScript File 2 | 3 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/New ZIP archive.zip: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /tools/nant/examples/HelloWorld/HelloWorld.js: -------------------------------------------------------------------------------- 1 | print("Hello World using JScript.NET"); -------------------------------------------------------------------------------- /Demo/Files/My Documents/desktop.ini: -------------------------------------------------------------------------------- 1 | [first] 2 | setting = value 3 | [second] 4 | setting = value -------------------------------------------------------------------------------- /Demo/Files/My Documents/_settings.txt: -------------------------------------------------------------------------------- 1 | [first] 2 | setting = value 3 | [second] 4 | setting = value -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.exe -------------------------------------------------------------------------------- /tools/nant/bin/scvs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/scvs.exe -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Copy.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Copy.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Move.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Move.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/View.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/View.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/View.png -------------------------------------------------------------------------------- /Demo/images/16x16/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/edit.gif -------------------------------------------------------------------------------- /Demo/images/16x16/html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/html.gif -------------------------------------------------------------------------------- /Demo/images/16x16/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/text.gif -------------------------------------------------------------------------------- /Demo/images/16x16/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/word.gif -------------------------------------------------------------------------------- /Demo/images/16x16/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/xml.gif -------------------------------------------------------------------------------- /Demo/images/16x16/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/zip.gif -------------------------------------------------------------------------------- /Demo/images/32x32/Word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/Word.gif -------------------------------------------------------------------------------- /Demo/images/32x32/html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/html.gif -------------------------------------------------------------------------------- /Demo/images/32x32/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/xml.gif -------------------------------------------------------------------------------- /tools/nant/bin/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/log4net.dll -------------------------------------------------------------------------------- /Demo/Bin/Interop.Shell32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Bin/Interop.Shell32.dll -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Delete.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Delete.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Rename.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Rename.png -------------------------------------------------------------------------------- /Demo/Tango/16x16/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/16x16/folder.png -------------------------------------------------------------------------------- /Demo/Tango/32x32/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/32x32/folder.png -------------------------------------------------------------------------------- /Demo/images/16x16/excel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/excel.gif -------------------------------------------------------------------------------- /Demo/images/16x16/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/image.gif -------------------------------------------------------------------------------- /Demo/images/16x16/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/media.gif -------------------------------------------------------------------------------- /Demo/images/16x16/script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/script.gif -------------------------------------------------------------------------------- /Demo/images/16x16/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/smile.gif -------------------------------------------------------------------------------- /Demo/images/32x32/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/Thumbs.db -------------------------------------------------------------------------------- /Demo/images/32x32/excel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/excel.gif -------------------------------------------------------------------------------- /Demo/images/32x32/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/image.gif -------------------------------------------------------------------------------- /Demo/images/32x32/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/media.gif -------------------------------------------------------------------------------- /Demo/images/32x32/script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/script.gif -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.Core.dll -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FileLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FileLarge.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FileLarge.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FileSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FileSmall.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FileSmall.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FolderUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FolderUp.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FolderUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FolderUp.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/NewFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/NewFolder.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Process.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/Refresh.gif -------------------------------------------------------------------------------- /Demo/Tango/16x16/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/16x16/user-home.png -------------------------------------------------------------------------------- /Demo/Tango/32x32/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/32x32/user-home.png -------------------------------------------------------------------------------- /Demo/images/16x16/favorites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/favorites.jpg -------------------------------------------------------------------------------- /Demo/images/16x16/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/notepad.png -------------------------------------------------------------------------------- /Demo/images/32x32/favorites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/favorites.jpg -------------------------------------------------------------------------------- /Demo/images/32x32/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/notepad.png -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.NUnit.dll -------------------------------------------------------------------------------- /tools/nant/doc/sdk/NAnt-SDK.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/doc/sdk/NAnt-SDK.chm -------------------------------------------------------------------------------- /Demo/Nuvola/16x16/folder_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/16x16/folder_home.gif -------------------------------------------------------------------------------- /Demo/Nuvola/16x16/folder_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/16x16/folder_home.png -------------------------------------------------------------------------------- /Demo/Nuvola/32x32/folder_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/32x32/folder_home.gif -------------------------------------------------------------------------------- /Demo/Nuvola/32x32/folder_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/32x32/folder_home.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FolderLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FolderLarge.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FolderLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FolderLarge.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FolderSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FolderSmall.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/FolderSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/FolderSmall.png -------------------------------------------------------------------------------- /Demo/images/16x16/PowerPoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/PowerPoint.gif -------------------------------------------------------------------------------- /Demo/images/16x16/compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/compressed.gif -------------------------------------------------------------------------------- /Demo/images/16x16/mydocuments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/mydocuments.jpg -------------------------------------------------------------------------------- /Demo/images/16x16/mypictures.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/mypictures.jpg -------------------------------------------------------------------------------- /Demo/images/16x16/styleSheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/16x16/styleSheet.gif -------------------------------------------------------------------------------- /Demo/images/32x32/PowerPoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/PowerPoint.gif -------------------------------------------------------------------------------- /Demo/images/32x32/compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/compressed.gif -------------------------------------------------------------------------------- /Demo/images/32x32/mydocuments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/mydocuments.jpg -------------------------------------------------------------------------------- /Demo/images/32x32/mypictures.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/mypictures.jpg -------------------------------------------------------------------------------- /Demo/images/32x32/styleSheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/images/32x32/styleSheet.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/go.png -------------------------------------------------------------------------------- /Demo/Nuvola/16x16/folder_photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/16x16/folder_photo.gif -------------------------------------------------------------------------------- /Demo/Nuvola/16x16/folder_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/16x16/folder_photo.png -------------------------------------------------------------------------------- /Demo/Nuvola/32x32/folder_photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/32x32/folder_photo.gif -------------------------------------------------------------------------------- /Demo/Nuvola/32x32/folder_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/32x32/folder_photo.png -------------------------------------------------------------------------------- /Demo/Tango/16x16/emblem-favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/16x16/emblem-favorite.png -------------------------------------------------------------------------------- /Demo/Tango/16x16/emblem-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/16x16/emblem-photos.png -------------------------------------------------------------------------------- /Demo/Tango/16x16/folder-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/16x16/folder-remote.png -------------------------------------------------------------------------------- /Demo/Tango/16x16/text-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/16x16/text-x-generic.png -------------------------------------------------------------------------------- /Demo/Tango/32x32/emblem-favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/32x32/emblem-favorite.png -------------------------------------------------------------------------------- /Demo/Tango/32x32/emblem-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/32x32/emblem-photos.png -------------------------------------------------------------------------------- /Demo/Tango/32x32/text-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Tango/32x32/text-x-generic.png -------------------------------------------------------------------------------- /IZWebFileManager/resources/Copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Copy.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/Empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Empty.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/Move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Move.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/View.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/View.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/clear.png -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.DotNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.DotNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.MSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.MSNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.NUnit1Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.NUnit1Tasks.dll -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.NUnit2Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.NUnit2Tasks.dll -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.VSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.VSNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.Win32Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.Win32Tasks.dll -------------------------------------------------------------------------------- /tools/nant/doc/help/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/doc/help/images/arrow.gif -------------------------------------------------------------------------------- /tools/nant/doc/help/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/doc/help/images/logo.gif -------------------------------------------------------------------------------- /Demo/IZWebFileManagerThumbnailHandler.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" Class="IZ.WebFileManager.ThumbnailHandler, IZ.WebFileManager" %> -------------------------------------------------------------------------------- /Demo/Nuvola/16x16/folder_favorite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/16x16/folder_favorite.gif -------------------------------------------------------------------------------- /Demo/Nuvola/16x16/folder_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/16x16/folder_favorite.png -------------------------------------------------------------------------------- /Demo/Nuvola/32x32/folder_favorite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/32x32/folder_favorite.gif -------------------------------------------------------------------------------- /Demo/Nuvola/32x32/folder_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/32x32/folder_favorite.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/RootFolderLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/RootFolderLarge.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/RootFolderLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/RootFolderLarge.png -------------------------------------------------------------------------------- /Demo/Nuvola/icons/RootFolderSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/RootFolderSmall.gif -------------------------------------------------------------------------------- /Demo/Nuvola/icons/RootFolderSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Nuvola/icons/RootFolderSmall.png -------------------------------------------------------------------------------- /IZWebFileManager/resources/Bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Bullet.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Delete.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/PopOut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/PopOut.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/Process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Process.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Refresh.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/Rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/Rename.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/search.png -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.VisualCppTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.VisualCppTasks.dll -------------------------------------------------------------------------------- /tools/nant/doc/help/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/doc/help/images/bullet.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/CheckMark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/CheckMark.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/FileLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/FileLarge.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/FileSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/FileSmall.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/FolderUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/FolderUp.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/NewFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/NewFolder.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/PopOutRtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/PopOutRtl.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/drag_copy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/drag_copy.cur -------------------------------------------------------------------------------- /IZWebFileManager/resources/drag_move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/drag_move.cur -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbg.gif -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.CompressionTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.CompressionTasks.dll -------------------------------------------------------------------------------- /tools/nant/bin/NDoc.Documenter.NAnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NDoc.Documenter.NAnt.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/nunit.util.dll -------------------------------------------------------------------------------- /IZWebFileManager/resources/FolderLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/FolderLarge.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/FolderSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/FolderSmall.gif -------------------------------------------------------------------------------- /tools/nant/bin/NAnt.SourceControlTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/NAnt.SourceControlTasks.dll -------------------------------------------------------------------------------- /Demo/Files/My Documents/My Pictures/Sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/My Pictures/Sunset.jpg -------------------------------------------------------------------------------- /Demo/Files/My Documents/My Pictures/Winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/My Pictures/Winter.jpg -------------------------------------------------------------------------------- /IZWebFileManager/resources/RootFolderLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/RootFolderLarge.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/RootFolderSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/RootFolderSmall.gif -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/1.1/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/1.1/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/1.1/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/1.1/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/nunit-console.exe -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_B.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_B.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_L.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_LB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_LB.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_LT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_LT.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_R.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_R.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_RB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_RB.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_RT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_RT.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtndown_T.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtndown_T.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_B.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_B.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_L.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_R.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_R.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_T.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_T.gif -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/1.1/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/1.1/nunit-console.exe -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/2.0/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/2.0/nunit-console.exe -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/NUnitCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/NUnitCore.dll -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cs/WinForms/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/examples/Solution/cs/WinForms/App.ico -------------------------------------------------------------------------------- /Demo/Files/My Documents/My Pictures/Blue hills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/My Pictures/Blue hills.jpg -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_LB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_LB.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_LT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_LT.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_RB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_RB.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/toolbarbtnhover_RT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/toolbarbtnhover_RT.gif -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/1.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/1.1/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/net/1.0/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/net/1.0/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nant/examples/Simple/Simple.cs: -------------------------------------------------------------------------------- 1 | public class Simple { 2 | static void Main() { 3 | System.Console.WriteLine("Hello, World!"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/examples/Solution/cpp/WinForms/app.ico -------------------------------------------------------------------------------- /Demo/Files/My Documents/My Pictures/Water lilies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/My Pictures/Water lilies.jpg -------------------------------------------------------------------------------- /IZWebFileManager/resources/detailscolumnheader_R.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/detailscolumnheader_R.gif -------------------------------------------------------------------------------- /IZWebFileManager/resources/detailscolumnheader_RB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/IZWebFileManager/resources/detailscolumnheader_RB.gif -------------------------------------------------------------------------------- /tools/nant/bin/extensions/common/2.0/NAnt.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/extensions/common/2.0/NAnt.MSBuild.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/doc/help/introduction/getting-started.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/doc/help/introduction/getting-started.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/Copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/Copy.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/Move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/Move.gif -------------------------------------------------------------------------------- /Demo/Files/My Documents/New Microsoft Word Document.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/New Microsoft Word Document.doc -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/1.1/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/1.1/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/2.0/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/2.0/nunit-console-runner.dll -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/Delete.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/Rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/Rename.gif -------------------------------------------------------------------------------- /Demo/Files/My Documents/New Microsoft Excel Worksheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/New Microsoft Excel Worksheet.xls -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/Copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/Copy.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/Move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/Move.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/FolderUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/FolderUp.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/ToolbarBG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/ToolbarBG.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/ToolbarL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/ToolbarL.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005/ToolbarR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.VS2005/ToolbarR.gif -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/ICSharpCode.SharpCvsLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/ICSharpCode.SharpCvsLib.dll -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tools/nant/examples/HelloWorld/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | public class ProjectName { 2 | static void Main() { 3 | System.Console.WriteLine("Hello World using C#"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/Delete.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/Loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/Loader.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/Rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/Rename.gif -------------------------------------------------------------------------------- /IZWebFileManager/FileManagerCommandMethod.cs: -------------------------------------------------------------------------------- 1 | namespace IZ.WebFileManager 2 | { 3 | public enum FileManagerCommandMethod 4 | { 5 | Callback, PostBack 6 | } 7 | } -------------------------------------------------------------------------------- /tools/nant/examples/NUnit2/ReferenceAssemblies/Helper.cs: -------------------------------------------------------------------------------- 1 | namespace Helpers { 2 | public class Log { 3 | public static void Debug(string msg) { 4 | } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/FolderUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/FolderUp.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/ToolbarBG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/ToolbarBG.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/ToolbarL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/ToolbarL.gif -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/ToolbarR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/ToolbarR.gif -------------------------------------------------------------------------------- /Demo/Files/My Documents/New Microsoft PowerPoint Presentation.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/Files/My Documents/New Microsoft PowerPoint Presentation.ppt -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/DetailsColumnBG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/DetailsColumnBG.gif -------------------------------------------------------------------------------- /tools/nant/bin/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/bin/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll -------------------------------------------------------------------------------- /tools/nant/examples/StyleTask/SimpleExtensionObject/SimpleExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/tools/nant/examples/StyleTask/SimpleExtensionObject/SimpleExtension.dll -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.Office2003/DetailsColumnLeftBorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishma/IZWebFileManager/HEAD/Demo/App_Themes/Default/IZWebFileManager.Office2003/DetailsColumnLeftBorder.gif -------------------------------------------------------------------------------- /tools/nant/examples/HelloWorld/HelloWorld.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Public Class MainApp 4 | Shared Sub Main() 5 | Console.WriteLine("Hello World using VB.NET") 6 | Return 7 | End Sub 8 | End Class 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Demo/[Bb]in 3 | IZWebFileManager/[Bb]in 4 | IZWebFileManager/[Oo]bj 5 | *.sln.cache 6 | _ReSharper* 7 | *.suo 8 | *.user 9 | build 10 | _PrecompiledDemo 11 | *.js.map 12 | Demo/WebWorkbench.mswwsettings 13 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // winforms.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/Templates/HTMLPage.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Element Reference
21 | RawXml |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Represents an element of which the XML is processed by its parent task or type.
29 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | platform::get-name |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the name of the platform on which NAnt is running.
29 |string platform::get-name()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | platform::is-unix |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Checks whether NAnt is running on Unix.
29 |bool platform::is-unix()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | platform::is-windows |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Checks whether NAnt is running on Windows.
29 |bool platform::is-windows()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | project::get-base-directory |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the base directory of the current project.
29 |string project::get-base-directory()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | nant::get-base-directory |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the base directory of the appdomain in which NAnt is running.
29 |string nant::get-base-directory()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | framework::get-runtime-framework |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the identifier of the runtime framework.
29 |string framework::get-runtime-framework()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | framework::get-target-framework |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the identifier of the current target framework.
29 |string framework::get-target-framework()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | nant::get-assembly |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the NAnt assembly.
29 |
31 | Assembly nant::get-assembly()
32 |
33 |
34 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Element Reference
21 | ChainableReader |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Functions as a chainable TextReader
Implements a abstraction over a TextReader that allows the class to represent either a TextReader or another ChainableReader to which it is chained. By passing a ChainableReader as a constructor paramater it is possiable to chain many ChainableReaders together. The last ChainableReader in the chain must be based on a TextReader.
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | path::get-temp-path |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the path to the temporary directory.
29 |string path::get-temp-path()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | platform::is-win32 |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |29 | (Deprecated) 30 |
31 |Checks whether NAnt is running on Windows (and not just 32-bit Windows as the name may lead you to believe).
32 |bool platform::is-win32()
34 |
35 |
36 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | project::get-name |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the name of the current project.
29 |string project::get-name()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | framework::get-description |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the description of the current target framework.
29 |string framework::get-description()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | directory::get-current-directory |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the current working directory.
29 |string directory::get-current-directory()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | project::get-buildfile-path |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the local path to the build file.
29 |string project::get-buildfile-path()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | path::get-temp-file-name |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Returns a uniquely named zero-byte temporary file on disk and returns the full path to that file.
29 |string path::get-temp-file-name()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | dns::get-host-name |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the host name of the local computer.
29 |string dns::get-host-name()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | datetime::now |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets a DateTime that is the current local date and time on this computer.
29 |datetime datetime::now()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Element Reference
21 | InElement |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |29 |
30 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | environment::get-machine-name |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the NetBIOS name of this local computer.
29 |string environment::get-machine-name()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | framework::get-version |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the version of the current target framework.
29 |
31 | Version framework::get-version()
32 |
33 |
34 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | environment::newline |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the newline string defined for this environment.
29 |string environment::newline()
31 |
32 |
33 | Output two lines in a log file.
34 | <echo file="build.log" message="First line${environment::newline()}Second line" />
35 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Enum Reference
21 | FormatterType |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |The built-in formatter types.
29 || Field | 34 |Description | 35 |
|---|---|
| Plain | 38 |A plaintext formatter. | 39 |
| Xml | 42 |An XML formatter. | 43 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | project::get-default-target |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the name of the target that will be executed when no other build targets are specified.
29 |string project::get-default-target()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | framework::get-clr-version |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the Common Language Runtime version of the current target framework.
29 |
31 | Version framework::get-clr-version()
32 |
33 |
34 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | target::get-current-target |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the name of the target being executed.
29 |string target::get-current-target()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | math::round |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Rounds the value to the nearest whole number
29 |double math::round(value)
31 |
32 |
33 | | Name | 38 |Type | 39 |Description | 40 |
|---|---|---|
| value | 43 |double | 44 |Number to be rounded, can be anything convertible to a double. | 45 |
14 | NAnt Introduction
16 | |
17 | 18 | v0.91-alpha2 19 | | 20 |
[This is preliminary documentation and subject to change.]
24 |Requirements, installation, quick start, history of NAnt and other miscellaneous 25 | topics.
26 | 27 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/project.get-buildfile-uri().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | project::get-buildfile-uri |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the Uri form of the build file.
29 |string project::get-buildfile-uri()
31 |
32 |
33 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | task::exists |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Checks whether the specified task exists.
29 |bool task::exists(name)
31 |
32 |
33 | | Name | 38 |Type | 39 |Description | 40 |
|---|---|---|
| name | 43 |string | 44 |The task to test. | 45 |
14 | NAnt
15 |
16 | Help
17 |
18 | Introduction |
21 | 22 | v0.91-alpha2 23 | | 24 |
[This is preliminary documentation and subject to change.]
28 |The idea for NAnt came from Hazware's XBuild project which in turn was inspired from Apache Ant. After emailing the author for a beta 2 release of the tool and getting no response Gerry Shaw ported the code to .NET beta 2. Due to the number of changes from .NET beta 1 to beta 2 the result was a total rewrite.
29 |NAnt was registered at Source Forge on July 18, 2001 with the first public release made that day.
30 |The name NAnt comes from the fact that this tool is Not Ant.
31 | 32 | 33 | -------------------------------------------------------------------------------- /tools/nant/doc/help/introduction/fog0000000081.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
14 | NAnt
15 |
16 | Help
17 |
18 | Introduction |
21 | 22 | v0.91-alpha2 23 | | 24 |
[This is preliminary documentation and subject to change.]
28 |If you have used Ant before than NAnt should feel comfortable but NAnt is only compatible with Ant in spirit. Here is a partial list of differences:
29 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | datetime::get-hour |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the hour component of the specified date.
29 |int datetime::get-hour(date)
31 |
32 |
33 | | Name | 38 |Type | 39 |Description | 40 |
|---|---|---|
| date | 43 |datetime | 44 |The date of which to get the hour component. | 45 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | datetime::get-year |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the year component of the specified date.
29 |int datetime::get-year(date)
31 |
32 |
33 | | Name | 38 |Type | 39 |Description | 40 |
|---|---|---|
| date | 43 |datetime | 44 |The date of which to get the year component. | 45 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | datetime::get-month |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the month component of the specified date.
29 |int datetime::get-month(date)
31 |
32 |
33 | | Name | 38 |Type | 39 |Description | 40 |
|---|---|---|
| date | 43 |datetime | 44 |The date of which to get the month component. | 45 |
14 |
15 | NAnt
16 |
17 |
18 | Help
19 |
20 | Function Reference
21 | datetime::get-day |
22 | 23 | v0.91-alpha2 | 24 |
[This is preliminary documentation and subject to change.]
28 |Gets the day of the month represented by the specified date.
29 |int datetime::get-day(date)
31 |
32 |
33 | | Name | 38 |Type | 39 |Description | 40 |
|---|---|---|
| date | 43 |datetime | 44 |The date of which to get the day of the month. | 45 |