├── .gitignore ├── .gitmodules ├── CODE-OF-CONDUCT.md ├── ChangeLog ├── LICENSE ├── Makefile ├── MonkeyWrench.Builder ├── .gitignore ├── BuildInfo.cs ├── Builder.cs ├── ChangeLog ├── MonkeyWrench.Builder.csproj ├── app.config └── packages.config ├── MonkeyWrench.CmdClient ├── Options.cs ├── README └── WrenchCmdClient.cs ├── MonkeyWrench.DataClasses ├── .gitignore ├── ChangeLog ├── CustomTypes.sql ├── Database │ ├── ChangeLog │ ├── DBAudit.cs │ ├── DBAudit.generated.cs │ ├── DBBuildBotStatus.cs │ ├── DBBuildBotStatus.generated.cs │ ├── DBCommand.cs │ ├── DBCommand.generated.cs │ ├── DBDeleteCondition.cs │ ├── DBEmailIdentity.cs │ ├── DBEmailIdentity.generated.cs │ ├── DBEnvironmentVariable.cs │ ├── DBEnvironmentVariable.generated.cs │ ├── DBFile.cs │ ├── DBFile.generated.cs │ ├── DBFileDeletionDirective.cs │ ├── DBFileDeletionDirective.generated.cs │ ├── DBFileLink.cs │ ├── DBFileLink.generated.cs │ ├── DBGitHubIdentity.cs │ ├── DBGitHubIdentity.generated.cs │ ├── DBHost.cs │ ├── DBHost.generated.cs │ ├── DBHostLane.cs │ ├── DBHostLane.generated.cs │ ├── DBHostLaneView.cs │ ├── DBHostLaneView.generated.cs │ ├── DBHostStatusView.generated.cs │ ├── DBIrcIdentity.cs │ ├── DBIrcIdentity.generated.cs │ ├── DBLane.cs │ ├── DBLane.generated.cs │ ├── DBLaneDeletionDirective.cs │ ├── DBLaneDeletionDirective.generated.cs │ ├── DBLaneDeletionDirectiveView.cs │ ├── DBLaneDeletionDirectiveView.generated.cs │ ├── DBLaneDependency.cs │ ├── DBLaneDependency.generated.cs │ ├── DBLaneDependencyCondition.cs │ ├── DBLaneNotification.cs │ ├── DBLaneNotification.generated.cs │ ├── DBLaneTag.cs │ ├── DBLaneTag.generated.cs │ ├── DBLanefile.cs │ ├── DBLanefile.generated.cs │ ├── DBLanefiles.cs │ ├── DBLanefiles.generated.cs │ ├── DBLogin.cs │ ├── DBLogin.generated.cs │ ├── DBLoginView.cs │ ├── DBLoginView.generated.cs │ ├── DBMasterHost.cs │ ├── DBMasterHost.generated.cs │ ├── DBMatchMode.cs │ ├── DBNotification.cs │ ├── DBNotification.generated.cs │ ├── DBNotificationMode.cs │ ├── DBNotificationType.cs │ ├── DBPerson.cs │ ├── DBPerson.generated.cs │ ├── DBQueueManagement.cs │ ├── DBRecord.cs │ ├── DBRelease.cs │ ├── DBRelease.generated.cs │ ├── DBRevision.cs │ ├── DBRevision.generated.cs │ ├── DBRevisionWork.cs │ ├── DBRevisionWork.generated.cs │ ├── DBRevisionWorkView.cs │ ├── DBRevisionWorkView.generated.cs │ ├── DBRevisionWorkView2.cs │ ├── DBRevisionWorkView2.generated.cs │ ├── DBState.cs │ ├── DBUserEmail.cs │ ├── DBUserEmail.generated.cs │ ├── DBView.cs │ ├── DBWork.cs │ ├── DBWork.generated.cs │ ├── DBWorkFile.cs │ ├── DBWorkFile.generated.cs │ ├── DBWorkFileView.cs │ ├── DBWorkFileView.generated.cs │ ├── DBWorkView2.cs │ └── DBWorkView2.generated.cs ├── Logic │ ├── BuildBotStatus.cs │ ├── BuildInfoEntry.cs │ ├── ChangeLog │ ├── FindHostResponse.cs │ ├── FindLaneResponse.cs │ ├── FindLaneWithDependenciesResponse.cs │ ├── FindRevisionResponse.cs │ ├── FrontPageResponse.cs │ ├── GetAdminInfoResponse.cs │ ├── GetAuditResponse.cs │ ├── GetBuildBotStatusResponse.cs │ ├── GetBuildInfoResponse.cs │ ├── GetCommandsResponse.cs │ ├── GetFilesForWorkResponse.cs │ ├── GetHostForEditResponse.cs │ ├── GetHostLanesResponse.cs │ ├── GetHostStatusResponse.cs │ ├── GetHostsResponse.cs │ ├── GetIdentitiesResponse.cs │ ├── GetLaneFileForEditResponse.cs │ ├── GetLaneForEditResponse.cs │ ├── GetLaneResponse.cs │ ├── GetLanesResponse.cs │ ├── GetLeftTreeDataResponse.cs │ ├── GetNotificationsResponse.cs │ ├── GetReleasesResponse.cs │ ├── GetRevisionWorkForLaneResponse.cs │ ├── GetRevisionsResponse.cs │ ├── GetUserResponse.cs │ ├── GetUsersResponse.cs │ ├── GetViewLaneDataResponse.cs │ ├── GetViewLaneFileHistoryDataResponse.cs │ ├── GetViewTableDataResponse.cs │ ├── GetViewWorkTableDataResponse.cs │ ├── GetWorkHostHistoryResponse.cs │ ├── LoginResponse.cs │ ├── ReportBuildBotStatusResponse.cs │ ├── ReportBuildStateResponse.cs │ ├── Roles.cs │ ├── WebServiceException.cs │ ├── WebServiceLogin.cs │ └── WebServiceResponse.cs ├── Makefile ├── MonkeyWrench.DataClasses.csproj ├── SqlToCSharp.cs ├── Utilities.cs ├── WebServices.Generated.cs ├── WebServices.cs └── packages.config ├── MonkeyWrench.Database.Manager ├── .gitignore ├── ChangeLog ├── Manager.cs ├── MonkeyWrench.Database.Manager.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── MonkeyWrench.Database ├── .gitignore ├── ChangeLog ├── DB.cs ├── DeletionDirectives.cs ├── Extensions │ ├── ChangeLog │ ├── DBCommand_Extensions.cs │ ├── DBEnvironmentVariable_Extensions.cs │ ├── DBFileDeletionDirective_Extensions.cs │ ├── DBFile_Extensions.cs │ ├── DBHost_Extensions.cs │ ├── DBLaneDeletionDirectiveView_Extensions.cs │ ├── DBLaneDeletionDirective_Extensions.cs │ ├── DBLaneDependency_Extensions.cs │ ├── DBLane_Extensions.cs │ ├── DBLanefile_Extensions.cs │ ├── DBLoginView_Extensions.cs │ ├── DBLogin_Extensions.cs │ ├── DBPerson_Extensions.cs │ ├── DBRecord_Extensions.cs │ ├── DBRevisionWorkView_Extensions.cs │ ├── DBRevisionWork_Extensions.cs │ ├── DBRevision_Extensions.cs │ ├── DBWorkFileView_Extensions.cs │ ├── DBWorkFile_Extensions.cs │ └── DBWork_Extensions.cs ├── MonkeyWrench.Database.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── MonkeyWrench.Scheduler ├── .gitignore ├── ChangeLog ├── MonkeyWrench.Scheduler.csproj ├── Updater.cs ├── app.config └── packages.config ├── MonkeyWrench.Test ├── .gitignore ├── Attributes.cs ├── ChangeLog ├── Database.cs ├── GitTest.cs ├── Helpers.cs ├── Makefile ├── MonkeyWrench.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── Runner.cs ├── SvnTest.cs ├── VCTest.cs └── app.config ├── MonkeyWrench.Web.JSON ├── Global.asax ├── Global.asax.cs ├── Lanes.ashx ├── Lanes.ashx.cs ├── MonkeyWrench.Web.JSON.csproj ├── RecentRevWorks.ashx ├── RecentRevWorks.ashx.cs ├── Utils.cs ├── packages.config └── web.config ├── MonkeyWrench.Web.UI ├── .gitignore ├── Admin.aspx ├── Admin.aspx.cs ├── Admin.aspx.designer.cs ├── BuildBotStatus.aspx ├── BuildBotStatus.aspx.cs ├── BuildBotStatus.aspx.designer.cs ├── BuildBotStatus.js ├── ChangeLog ├── Code │ ├── Authentication.cs │ ├── ChangeLog │ ├── LaneTreeNode.cs │ └── Utils.cs ├── Delete.aspx ├── Delete.aspx.cs ├── Delete.aspx.designer.cs ├── DownloadLatestFile.aspx ├── DownloadLatestFile.aspx.cs ├── DownloadLatestFile.aspx.designer.cs ├── EditHost.aspx ├── EditHost.aspx.cs ├── EditHost.aspx.designer.cs ├── EditHost.js ├── EditHosts.aspx ├── EditHosts.aspx.cs ├── EditHosts.aspx.designer.cs ├── EditHosts.js ├── EditLane.aspx ├── EditLane.aspx.cs ├── EditLane.aspx.designer.cs ├── EditLane.js ├── EditLaneFile.aspx ├── EditLaneFile.aspx.cs ├── EditLaneFile.aspx.designer.cs ├── EditLanes.aspx ├── EditLanes.aspx.cs ├── EditLanes.aspx.designer.cs ├── EditLanes.js ├── EnvironmentVariablesEditor.ascx ├── EnvironmentVariablesEditor.ascx.cs ├── EnvironmentVariablesEditor.ascx.designer.cs ├── ErrorPage.aspx ├── ErrorPage.aspx.cs ├── ErrorPage.aspx.designer.cs ├── GetData.cs ├── GetFile.aspx ├── GetFile.aspx.cs ├── GetFile.aspx.designer.cs ├── GetLatest.aspx ├── GetLatest.aspx.cs ├── GetLatest.aspx.designer.cs ├── GetManifest.aspx ├── GetManifest.aspx.cs ├── GetManifest.aspx.designer.cs ├── GetMetadata.aspx ├── GetMetadata.aspx.cs ├── GetMetadata.aspx.designer.cs ├── GetStatus.aspx ├── GetStatus.aspx.cs ├── GetStatus.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Helpers │ ├── AuthenticationHelper.cs │ ├── GitHubAuthenticationHelper.cs │ └── OauthDataProvider.cs ├── Identities.aspx ├── Identities.aspx.cs ├── Identities.aspx.designer.cs ├── Identities.js ├── Json.aspx ├── Json.aspx.cs ├── Json.aspx.designer.cs ├── Login.aspx ├── Login.aspx.cs ├── Login.aspx.designer.cs ├── Master.js ├── Master.master ├── Master.master.cs ├── Master.master.designer.cs ├── MonkeyWrench.Web.UI.csproj ├── MonkeyWrench.js ├── Notifications.aspx ├── Notifications.aspx.cs ├── Notifications.aspx.designer.cs ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings ├── Releases.aspx ├── Releases.aspx.cs ├── Releases.aspx.designer.cs ├── ReportCommit.aspx ├── ReportCommit.aspx.cs ├── ReportCommit.aspx.designer.cs ├── ReportGitHubCommit.aspx ├── ReportGitHubCommit.aspx.cs ├── ReportGitHubCommit.aspx.designer.cs ├── SelectLanes.aspx ├── SelectLanes.aspx.cs ├── SelectLanes.aspx.designer.cs ├── User.aspx ├── User.aspx.cs ├── User.aspx.designer.cs ├── User.js ├── Users.aspx ├── Users.aspx.cs ├── Users.aspx.designer.cs ├── ViewAuditEntries.aspx ├── ViewAuditEntries.aspx.cs ├── ViewAuditEntries.aspx.designer.cs ├── ViewHostHistory.aspx ├── ViewHostHistory.aspx.cs ├── ViewHostHistory.aspx.designer.cs ├── ViewHtmlReport.aspx ├── ViewHtmlReport.aspx.cs ├── ViewHtmlReport.aspx.designer.cs ├── ViewHtmlReportEmbedded.aspx ├── ViewHtmlReportEmbedded.aspx.cs ├── ViewHtmlReportEmbedded.aspx.designer.cs ├── ViewLane.aspx ├── ViewLane.aspx.cs ├── ViewLane.aspx.designer.cs ├── ViewLane.js ├── ViewLaneFileHistory.aspx ├── ViewLaneFileHistory.aspx.cs ├── ViewLaneFileHistory.aspx.designer.cs ├── ViewServerLog.aspx ├── ViewServerLog.aspx.cs ├── ViewServerLog.aspx.designer.cs ├── ViewTable.aspx ├── ViewTable.aspx.cs ├── ViewTable.aspx.designer.cs ├── ViewTable.js ├── ViewWorkTable.aspx ├── ViewWorkTable.aspx.cs ├── ViewWorkTable.aspx.designer.cs ├── clientaccesspolicy.xml ├── doc │ ├── ChangeLog │ ├── Configuration.html │ ├── EditLaneHelp.html │ ├── Faq.htm │ ├── Howto.html │ ├── NewServer.html │ ├── Source.html │ └── index.html ├── index.aspx ├── index.aspx.cs ├── index.aspx.designer.cs ├── packages.config ├── res │ ├── default.css │ ├── minus.gif │ ├── moonlight │ │ ├── favicon.ico │ │ ├── logo.png │ │ └── moonlight.css │ ├── plus.gif │ ├── skin.css │ ├── sorttable.js │ └── wrench │ │ ├── favicon.ico │ │ ├── logo.png │ │ └── wrench.css ├── robots.txt └── web.config ├── MonkeyWrench.Web.WebService ├── .gitignore ├── Authentication.cs ├── ChangeLog ├── Download.aspx ├── Download.aspx.cs ├── Download.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Maintenance.cs ├── Makefile ├── MonkeyWrench.Web.WebService.csproj ├── Notification.ashx ├── Notifications │ ├── EmailNotification.cs │ ├── GitHubNotification.cs │ ├── IrcNotification.cs │ └── Notifications.cs ├── README.md ├── Scheduler │ ├── Scheduler.cs │ ├── SchedulerBase.cs │ ├── SchedulerGIT.cs │ └── SchedulerSVN.cs ├── Upload.cs ├── WebNotification.cs ├── WebServices.asmx ├── WebServices.asmx.cs ├── WebServices.wsdl ├── WrenchBuild.cs ├── WsdlGenerator.cmd ├── WsdlGenerator.cs ├── WsdlGenerator.snk ├── WsdlGenerator.xml ├── packages.config └── web.config ├── MonkeyWrench.sln ├── MonkeyWrench ├── .gitignore ├── AssemblyInfo.cs.in ├── Async.cs ├── ChangeLog ├── Configuration.cs ├── Exceptions.cs ├── FileUtilities.cs ├── IDB.cs ├── Job.cs ├── JobWindows.cs ├── Lock.cs ├── Makefile ├── MimeTypes.cs ├── MonkeyWrench.csproj ├── Options.cs ├── Platform.cs ├── ProcessHelper.cs ├── ProcessHelperLinux.cs ├── ProcessHelperMac.cs ├── ProcessHelperWindows.cs ├── ProcessReader.cs ├── SynchronizedStreamWriter.cs ├── generate-assembly-info.rb └── packages.config ├── README ├── class └── lib │ ├── Npgsql.dll │ └── Npgsql.dll.mdb └── scripts ├── ChangeLog ├── build.sh ├── database.sql ├── dbcontrol.sh ├── getcfgvar.pl ├── moonbuilder-clean-tmp.sh ├── moonlight └── setenv.sh ├── postcommit-svn.sh ├── updatemono.sh ├── updater.sh └── web.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/Makefile -------------------------------------------------------------------------------- /MonkeyWrench.Builder/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | -------------------------------------------------------------------------------- /MonkeyWrench.Builder/BuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Builder/BuildInfo.cs -------------------------------------------------------------------------------- /MonkeyWrench.Builder/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Builder/Builder.cs -------------------------------------------------------------------------------- /MonkeyWrench.Builder/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Builder/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Builder/MonkeyWrench.Builder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Builder/MonkeyWrench.Builder.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Builder/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Builder/app.config -------------------------------------------------------------------------------- /MonkeyWrench.Builder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Builder/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.CmdClient/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.CmdClient/Options.cs -------------------------------------------------------------------------------- /MonkeyWrench.CmdClient/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.CmdClient/README -------------------------------------------------------------------------------- /MonkeyWrench.CmdClient/WrenchCmdClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.CmdClient/WrenchCmdClient.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/CustomTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/CustomTypes.sql -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBAudit.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBAudit.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBAudit.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBBuildBotStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBBuildBotStatus.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBBuildBotStatus.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBBuildBotStatus.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBCommand.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBCommand.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBCommand.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBDeleteCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBDeleteCondition.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBEmailIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBEmailIdentity.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBEmailIdentity.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBEmailIdentity.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBEnvironmentVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBEnvironmentVariable.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBEnvironmentVariable.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBEnvironmentVariable.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBFile.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBFile.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBFile.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBFileDeletionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBFileDeletionDirective.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBFileDeletionDirective.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBFileDeletionDirective.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBFileLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBFileLink.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBFileLink.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBFileLink.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBGitHubIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBGitHubIdentity.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBGitHubIdentity.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBGitHubIdentity.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHost.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHost.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHost.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHostLane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHostLane.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHostLane.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHostLane.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHostLaneView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHostLaneView.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHostLaneView.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHostLaneView.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBHostStatusView.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBHostStatusView.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBIrcIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBIrcIdentity.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBIrcIdentity.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBIrcIdentity.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLane.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLane.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLane.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDeletionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDeletionDirective.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDeletionDirective.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDeletionDirective.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDeletionDirectiveView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDeletionDirectiveView.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDeletionDirectiveView.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDeletionDirectiveView.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDependency.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDependency.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDependency.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneDependencyCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneDependencyCondition.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneNotification.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneNotification.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneNotification.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneTag.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLaneTag.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLaneTag.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLanefile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLanefile.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLanefile.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLanefile.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLanefiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLanefiles.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLanefiles.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLanefiles.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLogin.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLogin.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLogin.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLoginView.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBLoginView.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBLoginView.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBMasterHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBMasterHost.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBMasterHost.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBMasterHost.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBMatchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBMatchMode.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBNotification.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBNotification.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBNotification.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBNotificationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBNotificationMode.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBNotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBNotificationType.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBPerson.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBPerson.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBPerson.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBQueueManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBQueueManagement.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRecord.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRelease.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRelease.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRelease.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevision.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevision.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevision.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevisionWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevisionWork.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevisionWork.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevisionWork.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevisionWorkView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevisionWorkView.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevisionWorkView.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevisionWorkView.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevisionWorkView2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevisionWorkView2.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBRevisionWorkView2.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBRevisionWorkView2.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBState.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBUserEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBUserEmail.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBUserEmail.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBUserEmail.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBView.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWork.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWork.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWork.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWorkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWorkFile.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWorkFile.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWorkFile.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWorkFileView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWorkFileView.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWorkFileView.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWorkFileView.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWorkView2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWorkView2.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Database/DBWorkView2.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Database/DBWorkView2.generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/BuildBotStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/BuildBotStatus.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/BuildInfoEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/BuildInfoEntry.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/FindHostResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/FindHostResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/FindLaneResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/FindLaneResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/FindLaneWithDependenciesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/FindLaneWithDependenciesResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/FindRevisionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/FindRevisionResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/FrontPageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/FrontPageResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetAdminInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetAdminInfoResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetAuditResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetAuditResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetBuildBotStatusResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetBuildBotStatusResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetBuildInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetBuildInfoResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetCommandsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetCommandsResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetFilesForWorkResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetFilesForWorkResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetHostForEditResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetHostForEditResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetHostLanesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetHostLanesResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetHostStatusResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetHostStatusResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetHostsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetHostsResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetIdentitiesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetIdentitiesResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetLaneFileForEditResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetLaneFileForEditResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetLaneForEditResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetLaneForEditResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetLaneResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetLaneResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetLanesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetLanesResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetLeftTreeDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetLeftTreeDataResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetNotificationsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetNotificationsResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetReleasesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetReleasesResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetRevisionWorkForLaneResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetRevisionWorkForLaneResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetRevisionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetRevisionsResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetUserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetUserResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetUsersResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetUsersResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetViewLaneDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetViewLaneDataResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetViewLaneFileHistoryDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetViewLaneFileHistoryDataResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetViewTableDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetViewTableDataResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetViewWorkTableDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetViewWorkTableDataResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/GetWorkHostHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/GetWorkHostHistoryResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/LoginResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/LoginResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/ReportBuildBotStatusResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/ReportBuildBotStatusResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/ReportBuildStateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/ReportBuildStateResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/Roles.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/WebServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/WebServiceException.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/WebServiceLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/WebServiceLogin.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Logic/WebServiceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Logic/WebServiceResponse.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Makefile -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/MonkeyWrench.DataClasses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/MonkeyWrench.DataClasses.csproj -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/SqlToCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/SqlToCSharp.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/Utilities.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/WebServices.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/WebServices.Generated.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/WebServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/WebServices.cs -------------------------------------------------------------------------------- /MonkeyWrench.DataClasses/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.DataClasses/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database.Manager/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database.Manager/Manager.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/MonkeyWrench.Database.Manager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database.Manager/MonkeyWrench.Database.Manager.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database.Manager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database.Manager/app.config -------------------------------------------------------------------------------- /MonkeyWrench.Database.Manager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database.Manager/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Database/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | -------------------------------------------------------------------------------- /MonkeyWrench.Database/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Database/DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/DB.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/DeletionDirectives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/DeletionDirectives.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBCommand_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBCommand_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBEnvironmentVariable_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBEnvironmentVariable_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBFileDeletionDirective_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBFileDeletionDirective_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBFile_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBFile_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBHost_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBHost_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLaneDeletionDirectiveView_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLaneDeletionDirectiveView_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLaneDeletionDirective_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLaneDeletionDirective_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLaneDependency_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLaneDependency_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLane_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLane_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLanefile_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLanefile_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLoginView_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLoginView_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBLogin_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBLogin_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBPerson_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBPerson_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBRecord_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBRecord_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBRevisionWorkView_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBRevisionWorkView_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBRevisionWork_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBRevisionWork_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBRevision_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBRevision_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBWorkFileView_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBWorkFileView_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBWorkFile_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBWorkFile_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/Extensions/DBWork_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Extensions/DBWork_Extensions.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/MonkeyWrench.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/MonkeyWrench.Database.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Database/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MonkeyWrench.Database/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Database/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Scheduler/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | 5 | -------------------------------------------------------------------------------- /MonkeyWrench.Scheduler/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Scheduler/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Scheduler/MonkeyWrench.Scheduler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Scheduler/MonkeyWrench.Scheduler.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Scheduler/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Scheduler/Updater.cs -------------------------------------------------------------------------------- /MonkeyWrench.Scheduler/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Scheduler/app.config -------------------------------------------------------------------------------- /MonkeyWrench.Scheduler/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Scheduler/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Test/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | -------------------------------------------------------------------------------- /MonkeyWrench.Test/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/Attributes.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Test/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/Database.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/GitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/GitTest.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/Helpers.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/Makefile -------------------------------------------------------------------------------- /MonkeyWrench.Test/MonkeyWrench.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/MonkeyWrench.Test.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/Runner.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/SvnTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/SvnTest.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/VCTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/VCTest.cs -------------------------------------------------------------------------------- /MonkeyWrench.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Test/app.config -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="MonkeyWrench.Web.JSON.Global" %> 2 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/Global.asax.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/Lanes.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" Class="MonkeyWrench.Web.JSON.Lanes" %> 2 | 3 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/Lanes.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/Lanes.ashx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/MonkeyWrench.Web.JSON.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/MonkeyWrench.Web.JSON.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/RecentRevWorks.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" Class="MonkeyWrench.Web.JSON.RecentRevWorks" %> 2 | 3 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/RecentRevWorks.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/RecentRevWorks.ashx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/Utils.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Web.JSON/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.JSON/web.config -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.user 4 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Admin.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Admin.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Admin.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Admin.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Admin.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Admin.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/BuildBotStatus.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/BuildBotStatus.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/BuildBotStatus.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/BuildBotStatus.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/BuildBotStatus.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/BuildBotStatus.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/BuildBotStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/BuildBotStatus.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Code/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Code/Authentication.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Code/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Code/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Code/LaneTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Code/LaneTreeNode.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Code/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Code/Utils.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Delete.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Delete.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Delete.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Delete.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Delete.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Delete.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/DownloadLatestFile.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/DownloadLatestFile.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/DownloadLatestFile.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/DownloadLatestFile.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/DownloadLatestFile.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/DownloadLatestFile.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHost.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHost.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHost.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHost.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHost.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHost.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHost.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHosts.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHosts.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHosts.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHosts.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHosts.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHosts.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditHosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditHosts.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLane.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLane.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLane.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLane.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLane.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLane.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLane.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLaneFile.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLaneFile.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLaneFile.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLaneFile.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLaneFile.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLaneFile.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLanes.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLanes.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLanes.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLanes.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLanes.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLanes.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EditLanes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EditLanes.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EnvironmentVariablesEditor.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EnvironmentVariablesEditor.ascx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EnvironmentVariablesEditor.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EnvironmentVariablesEditor.ascx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/EnvironmentVariablesEditor.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/EnvironmentVariablesEditor.ascx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ErrorPage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ErrorPage.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ErrorPage.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ErrorPage.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ErrorPage.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ErrorPage.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetData.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetFile.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetFile.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetFile.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetFile.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetFile.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetFile.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetLatest.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetLatest.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetLatest.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetLatest.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetLatest.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetLatest.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetManifest.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetManifest.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetManifest.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetManifest.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetManifest.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetManifest.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetMetadata.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetMetadata.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetMetadata.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetMetadata.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetMetadata.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetMetadata.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetStatus.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetStatus.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetStatus.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetStatus.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/GetStatus.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/GetStatus.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Global.asax -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Global.asax.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Helpers/AuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Helpers/AuthenticationHelper.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Helpers/GitHubAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Helpers/GitHubAuthenticationHelper.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Helpers/OauthDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Helpers/OauthDataProvider.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Identities.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Identities.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Identities.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Identities.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Identities.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Identities.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Identities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Identities.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Json.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Json.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Json.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Json.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Json.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Json.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Login.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Login.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Login.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Login.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Login.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Login.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Master.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Master.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Master.master -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Master.master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Master.master.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Master.master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Master.master.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/MonkeyWrench.Web.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/MonkeyWrench.Web.UI.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/MonkeyWrench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/MonkeyWrench.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Notifications.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Notifications.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Notifications.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Notifications.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Notifications.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Notifications.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Properties/Settings.settings -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Releases.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Releases.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Releases.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Releases.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Releases.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Releases.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ReportCommit.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ReportCommit.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ReportCommit.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ReportCommit.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ReportCommit.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ReportCommit.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ReportGitHubCommit.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ReportGitHubCommit.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ReportGitHubCommit.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ReportGitHubCommit.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ReportGitHubCommit.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ReportGitHubCommit.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/SelectLanes.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/SelectLanes.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/SelectLanes.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/SelectLanes.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/SelectLanes.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/SelectLanes.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/User.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/User.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/User.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/User.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/User.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/User.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/User.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Users.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Users.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Users.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Users.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/Users.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/Users.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewAuditEntries.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewAuditEntries.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewAuditEntries.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewAuditEntries.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewAuditEntries.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewAuditEntries.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHostHistory.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHostHistory.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHostHistory.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHostHistory.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHostHistory.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHostHistory.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHtmlReport.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHtmlReport.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHtmlReport.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHtmlReport.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHtmlReport.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHtmlReport.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHtmlReportEmbedded.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHtmlReportEmbedded.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHtmlReportEmbedded.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHtmlReportEmbedded.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewHtmlReportEmbedded.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewHtmlReportEmbedded.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLane.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLane.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLane.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLane.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLane.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLane.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLane.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLaneFileHistory.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLaneFileHistory.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLaneFileHistory.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLaneFileHistory.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewLaneFileHistory.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewLaneFileHistory.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewServerLog.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewServerLog.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewServerLog.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewServerLog.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewServerLog.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewServerLog.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewTable.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewTable.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewTable.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewTable.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewTable.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewTable.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewTable.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewWorkTable.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewWorkTable.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewWorkTable.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewWorkTable.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/ViewWorkTable.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/ViewWorkTable.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/clientaccesspolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/clientaccesspolicy.xml -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/Configuration.html -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/EditLaneHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/EditLaneHelp.html -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/Faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/Faq.htm -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/Howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/Howto.html -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/NewServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/NewServer.html -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/Source.html -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/doc/index.html -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/index.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/index.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/index.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/index.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/index.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/default.css -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/minus.gif -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/moonlight/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/moonlight/favicon.ico -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/moonlight/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/moonlight/logo.png -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/moonlight/moonlight.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/plus.gif -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/skin.css -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/sorttable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/sorttable.js -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/wrench/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/wrench/favicon.ico -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/wrench/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/wrench/logo.png -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/res/wrench/wrench.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/res/wrench/wrench.css -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.UI/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.UI/web.config -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Authentication.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Download.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Download.aspx -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Download.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Download.aspx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Download.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Download.aspx.designer.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Global.asax -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Global.asax.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Maintenance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Maintenance.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Makefile -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/MonkeyWrench.Web.WebService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/MonkeyWrench.Web.WebService.csproj -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Notification.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Notification.ashx -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Notifications/EmailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Notifications/EmailNotification.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Notifications/GitHubNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Notifications/GitHubNotification.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Notifications/IrcNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Notifications/IrcNotification.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Notifications/Notifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Notifications/Notifications.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/README.md -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Scheduler/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Scheduler/Scheduler.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Scheduler/SchedulerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Scheduler/SchedulerBase.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Scheduler/SchedulerGIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Scheduler/SchedulerGIT.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Scheduler/SchedulerSVN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Scheduler/SchedulerSVN.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/Upload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/Upload.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WebNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WebNotification.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WebServices.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WebServices.asmx -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WebServices.asmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WebServices.asmx.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WebServices.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WebServices.wsdl -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WrenchBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WrenchBuild.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WsdlGenerator.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WsdlGenerator.cmd -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WsdlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WsdlGenerator.cs -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WsdlGenerator.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WsdlGenerator.snk -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/WsdlGenerator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/WsdlGenerator.xml -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/packages.config -------------------------------------------------------------------------------- /MonkeyWrench.Web.WebService/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.Web.WebService/web.config -------------------------------------------------------------------------------- /MonkeyWrench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench.sln -------------------------------------------------------------------------------- /MonkeyWrench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/.gitignore -------------------------------------------------------------------------------- /MonkeyWrench/AssemblyInfo.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/AssemblyInfo.cs.in -------------------------------------------------------------------------------- /MonkeyWrench/Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Async.cs -------------------------------------------------------------------------------- /MonkeyWrench/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/ChangeLog -------------------------------------------------------------------------------- /MonkeyWrench/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Configuration.cs -------------------------------------------------------------------------------- /MonkeyWrench/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Exceptions.cs -------------------------------------------------------------------------------- /MonkeyWrench/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/FileUtilities.cs -------------------------------------------------------------------------------- /MonkeyWrench/IDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/IDB.cs -------------------------------------------------------------------------------- /MonkeyWrench/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Job.cs -------------------------------------------------------------------------------- /MonkeyWrench/JobWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/JobWindows.cs -------------------------------------------------------------------------------- /MonkeyWrench/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Lock.cs -------------------------------------------------------------------------------- /MonkeyWrench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Makefile -------------------------------------------------------------------------------- /MonkeyWrench/MimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/MimeTypes.cs -------------------------------------------------------------------------------- /MonkeyWrench/MonkeyWrench.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/MonkeyWrench.csproj -------------------------------------------------------------------------------- /MonkeyWrench/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Options.cs -------------------------------------------------------------------------------- /MonkeyWrench/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/Platform.cs -------------------------------------------------------------------------------- /MonkeyWrench/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/ProcessHelper.cs -------------------------------------------------------------------------------- /MonkeyWrench/ProcessHelperLinux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/ProcessHelperLinux.cs -------------------------------------------------------------------------------- /MonkeyWrench/ProcessHelperMac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/ProcessHelperMac.cs -------------------------------------------------------------------------------- /MonkeyWrench/ProcessHelperWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/ProcessHelperWindows.cs -------------------------------------------------------------------------------- /MonkeyWrench/ProcessReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/ProcessReader.cs -------------------------------------------------------------------------------- /MonkeyWrench/SynchronizedStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/SynchronizedStreamWriter.cs -------------------------------------------------------------------------------- /MonkeyWrench/generate-assembly-info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/generate-assembly-info.rb -------------------------------------------------------------------------------- /MonkeyWrench/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/MonkeyWrench/packages.config -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | See MonkeyWrench.Web.UI/doc/index.html 2 | 3 | -------------------------------------------------------------------------------- /class/lib/Npgsql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/class/lib/Npgsql.dll -------------------------------------------------------------------------------- /class/lib/Npgsql.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/class/lib/Npgsql.dll.mdb -------------------------------------------------------------------------------- /scripts/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/ChangeLog -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/database.sql -------------------------------------------------------------------------------- /scripts/dbcontrol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/dbcontrol.sh -------------------------------------------------------------------------------- /scripts/getcfgvar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/getcfgvar.pl -------------------------------------------------------------------------------- /scripts/moonbuilder-clean-tmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/moonbuilder-clean-tmp.sh -------------------------------------------------------------------------------- /scripts/moonlight/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/moonlight/setenv.sh -------------------------------------------------------------------------------- /scripts/postcommit-svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/postcommit-svn.sh -------------------------------------------------------------------------------- /scripts/updatemono.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/updatemono.sh -------------------------------------------------------------------------------- /scripts/updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/updater.sh -------------------------------------------------------------------------------- /scripts/web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/monkeywrench/HEAD/scripts/web.sh --------------------------------------------------------------------------------