├── 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 | Untitled Page 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tools/nant/examples/StyleTask/SimpleExtensionObject/circles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 4 | 75.398223686155 5 | 6 | 7 | 37.5 8 | 235.61944901923448 9 | 10 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/New HTML File.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Untitled Page 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tools/nant/examples/NUnit2/ReferenceAssemblies/ReferenceTest.cs: -------------------------------------------------------------------------------- 1 | using NUnit.Framework; 2 | using Helpers; 3 | 4 | namespace NAnt.NUnit2.Tests { 5 | [TestFixture] 6 | public class ReferenceTests { 7 | [Test] 8 | public void LogTest () { 9 | Log.Debug ("whatever"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /tools/nant/examples/StyleTask/SimpleExtensionObject/SimpleExtension.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | //Calculates the circumference of a circle given the radius. 4 | public class Calculate { 5 | 6 | private double circ = 0; 7 | 8 | public double Circumference(double radius){ 9 | circ = Math.PI*2*radius; 10 | return circ; 11 | } 12 | } -------------------------------------------------------------------------------- /Demo/Files/My Documents/#Special+Chars$/New HTML File.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Untitled Page 5 | 6 | 7 |

New HTML File.htm

8 | 9 | 10 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/#Special+Chars$/New'HTML'File.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Untitled Page 5 | 6 | 7 |

New'HTML'File.htm

8 | 9 | 10 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/#Special+Chars$/New+HTML+File.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Untitled Page 5 | 6 | 7 |

New+HTML+File.htm

8 | 9 | 10 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/#Special+Chars$/Yet Another@Test&File=With$Special#Chars.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Untitled Page 5 | 6 | 7 |

Yet Another@Test&File=With$Special#Chars.htm

8 | 9 | 10 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cs/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vb/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vjs/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Demo/App_Browsers/BrowserFile.browser: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/Form1.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #include "Form1.h" 3 | #include 4 | 5 | using namespace WinForms; 6 | 7 | int APIENTRY _tWinMain(HINSTANCE hInstance, 8 | HINSTANCE hPrevInstance, 9 | LPTSTR lpCmdLine, 10 | int nCmdShow) 11 | { 12 | System::Threading::Thread::CurrentThread->ApartmentState = System::Threading::ApartmentState::STA; 13 | Application::Run(new Form1()); 14 | return 0; 15 | } 16 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | #pragma once 5 | 6 | 7 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 8 | // C RunTime Header Files 9 | #include 10 | #include 11 | #include 12 | #include 13 | 14 | // TODO: reference additional headers your program requires here 15 | -------------------------------------------------------------------------------- /tools/nant/examples/StyleTask/SimpleExtensionObject/circle.xsl: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Demo/FileDownload.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web; 3 | using IZ.WebFileManager; 4 | 5 | public partial class FileDownload : System.Web.UI.Page 6 | { 7 | protected void Page_Load (object sender, EventArgs e) { 8 | Label1.Text = ""; 9 | } 10 | protected void FileManager1_FileDownload (object sender, DownloadFileCancelEventArgs e) { 11 | if(ProhibitDownload.Checked) 12 | { 13 | e.Cancel = true; 14 | Label1.Text = "Downloading file " + HttpUtility.HtmlEncode (e.DownloadFile.PhysicalPath) + " is prohibited."; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Demo/App_Code/DirectoryManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data; 3 | using System.Configuration; 4 | using System.Web; 5 | using System.Web.Security; 6 | using System.Web.UI; 7 | using System.Web.UI.WebControls; 8 | using System.Web.UI.WebControls.WebParts; 9 | using System.Web.UI.HtmlControls; 10 | 11 | /// 12 | /// Summary description for DirectoryManager 13 | /// 14 | public class DirectoryManager 15 | { 16 | public static string GetRootDirectoryPath (HttpContext context) { 17 | return "~/Files/My Documents"; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Demo/Programming.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" 2 | CodeFile="Programming.aspx.cs" Inherits="Programming" Title="Untitled Page" %> 3 | 4 | 5 | 6 |
7 | In this example IZWebFileManager instance is created dynamically in Page_Load. 8 |
9 |
10 | 11 |
12 |
13 | -------------------------------------------------------------------------------- /IZWebFileManager/Properties/VersionAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | //------------------------------------------------------------------------------ 4 | // 5 | // This code was generated by a tool. 6 | // Runtime Version:4.0.30319.34014 7 | // 8 | // Changes to this file may cause incorrect behavior and will be lost if 9 | // the code is regenerated. 10 | // 11 | //------------------------------------------------------------------------------ 12 | 13 | [assembly: AssemblyVersionAttribute("2.8.1.0")] 14 | 15 | -------------------------------------------------------------------------------- /Demo/Files/My Documents/Web.config: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /IZWebFileManager/HiddenItemStyle.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Web.UI.WebControls; 5 | 6 | namespace IZ.WebFileManager 7 | { 8 | class HiddenItemStyle : Style 9 | { 10 | protected override void FillStyleAttributes (System.Web.UI.CssStyleCollection attributes, System.Web.UI.IUrlResolutionService urlResolver) { 11 | base.FillStyleAttributes (attributes, urlResolver); 12 | attributes.Add ("opacity", "0.40"); 13 | attributes.Add ("filter", "alpha(opacity=40)"); 14 | attributes.Add ("-moz-opacity", ".40"); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /tools/nant/examples/examples.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /IZWebFileManager/Components/ViewStateExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Web.UI; 6 | 7 | namespace IZ.WebFileManager.Components 8 | { 9 | static class ViewStateExtensions 10 | { 11 | public static T GetValue(this StateBag stateBag, string key, T defaultValue) 12 | { 13 | return (T) (stateBag[key] ?? defaultValue); 14 | } 15 | 16 | public static void SetValue(this StateBag stateBag, string key, T value) 17 | { 18 | stateBag[key] = value; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /IZWebFileManager/resources/WebForm.d.ts: -------------------------------------------------------------------------------- 1 | declare function WebForm_GetElementById(id: string): HTMLElement; 2 | declare function WebForm_GetElementPosition(element: HTMLElement): WebForm_Position; 3 | declare function WebForm_GetElementDir(element: HTMLElement): string; 4 | declare function WebForm_AppendToClassName(element: HTMLElement, cssClass: string); 5 | declare function WebForm_RemoveClassName(element: HTMLElement, cssClass: string); 6 | declare function WebForm_InitCallback(); 7 | declare var __theFormPostData; 8 | declare var __theFormPostCollection; 9 | 10 | interface WebForm_Position { 11 | x: number; 12 | y: number; 13 | width: number; 14 | height: number; 15 | } -------------------------------------------------------------------------------- /Demo/Styles.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" Title="Untitled Page" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 |
5 | Use built-in "XP" style or customize it using Style Properties 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 | 17 | -------------------------------------------------------------------------------- /Demo/VS2005.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 |
5 | Use ImagesFolder, ...ImageUrl and SpecialFolders properties to customize your icon theme 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | -------------------------------------------------------------------------------- /Demo/Office2003.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 |
5 | Use ImagesFolder, ...ImageUrl and SpecialFolders properties to customize your icon theme 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | -------------------------------------------------------------------------------- /IZWebFileManager/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2006 Igor Zelmanovich 2 | 3 | This program is free software; you can redistribute it and/or modify 4 | it under the terms of the GNU General Public License as published by 5 | the Free Software Foundation; either version 2 of the License, or 6 | (at your option) any later version. 7 | 8 | This program is distributed in the hope that it will be useful, 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | GNU General Public License for more details. 12 | 13 | You should have received a copy of the GNU General Public License 14 | along with this program; if not, write to the Free Software 15 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 | -------------------------------------------------------------------------------- /tools/nant/examples/Simple/Simple.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Demo/CustomUploadBar.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | public partial class CustomUploadBar : System.Web.UI.Page 9 | { 10 | protected void Page_Load(object sender, EventArgs e) 11 | { 12 | 13 | } 14 | 15 | protected void Button1_Click(object sender, EventArgs e) 16 | { 17 | if (FileUpload1.HasFile) 18 | { 19 | String dir = FileManager1.CurrentDirectory.PhysicalPath; 20 | String fileName = Path.GetFileName(FileUpload1.FileName); 21 | 22 | String filePath = Path.Combine(dir, fileName); 23 | 24 | if(File.Exists(filePath)) 25 | File.Delete(filePath); 26 | 27 | FileUpload1.PostedFile.SaveAs(filePath); 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /tools/nant/examples/UserTask/UserTask.cs: -------------------------------------------------------------------------------- 1 | using NAnt.Core; 2 | using NAnt.Core.Attributes; 3 | 4 | namespace NAnt.Examples.Tasks { 5 | [TaskName("usertask")] 6 | public class TestTask : Task { 7 | #region Private Instance Fields 8 | 9 | private string _message; 10 | 11 | #endregion Private Instance Fields 12 | 13 | #region Public Instance Properties 14 | 15 | [TaskAttribute("message", Required=true)] 16 | public string FileName { 17 | get { return _message; } 18 | set { _message = value; } 19 | } 20 | 21 | #endregion Public Instance Properties 22 | 23 | #region Override implementation of Task 24 | 25 | protected override void ExecuteTask() { 26 | Log(Level.Info, _message.ToUpper()); 27 | } 28 | 29 | #endregion Override implementation of Task 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Demo/FileDownload.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="FileDownload.aspx.cs" Inherits="FileDownload" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 | 5 |
6 | 8 |   (uncheck to allow) 9 |
10 |
11 | 12 |
13 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Demo/RootDirectories.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" CodeFile="~/RootDirectories.aspx.cs" Inherits="RootDirectories" Title="Untitled Page" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 | 5 |
6 | Select directory to view: 7 | 8 | My Documents 9 | My Pictures 10 | _hidden 11 | 12 |
13 |
14 | 15 | 16 |
17 |
18 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cs/WinForms/WinForms.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 8.00 2 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinForms", "WinForms.csproj", "{C0E751EE-4590-447A-B236-FF7E71A484DF}" 3 | ProjectSection(ProjectDependencies) = postProject 4 | EndProjectSection 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfiguration) = preSolution 8 | Debug = Debug 9 | Release = Release 10 | EndGlobalSection 11 | GlobalSection(ProjectConfiguration) = postSolution 12 | {C0E751EE-4590-447A-B236-FF7E71A484DF}.Debug.ActiveCfg = Debug|.NET 13 | {C0E751EE-4590-447A-B236-FF7E71A484DF}.Debug.Build.0 = Debug|.NET 14 | {C0E751EE-4590-447A-B236-FF7E71A484DF}.Release.ActiveCfg = Release|.NET 15 | {C0E751EE-4590-447A-B236-FF7E71A484DF}.Release.Build.0 = Release|.NET 16 | EndGlobalSection 17 | GlobalSection(ExtensibilityGlobals) = postSolution 18 | EndGlobalSection 19 | GlobalSection(ExtensibilityAddIns) = postSolution 20 | EndGlobalSection 21 | EndGlobal 22 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vb/WinForms/WinForms.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 8.00 2 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms", "WinForms.vbproj", "{B01CBC5B-0F63-4623-8B41-806E063D4F0C}" 3 | ProjectSection(ProjectDependencies) = postProject 4 | EndProjectSection 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfiguration) = preSolution 8 | Debug = Debug 9 | Release = Release 10 | EndGlobalSection 11 | GlobalSection(ProjectConfiguration) = postSolution 12 | {B01CBC5B-0F63-4623-8B41-806E063D4F0C}.Debug.ActiveCfg = Debug|.NET 13 | {B01CBC5B-0F63-4623-8B41-806E063D4F0C}.Debug.Build.0 = Debug|.NET 14 | {B01CBC5B-0F63-4623-8B41-806E063D4F0C}.Release.ActiveCfg = Release|.NET 15 | {B01CBC5B-0F63-4623-8B41-806E063D4F0C}.Release.Build.0 = Release|.NET 16 | EndGlobalSection 17 | GlobalSection(ExtensibilityGlobals) = postSolution 18 | EndGlobalSection 19 | GlobalSection(ExtensibilityAddIns) = postSolution 20 | EndGlobalSection 21 | EndGlobal 22 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vjs/WinForms/WinForms.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 8.00 2 | Project("{E6FDF86B-F3D1-11D4-8576-0002A516ECE8}") = "WinForms", "WinForms.vjsproj", "{84A7C512-CE63-4884-B9FB-DF863EEC3800}" 3 | ProjectSection(ProjectDependencies) = postProject 4 | EndProjectSection 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfiguration) = preSolution 8 | Debug = Debug 9 | Release = Release 10 | EndGlobalSection 11 | GlobalSection(ProjectConfiguration) = postSolution 12 | {84A7C512-CE63-4884-B9FB-DF863EEC3800}.Debug.ActiveCfg = Debug|.NET 13 | {84A7C512-CE63-4884-B9FB-DF863EEC3800}.Debug.Build.0 = Debug|.NET 14 | {84A7C512-CE63-4884-B9FB-DF863EEC3800}.Release.ActiveCfg = Release|.NET 15 | {84A7C512-CE63-4884-B9FB-DF863EEC3800}.Release.Build.0 = Release|.NET 16 | EndGlobalSection 17 | GlobalSection(ExtensibilityGlobals) = postSolution 18 | EndGlobalSection 19 | GlobalSection(ExtensibilityAddIns) = postSolution 20 | EndGlobalSection 21 | EndGlobal 22 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/WinForms.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 8.00 2 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WinForms", "WinForms.vcproj", "{11211AF9-DD1D-4151-844A-A2430B67DE3D}" 3 | ProjectSection(ProjectDependencies) = postProject 4 | EndProjectSection 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfiguration) = preSolution 8 | Debug = Debug 9 | Release = Release 10 | EndGlobalSection 11 | GlobalSection(ProjectConfiguration) = postSolution 12 | {11211AF9-DD1D-4151-844A-A2430B67DE3D}.Debug.ActiveCfg = Debug|Win32 13 | {11211AF9-DD1D-4151-844A-A2430B67DE3D}.Debug.Build.0 = Debug|Win32 14 | {11211AF9-DD1D-4151-844A-A2430B67DE3D}.Release.ActiveCfg = Release|Win32 15 | {11211AF9-DD1D-4151-844A-A2430B67DE3D}.Release.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(ExtensibilityGlobals) = postSolution 18 | EndGlobalSection 19 | GlobalSection(ExtensibilityAddIns) = postSolution 20 | EndGlobalSection 21 | EndGlobal 22 | -------------------------------------------------------------------------------- /tools/nant/examples/StyleTask/SimpleExtensionObject/SimpleExtension.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /IZWebFileManager/SortMode.cs: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2006 Igor Zelmanovich 2 | // 3 | // This program is free software; you can redistribute it and/or modify 4 | // it under the terms of the GNU General Public License as published by 5 | // the Free Software Foundation; either version 2 of the License, or 6 | // (at your option) any later version. 7 | // 8 | // This program is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU General Public License for more details. 12 | // 13 | // You should have received a copy of the GNU General Public License 14 | // along with this program; if not, write to the Free Software 15 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Text; 20 | 21 | namespace IZ.WebFileManager 22 | { 23 | public enum SortMode 24 | { 25 | Name, 26 | Size, 27 | Type, 28 | Modified 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /tools/nant/examples/ScriptTask/script-sample.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Demo/SelectedItems.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" 2 | CodeFile="SelectedItems.aspx.cs" Inherits="SelectedItems" %> 3 | 4 | <%@ Register TagPrefix="iz" Namespace="IZ.WebFileManager" Assembly="IZ.WebFileManager" %> 5 | 6 |
7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 |
16 |
17 | 18 | 19 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/cpp.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | Output file doesn't exist in ${expected.output} 25 | 26 | 27 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vjs/WinForms/vjs.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | Output file doesn't exist in ${expected.output} 25 | 26 | 27 | -------------------------------------------------------------------------------- /tools/nant/examples/UserTask/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cs/WinForms/cs.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | Output file doesn't exist in ${expected.output} 26 | 27 | 28 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vb/WinForms/vb.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | Output file doesn't exist in ${expected.output} 26 | 27 | 28 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vb/WinForms/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 20 | 21 | 22 | ' Version information for an assembly consists of the following four values: 23 | ' 24 | ' Major Version 25 | ' Minor Version 26 | ' Build Number 27 | ' Revision 28 | ' 29 | ' You can specify all the values or you can default the Build and Revision Numbers 30 | ' by using the '*' as shown below: 31 | 32 | 33 | -------------------------------------------------------------------------------- /Demo/CustomUploadBar.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CustomUploadBar.aspx.cs" Inherits="CustomUploadBar" MasterPageFile="~/MasterPage.master" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 | 5 | 6 |
7 | Use your own upload file control 8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 | Select file to upload:
18 | 19 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /IZWebFileManager/ToolbarImages.cs: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2006 Igor Zelmanovich 2 | // 3 | // This program is free software; you can redistribute it and/or modify 4 | // it under the terms of the GNU General Public License as published by 5 | // the Free Software Foundation; either version 2 of the License, or 6 | // (at your option) any later version. 7 | // 8 | // This program is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU General Public License for more details. 12 | // 13 | // You should have received a copy of the GNU General Public License 14 | // along with this program; if not, write to the Free Software 15 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Text; 20 | 21 | namespace IZ.WebFileManager 22 | { 23 | internal enum ToolbarImages 24 | { 25 | Copy, 26 | Move, 27 | Rename, 28 | Delete, 29 | View, 30 | FolderUp, 31 | Process, 32 | NewFolder, 33 | Refresh, 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /IZWebFileManager/FileManagerCommandTargets.cs: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2006 Igor Zelmanovich 2 | // 3 | // This program is free software; you can redistribute it and/or modify 4 | // it under the terms of the GNU General Public License as published by 5 | // the Free Software Foundation; either version 2 of the License, or 6 | // (at your option) any later version. 7 | // 8 | // This program is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU General Public License for more details. 12 | // 13 | // You should have received a copy of the GNU General Public License 14 | // along with this program; if not, write to the Free Software 15 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Text; 20 | 21 | namespace IZ.WebFileManager 22 | { 23 | [FlagsAttribute] 24 | public enum FileManagerCommandTargets 25 | { 26 | All = 0x07, 27 | File = 0x01, 28 | Directory = 0x02, 29 | Collection = 0x04, 30 | FileCollection = 0x05, 31 | DirectoryCollection = 0x06 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /IZWebFileManager/OuterBorderStyle.cs: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2006 Igor Zelmanovich 2 | // 3 | // This program is free software; you can redistribute it and/or modify 4 | // it under the terms of the GNU General Public License as published by 5 | // the Free Software Foundation; either version 2 of the License, or 6 | // (at your option) any later version. 7 | // 8 | // This program is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU General Public License for more details. 12 | // 13 | // You should have received a copy of the GNU General Public License 14 | // along with this program; if not, write to the Free Software 15 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Text; 20 | 21 | namespace IZ.WebFileManager 22 | { 23 | [Flags] 24 | public enum OuterBorderStyle 25 | { 26 | None = 0x00, 27 | Top = 0x01, 28 | Bottom = 0x02, 29 | Left = 0x04, 30 | Right = 0x08, 31 | TopAndBottom = 0x03, 32 | LeftAndRight = 0x0C, 33 | AllSides = 0x0F 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /IZWebFileManager/FileManagerCommands.cs: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2006 Igor Zelmanovich 2 | // 3 | // This program is free software; you can redistribute it and/or modify 4 | // it under the terms of the GNU General Public License as published by 5 | // the Free Software Foundation; either version 2 of the License, or 6 | // (at your option) any later version. 7 | // 8 | // This program is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU General Public License for more details. 12 | // 13 | // You should have received a copy of the GNU General Public License 14 | // along with this program; if not, write to the Free Software 15 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Text; 20 | 21 | namespace IZ.WebFileManager 22 | { 23 | internal enum FileManagerCommands 24 | { 25 | FileViewSort, 26 | FileViewNavigate, 27 | FileViewChangeView, 28 | SelectedItemsCopyTo, 29 | SelectedItemsMoveTo, 30 | SelectedItemsDelete, 31 | Rename, 32 | NewDocument, 33 | NewFolder, 34 | Refresh, 35 | ExecuteCommand 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vb/WinForms/Form1.vb: -------------------------------------------------------------------------------- 1 | Public Class Form1 2 | Inherits System.Windows.Forms.Form 3 | 4 | #Region " Windows Form Designer generated code " 5 | 6 | Public Sub New() 7 | MyBase.New() 8 | 9 | 'This call is required by the Windows Form Designer. 10 | InitializeComponent() 11 | 12 | 'Add any initialization after the InitializeComponent() call 13 | 14 | End Sub 15 | 16 | 'Form overrides dispose to clean up the component list. 17 | Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) 18 | If disposing Then 19 | If Not (components Is Nothing) Then 20 | components.Dispose() 21 | End If 22 | End If 23 | MyBase.Dispose(disposing) 24 | End Sub 25 | 26 | 'Required by the Windows Form Designer 27 | Private components As System.ComponentModel.IContainer 28 | 29 | 'NOTE: The following procedure is required by the Windows Form Designer 30 | 'It can be modified using the Windows Form Designer. 31 | 'Do not modify it using the code editor. 32 | Private Sub InitializeComponent() 33 | components = New System.ComponentModel.Container() 34 | Me.Text = "Form1" 35 | End Sub 36 | 37 | #End Region 38 | 39 | End Class 40 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/app.rc: -------------------------------------------------------------------------------- 1 | // Microsoft Visual C++ generated resource script. 2 | // 3 | #include "resource.h" 4 | 5 | #define APSTUDIO_READONLY_SYMBOLS 6 | 7 | ///////////////////////////////////////////////////////////////////////////// 8 | #undef APSTUDIO_READONLY_SYMBOLS 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // English (U.S.) resources 12 | 13 | 14 | ///////////////////////////////////////////////////////////////////////////// 15 | // 16 | // Icon 17 | // 18 | 19 | // Icon placed first or with lowest ID value becomes application icon 20 | 21 | LANGUAGE 9, 1 22 | #pragma code_page(1252) 23 | 1 ICON "app.ico" 24 | 25 | #ifdef APSTUDIO_INVOKED 26 | ///////////////////////////////////////////////////////////////////////////// 27 | // 28 | // TEXTINCLUDE 29 | // 30 | 31 | 1 TEXTINCLUDE 32 | BEGIN 33 | "resource.h\0" 34 | "\0" 35 | END 36 | 37 | #endif // APSTUDIO_INVOKED 38 | 39 | ///////////////////////////////////////////////////////////////////////////// 40 | 41 | 42 | 43 | #ifndef APSTUDIO_INVOKED 44 | ///////////////////////////////////////////////////////////////////////////// 45 | // 46 | // Generated from the TEXTINCLUDE 3 resource. 47 | // 48 | 49 | 50 | ///////////////////////////////////////////////////////////////////////////// 51 | #endif // not APSTUDIO_INVOKED 52 | 53 | -------------------------------------------------------------------------------- /tools/nant/examples/NUnit2/ReferenceAssemblies/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Demo/Nuvola.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 |
5 | Use ImagesFolder, ...ImageUrl and SpecialFolders properties to customize your icon theme 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 | -------------------------------------------------------------------------------- /tools/nant/examples/HelloWorld/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | APPLICATION : winforms Project Overview 3 | ======================================================================== 4 | 5 | AppWizard has created this winforms Application for you. 6 | 7 | This file contains a summary of what you will find in each of the files that 8 | make up your winforms application. 9 | 10 | winforms.vcproj 11 | This is the main project file for VC++ projects generated using an Application Wizard. 12 | It contains information about the version of Visual C++ that generated the file, and 13 | information about the platforms, configurations, and project features selected with the 14 | Application Wizard. 15 | 16 | Form1.cpp 17 | This is the main application source file. 18 | Contains the code to display the form. 19 | 20 | Form1.h 21 | Contains the implementation of your form class and InitializeComponent() function. 22 | 23 | AssemblyInfo.cpp 24 | Contains custom attributes for modifying assembly metadata. 25 | 26 | ///////////////////////////////////////////////////////////////////////////// 27 | Other standard files: 28 | 29 | StdAfx.h, StdAfx.cpp 30 | These files are used to build a precompiled header (PCH) file 31 | named Win32.pch and a precompiled types file named StdAfx.obj. 32 | 33 | ///////////////////////////////////////////////////////////////////////////// 34 | -------------------------------------------------------------------------------- /Demo/RootDirectories.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data; 3 | using System.Configuration; 4 | using System.Collections; 5 | using System.Web; 6 | using System.Web.Security; 7 | using System.Web.UI; 8 | using System.Web.UI.WebControls; 9 | using System.Web.UI.WebControls.WebParts; 10 | using System.Web.UI.HtmlControls; 11 | using IZ.WebFileManager; 12 | 13 | public partial class RootDirectories : System.Web.UI.Page 14 | { 15 | protected void Page_Load (object sender, EventArgs e) { 16 | if (!IsPostBack) 17 | { 18 | FileManager1.RootDirectories.Clear(); 19 | RootDirectory rootDirectory = new RootDirectory(); 20 | rootDirectory.DirectoryPath = DirectoryManager.GetRootDirectoryPath(Context); 21 | rootDirectory.Text = "My Documents"; 22 | FileManager1.RootDirectories.Add(rootDirectory); 23 | } 24 | 25 | } 26 | 27 | protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) 28 | { 29 | 30 | FileManager1.RootDirectories.Clear(); 31 | RootDirectory rootDirectory = new RootDirectory(); 32 | rootDirectory.DirectoryPath = DirectoryManager.GetRootDirectoryPath(Context) + DropDownList1.SelectedValue; 33 | rootDirectory.Text = DropDownList1.SelectedItem.Text; 34 | FileManager1.RootDirectories.Add(rootDirectory); 35 | 36 | FileManager1.Directory = null; 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /Demo/SelectedItems.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using IZ.WebFileManager; 4 | 5 | public partial class SelectedItems : System.Web.UI.Page 6 | { 7 | protected void Page_Load (object sender, EventArgs e) { 8 | 9 | } 10 | 11 | protected void LogSelected (object sender, EventArgs e) { 12 | SelectedItemsLog.Text = ""; 13 | 14 | if (FileManager1.SelectedItems.Length == 0) 15 | SelectedItemsLog.Text = "Please, select any item first.
"; 16 | else 17 | foreach (FileManagerItemInfo item in FileManager1.SelectedItems) { 18 | SelectedItemsLog.Text += item.VirtualPath + "
"; 19 | 20 | } 21 | } 22 | 23 | protected void LogCurrentDirectory (object sender, EventArgs e) { 24 | SelectedItemsLog.Text = ""; 25 | SelectedItemsLog.Text = FileManager1.CurrentDirectory.VirtualPath + "
"; 26 | } 27 | 28 | protected void Upload(object sender, EventArgs e) 29 | { 30 | SelectedItemsLog.Text = ""; 31 | if(FileUpload1.HasFile) 32 | { 33 | string name = Path.GetFileName(FileUpload1.FileName); 34 | string vdir = FileManager1.CurrentDirectory.VirtualPath; 35 | string dir = FileManager1.CurrentDirectory.PhysicalPath; 36 | 37 | FileUpload1.SaveAs(Path.Combine(dir, name)); 38 | 39 | SelectedItemsLog.Text = String.Format("File '{0}' was uploaded to '{1}' successfuly.
", name, vdir); 40 | } 41 | else 42 | SelectedItemsLog.Text = "Please, select file to upload.
"; 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /tools/nant/examples/Filters/ReplaceCharacter/default.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Demo/CancelOpenCommand.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 | 20 | 21 | 22 |
23 | Use SelectedItemsAction event to cancel navigation to specific folder or opening file.
24 | Try to navigate to "_hidden" folder or open "_settings.txt" file. 25 |
26 |
27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/elements/NAnt.Core.Types.RawXml.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | RawXml Element 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

RawXml

27 |

[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 |

Requirements

30 |
31 | Assembly: NAnt.Core (0.91.3881.0) 32 |
33 | 34 | -------------------------------------------------------------------------------- /Demo/App_Themes/Default/IZWebFileManager.VS2005.skin: -------------------------------------------------------------------------------- 1 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 2 | 3 | 14 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vjs/WinForms/Form1.jsl: -------------------------------------------------------------------------------- 1 | package WinForms; 2 | 3 | import System.Drawing.*; 4 | import System.Collections.*; 5 | import System.ComponentModel.*; 6 | import System.Windows.Forms.*; 7 | import System.Data.*; 8 | 9 | /** 10 | * Summary description for Form1. 11 | */ 12 | public class Form1 extends System.Windows.Forms.Form 13 | { 14 | /** 15 | * Required designer variable. 16 | */ 17 | private System.ComponentModel.Container components = null; 18 | 19 | public Form1() 20 | { 21 | // 22 | // Required for Windows Form Designer support 23 | // 24 | InitializeComponent(); 25 | 26 | // 27 | // TODO: Add any constructor code after InitializeComponent call 28 | // 29 | } 30 | 31 | /** 32 | * Clean up any resources being used. 33 | */ 34 | protected void Dispose(boolean disposing) 35 | { 36 | if (disposing) 37 | { 38 | if (components != null) 39 | { 40 | components.Dispose(); 41 | } 42 | } 43 | super.Dispose(disposing); 44 | } 45 | 46 | #region Windows Form Designer generated code 47 | /** 48 | * Required method for Designer support - do not modify 49 | * the contents of this method with the code editor. 50 | */ 51 | private void InitializeComponent() 52 | { 53 | this.components = new System.ComponentModel.Container(); 54 | this.set_Size(new System.Drawing.Size(300,300)); 55 | this.set_Text("Form1"); 56 | } 57 | #endregion 58 | 59 | /** 60 | * The main entry point for the application. 61 | */ 62 | /** @attribute System.STAThread() */ 63 | public static void main(String[] args) 64 | { 65 | Application.Run(new Form1()); 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Demo/Tango.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" %> 2 | <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %> 3 | 4 |
5 | Use ImagesFolder, ...ImageUrl and SpecialFolders properties to customize your icon theme 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 | -------------------------------------------------------------------------------- /tools/nant/bin/extensions/common/2.0/NAnt.MSBuild.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NAnt.MSBuild 5 | 6 | 7 | 8 | 9 | Functions to return information for MSBuild system. 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Test whether project is VS2005 project and could be built using <msbuild> 18 | 19 | The name or path of the project file (csproj, vbproj, ...). 20 | 21 | True, if it is msbuild project, False otherwise. 22 | 23 | 24 | 25 | 26 | Initialize is guaranteed to be called by MSBuild at the start of the build 27 | before any events are raised. 28 | 29 | 30 | 31 | 32 | Analyses Microsoft Visual Studio .NET 2005 (Whidbey) solution files. 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /IZWebFileManager/ThumbnailHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Web; 5 | using System.Drawing; 6 | using System.Drawing.Imaging; 7 | 8 | namespace IZ.WebFileManager 9 | { 10 | public class ThumbnailHandler : IHttpHandler 11 | { 12 | public bool IsReusable 13 | { 14 | get { return true; } 15 | } 16 | 17 | public void ProcessRequest(HttpContext context) 18 | { 19 | context.Response.ContentType = "image/jpeg"; 20 | int size = 92; 21 | 22 | string vPath = HttpUtility.UrlDecode(context.Request.Url.Query.Substring(1)); 23 | string path = context.Request.MapPath(vPath); 24 | 25 | using (var original = Image.FromFile(path)) 26 | { 27 | if (original.Width > size || original.Height > size) 28 | { 29 | int tw = original.Width > original.Height ? size : (original.Width * size) / original.Height; 30 | int th = original.Width > original.Height ? (original.Height * size) / original.Width : size; 31 | 32 | using (var thumb = original.GetThumbnailImage(tw, th, null, IntPtr.Zero)) 33 | { 34 | thumb.Save(context.Response.OutputStream, ImageFormat.Jpeg); 35 | 36 | } 37 | } 38 | else 39 | { 40 | original.Save(context.Response.OutputStream, ImageFormat.Jpeg); 41 | } 42 | } 43 | 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/Form1.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | namespace WinForms 5 | { 6 | using namespace System; 7 | using namespace System::ComponentModel; 8 | using namespace System::Collections; 9 | using namespace System::Windows::Forms; 10 | using namespace System::Data; 11 | using namespace System::Drawing; 12 | 13 | /// 14 | /// Summary for Form1 15 | /// 16 | /// WARNING: If you change the name of this class, you will need to change the 17 | /// 'Resource File Name' property for the managed resource compiler tool 18 | /// associated with all .resx files this class depends on. Otherwise, 19 | /// the designers will not be able to interact properly with localized 20 | /// resources associated with this form. 21 | /// 22 | public __gc class Form1 : public System::Windows::Forms::Form 23 | { 24 | public: 25 | Form1(void) 26 | { 27 | InitializeComponent(); 28 | } 29 | 30 | protected: 31 | void Dispose(Boolean disposing) 32 | { 33 | if (disposing && components) 34 | { 35 | components->Dispose(); 36 | } 37 | __super::Dispose(disposing); 38 | } 39 | 40 | private: 41 | /// 42 | /// Required designer variable. 43 | /// 44 | System::ComponentModel::Container * components; 45 | 46 | /// 47 | /// Required method for Designer support - do not modify 48 | /// the contents of this method with the code editor. 49 | /// 50 | void InitializeComponent(void) 51 | { 52 | this->components = new System::ComponentModel::Container(); 53 | this->Size = System::Drawing::Size(300,300); 54 | this->Text = S"Form1"; 55 | } 56 | }; 57 | } 58 | 59 | 60 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/platform.get-name().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | platform::get-name Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

platform::get-name

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the name of the platform on which NAnt is running.

29 |

Usage

30 | string platform::get-name() 31 | 32 |

33 |

Return Value

The name of the platform on which NAnt is running.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/platform.is-unix().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | platform::is-unix Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

platform::is-unix

27 |

[This is preliminary documentation and subject to change.]

28 |

Checks whether NAnt is running on Unix.

29 |

Usage

30 | bool platform::is-unix() 31 | 32 |

33 |

Return Value

34 | true if NAnt is running on Unix; otherwise, false.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 35 |
36 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cs/WinForms/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Drawing; 3 | using System.Collections; 4 | using System.ComponentModel; 5 | using System.Windows.Forms; 6 | using System.Data; 7 | 8 | namespace WinForms 9 | { 10 | /// 11 | /// Summary description for Form1. 12 | /// 13 | public class Form1 : System.Windows.Forms.Form 14 | { 15 | /// 16 | /// Required designer variable. 17 | /// 18 | private System.ComponentModel.Container components = null; 19 | 20 | public Form1() 21 | { 22 | // 23 | // Required for Windows Form Designer support 24 | // 25 | InitializeComponent(); 26 | 27 | // 28 | // TODO: Add any constructor code after InitializeComponent call 29 | // 30 | } 31 | 32 | /// 33 | /// Clean up any resources being used. 34 | /// 35 | protected override void Dispose( bool disposing ) 36 | { 37 | if( disposing ) 38 | { 39 | if (components != null) 40 | { 41 | components.Dispose(); 42 | } 43 | } 44 | base.Dispose( disposing ); 45 | } 46 | 47 | #region Windows Form Designer generated code 48 | /// 49 | /// Required method for Designer support - do not modify 50 | /// the contents of this method with the code editor. 51 | /// 52 | private void InitializeComponent() 53 | { 54 | this.components = new System.ComponentModel.Container(); 55 | this.Size = new System.Drawing.Size(300,300); 56 | this.Text = "Form1"; 57 | } 58 | #endregion 59 | 60 | /// 61 | /// The main entry point for the application. 62 | /// 63 | [STAThread] 64 | static void Main() 65 | { 66 | Application.Run(new Form1()); 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/platform.is-windows().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | platform::is-windows Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

platform::is-windows

27 |

[This is preliminary documentation and subject to change.]

28 |

Checks whether NAnt is running on Windows.

29 |

Usage

30 | bool platform::is-windows() 31 | 32 |

33 |

Return Value

34 | true if NAnt is running on Windows; otherwise, false.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 35 |
36 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/project.get-base-directory().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | project::get-base-directory Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

project::get-base-directory

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the base directory of the current project.

29 |

Usage

30 | string project::get-base-directory() 31 | 32 |

33 |

Return Value

The base directory of the current project.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/nant.get-base-directory().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | nant::get-base-directory Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

nant::get-base-directory

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the base directory of the appdomain in which NAnt is running.

29 |

Usage

30 | string nant::get-base-directory() 31 | 32 |

33 |

Return Value

The base directory of the appdomain in which NAnt is running.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/framework.get-runtime-framework().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | framework::get-runtime-framework Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

framework::get-runtime-framework

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the identifier of the runtime framework.

29 |

Usage

30 | string framework::get-runtime-framework() 31 | 32 |

33 |

Return Value

The identifier of the runtime framework.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/framework.get-target-framework().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | framework::get-target-framework Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

framework::get-target-framework

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the identifier of the current target framework.

29 |

Usage

30 | string framework::get-target-framework() 31 | 32 |

33 |

Return Value

The identifier of the current target framework.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/nant.get-assembly().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | nant::get-assembly Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

nant::get-assembly

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the NAnt assembly.

29 |

Usage

30 | 31 | Assembly nant::get-assembly() 32 | 33 |

34 |

Return Value

The NAnt assembly.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 35 |
36 | -------------------------------------------------------------------------------- /Demo/MasterPage.master: -------------------------------------------------------------------------------- 1 | <%@ Master Language="C#" %> 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | Untitled Page 15 | 16 | 17 |
18 |
19 | 20 | 21 | 36 | 37 | 38 | 42 | 43 |
22 |
23 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 |
39 | 40 | 41 |
44 | 45 |
46 |
47 | 48 | 49 | -------------------------------------------------------------------------------- /tools/nant/doc/help/elements/NAnt.Core.Filters.ChainableReader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ChainableReader Element 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

ChainableReader

27 |

[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.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 29 |
30 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/path.get-temp-path().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | path::get-temp-path Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

path::get-temp-path

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the path to the temporary directory.

29 |

Usage

30 | string path::get-temp-path() 31 | 32 |

33 |

Return Value

A String containing the path information of a temporary directory.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/platform.is-win32().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | platform::is-win32 Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

platform::is-win32

27 |

[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 |

Usage

33 | bool platform::is-win32() 34 | 35 |

36 |

Return Value

37 | true if NAnt is running on Windows; otherwise, false.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 38 |
39 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/project.get-name().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | project::get-name Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

project::get-name

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the name of the current project.

29 |

Usage

30 | string project::get-name() 31 | 32 |

33 |

Return Value

The name of the current project, or an empty String if no name is specified in the build file.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cs/WinForms/Form1.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | text/microsoft-resx 32 | 33 | 34 | 1.0.0.0 35 | 36 | 37 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 38 | 39 | 40 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 41 | 42 | 43 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vb/WinForms/Form1.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | text/microsoft-resx 32 | 33 | 34 | 1.0.0.0 35 | 36 | 37 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 38 | 39 | 40 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 41 | 42 | 43 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/cpp/WinForms/Form1.resX: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | text/microsoft-resx 32 | 33 | 34 | 1.0.0.0 35 | 36 | 37 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 38 | 39 | 40 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 41 | 42 | 43 | -------------------------------------------------------------------------------- /tools/nant/examples/Solution/vjs/WinForms/Form1.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | text/microsoft-resx 32 | 33 | 34 | 1.0.0.0 35 | 36 | 37 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 38 | 39 | 40 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 41 | 42 | 43 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/framework.get-description().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | framework::get-description Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

framework::get-description

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the description of the current target framework.

29 |

Usage

30 | string framework::get-description() 31 | 32 |

33 |

Return Value

The description of the current target framework.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |

See Also

framework::get-target-framework() 35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/directory.get-current-directory().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | directory::get-current-directory Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

directory::get-current-directory

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the current working directory.

29 |

Usage

30 | string directory::get-current-directory() 31 | 32 |

33 |

Return Value

A String containing the path of the current working directory.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/project.get-buildfile-path().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | project::get-buildfile-path Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

project::get-buildfile-path

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the local path to the build file.

29 |

Usage

30 | string project::get-buildfile-path() 31 | 32 |

33 |

Return Value

The local path of the build file, or an empty String if the project is not file backed.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /Demo/Web.config: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 22 | 23 | 24 | 29 | 30 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/path.get-temp-file-name().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | path::get-temp-file-name Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

path::get-temp-file-name

27 |

[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 |

Usage

30 | string path::get-temp-file-name() 31 | 32 |

33 |

Return Value

A String containing the name of the temporary file.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /Demo/Web.sitemap: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/dns.get-host-name().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | dns::get-host-name Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

dns::get-host-name

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the host name of the local computer.

29 |

Usage

30 | string dns::get-host-name() 31 | 32 |

33 |

Return Value

A string that contains the DNS host name of the local computer.

Exceptions

34 | The function will fail in any of the following circumstances: 35 |
  • An error is encountered when resolving the local host name.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 36 |
37 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/datetime.now().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | datetime::now Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

datetime::now

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets a DateTime that is the current local date and time on this computer.

29 |

Usage

30 | datetime datetime::now() 31 | 32 |

33 |

Return Value

A DateTime whose value is the current date and time.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/elements/NAnt.Core.Tasks.InElement.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | InElement Element 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

InElement

27 |

[This is preliminary documentation and subject to change.]

28 |

29 |

30 |

Nested Elements:

31 | 32 |

33 | 34 | 35 | <items> 36 |

37 |
38 |

39 |

40 |

41 | 42 | 43 | </items> 44 |

45 |

Requirements

46 |
47 | Assembly: NAnt.Core (0.91.3881.0) 48 |
49 | 50 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/environment.get-machine-name().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | environment::get-machine-name Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

environment::get-machine-name

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the NetBIOS name of this local computer.

29 |

Usage

30 | string environment::get-machine-name() 31 | 32 |

33 |

Return Value

The NetBIOS name of this local computer.

Exceptions

34 | The function will fail in any of the following circumstances: 35 |
  • The name of this computer cannot be obtained.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 36 |
37 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/framework.get-version().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | framework::get-version Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

framework::get-version

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the version of the current target framework.

29 |

Usage

30 | 31 | Version framework::get-version() 32 | 33 |

34 |

Return Value

The version of the current target framework.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 35 |

See Also

framework::get-target-framework() 36 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/environment.newline().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | environment::newline Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

environment::newline

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the newline string defined for this environment.

29 |

Usage

30 | string environment::newline() 31 | 32 |

33 |

Return Value

A string containing CRLF for non-Unix platforms, or LF for Unix platforms.

Examples

  • Output two lines in a log file.

    34 |             <echo file="build.log" message="First line${environment::newline()}Second line" />
    35 |                 

Requirements

Assembly: NAnt.Core (0.91.3881.0) 36 |
37 | -------------------------------------------------------------------------------- /tools/nant/doc/help/enums/NAnt.NUnit.Types.FormatterType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | FormatterType enum 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

FormatterType

27 |

[This is preliminary documentation and subject to change.]

28 |

The built-in formatter types.

29 |

Fields

30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
FieldDescription
Plain A plaintext formatter.
Xml An XML formatter.
45 |
46 |

Requirements

47 |
48 | Assembly: NAnt.NUnit (0.91.3881.0) 49 |
50 | 51 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/project.get-default-target().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | project::get-default-target Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

project::get-default-target

27 |

[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 |

Usage

30 | string project::get-default-target() 31 | 32 |

33 |

Return Value

The name of the target that will be executed when no other build targets are specified, or an empty String if no default target is defined for the project.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/framework.get-clr-version().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | framework::get-clr-version Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

framework::get-clr-version

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the Common Language Runtime version of the current target framework.

29 |

Usage

30 | 31 | Version framework::get-clr-version() 32 | 33 |

34 |

Return Value

The Common Language Runtime version of the current target framework.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 35 |

See Also

framework::get-target-framework() 36 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/target.get-current-target().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | target::get-current-target Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

target::get-current-target

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the name of the target being executed.

29 |

Usage

30 | string target::get-current-target() 31 | 32 |

33 |

Return Value

A String that contains the name of the target being executed.

Exceptions

34 | The function will fail in any of the following circumstances: 35 |
  • No target is being executed.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 36 |
37 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/math.round(System.Double).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | math::round Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

math::round

27 |

[This is preliminary documentation and subject to change.]

28 |

Rounds the value to the nearest whole number

29 |

Usage

30 | double math::round(value) 31 | 32 |

33 |

Parameters

34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
NameTypeDescription
valuedoubleNumber to be rounded, can be anything convertible to a double.
47 |
48 |

Return Value

Rounded value.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 49 |
50 | -------------------------------------------------------------------------------- /tools/nant/doc/help/introduction/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | NAnt - Introduction 9 | 10 | 11 | 12 | 13 | 17 | 20 | 21 | 22 |

Introduction

23 |

[This is preliminary documentation and subject to change.]

24 |

Requirements, installation, quick start, history of NAnt and other miscellaneous 25 | topics.

26 |

> Why NAnt?

27 |

> System 28 | Requirements

29 |

> Installation

30 |

> Getting 31 | Started

32 |

> Ant Users

33 |

> History

34 | 35 | 36 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/project.get-buildfile-uri().html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | project::get-buildfile-uri Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

project::get-buildfile-uri

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the Uri form of the build file.

29 |

Usage

30 | string project::get-buildfile-uri() 31 | 32 |

33 |

Return Value

The Uri form of the build file, or an empty String if the project is not file backed.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 34 |
35 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/task.exists(System.String).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | task::exists Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

task::exists

27 |

[This is preliminary documentation and subject to change.]

28 |

Checks whether the specified task exists.

29 |

Usage

30 | bool task::exists(name) 31 | 32 |

33 |

Parameters

34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
NameTypeDescription
namestringThe task to test.
47 |
48 |

Return Value

49 | true if the specified task exists; otherwise, false.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 50 |
51 | -------------------------------------------------------------------------------- /tools/nant/doc/help/introduction/fog0000000042.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | History 9 | 10 | 11 | 12 | 13 | 21 | 24 | 25 | 26 |

History

27 |

[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 | Ant Users 9 | 10 | 11 | 12 | 13 | 21 | 24 | 25 | 26 |

Ant Users

27 |

[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 |
    30 |
  • Tasks do not have to be in a target.  Tasks that appear directly in the project are executed inorder before any tasks in targets are executed.
  • 31 |
  • nant.onsuccess and nant.onfailure properties can be defined target names that will be executed at the end of the build.
  • 32 |
  • NAnt looks for the first file ending in .build instead of build.xml.
  • 33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/datetime.get-hour(System.DateTime).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | datetime::get-hour Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

datetime::get-hour

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the hour component of the specified date.

29 |

Usage

30 | int datetime::get-hour(date) 31 | 32 |

33 |

Parameters

34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
NameTypeDescription
datedatetimeThe date of which to get the hour component.
47 |
48 |

Return Value

The hour, between 0 and 23.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 49 |
50 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/datetime.get-year(System.DateTime).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | datetime::get-year Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

datetime::get-year

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the year component of the specified date.

29 |

Usage

30 | int datetime::get-year(date) 31 | 32 |

33 |

Parameters

34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
NameTypeDescription
datedatetimeThe date of which to get the year component.
47 |
48 |

Return Value

The year, between 1 and 9999.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 49 |
50 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/datetime.get-month(System.DateTime).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | datetime::get-month Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

datetime::get-month

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the month component of the specified date.

29 |

Usage

30 | int datetime::get-month(date) 31 | 32 |

33 |

Parameters

34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
NameTypeDescription
datedatetimeThe date of which to get the month component.
47 |
48 |

Return Value

The month, between 1 and 12.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 49 |
50 | -------------------------------------------------------------------------------- /tools/nant/doc/help/functions/datetime.get-day(System.DateTime).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | datetime::get-day Function 9 | 10 | 11 | 12 | 13 | 22 | 24 | 25 | 26 |

datetime::get-day

27 |

[This is preliminary documentation and subject to change.]

28 |

Gets the day of the month represented by the specified date.

29 |

Usage

30 | int datetime::get-day(date) 31 | 32 |

33 |

Parameters

34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
NameTypeDescription
datedatetimeThe date of which to get the day of the month.
47 |
48 |

Return Value

The day value, between 1 and 31.

Requirements

Assembly: NAnt.Core (0.91.3881.0) 49 |
50 | --------------------------------------------------------------------------------