roundhouse 0.5.0.241-mswin32 → 0.5.0.247-mswin32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/bin/rh.exe +0 -0
  2. data/lib/Antlr3.Runtime.dll +0 -0
  3. data/lib/Castle.Core.dll +0 -0
  4. data/lib/Castle.DynamicProxy2.dll +0 -0
  5. data/lib/DBDeploy_MSBuild.proj +71 -0
  6. data/lib/FluentNHibernate.dll +0 -0
  7. data/lib/Iesi.Collections.dll +0 -0
  8. data/lib/Microsoft.Build.Framework.dll +0 -0
  9. data/lib/Microsoft.SqlServer.ConnectionInfo.dll +0 -0
  10. data/lib/Microsoft.SqlServer.Management.Sdk.Sfc.dll +0 -0
  11. data/lib/Microsoft.SqlServer.Smo.dll +0 -0
  12. data/lib/NAnt.Core.dll +0 -0
  13. data/lib/NHibernate.ByteCode.Castle.dll +0 -0
  14. data/lib/NHibernate.Linq.dll +0 -0
  15. data/lib/NHibernate.dll +0 -0
  16. data/lib/StructureMap.dll +0 -0
  17. data/lib/dbdeploy_nant.deploy +67 -0
  18. data/lib/log4net.dll +0 -0
  19. data/lib/roundhouse.databases.mysql.dll +0 -0
  20. data/lib/roundhouse.databases.oledb.dll +0 -0
  21. data/lib/roundhouse.databases.oracle.dll +0 -0
  22. data/lib/roundhouse.databases.sqlserver.dll +0 -0
  23. data/lib/roundhouse.databases.sqlserver2000.dll +0 -0
  24. data/lib/roundhouse.databases.sqlserver2005.dll +0 -0
  25. data/lib/roundhouse.databases.sqlserver2008.dll +0 -0
  26. data/lib/roundhouse.dll +0 -0
  27. data/lib/roundhouse.nhibernate.dll +0 -0
  28. data/lib/roundhouse.tasks.dll +0 -0
  29. data/lib/samples.xml +157 -0
  30. metadata +35 -13
  31. data/lib/LEGAL/LICENSE +0 -174
  32. data/lib/LEGAL/NOTICE +0 -9
  33. data/lib/docs/GettingStarted.docx +0 -0
  34. data/lib/docs/RoundhousE.dot +0 -0
  35. data/lib/docs/RoundhousEPresentation.pptx +0 -0
  36. data/lib/docs/buildCustomization/package.post.step +0 -52
  37. data/lib/docs/logo/RoundhousE_Logo.jpg +0 -0
  38. data/lib/docs/logo/RoundhousE_Logo_NoBackground.gif +0 -0
  39. data/lib/docs/logo/roundhouse.ico +0 -0
data/bin/rh.exe CHANGED
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,71 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <Project DefaultTargets="DBDeploy" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <!-- Visit http://roundhouse.googlecode.com/ for details -->
4
+
5
+ <UsingTask AssemblyFile="roundhouse.tasks.dll" TaskName="roundhouse.tasks.Roundhouse" />
6
+
7
+ <PropertyGroup>
8
+ <Environment>LOCAL</Environment>
9
+ <DBServer>(local)</DBServer>
10
+ <DBName>YOURDATABASENAME</DBName>
11
+ <DBConnectionString>INSERTCONNECTIONSTRING</DBConnectionString>
12
+ <DBSqlFilesPath>..\..\db</DBSqlFilesPath>
13
+ <RepositoryPath>http://tellmewherethisis.com/svn/</RepositoryPath>
14
+ <VersionFile>..\_BuildInfo.xml</VersionFile>
15
+ <VersionFileXPath>//buildInfo/version</VersionFileXPath>
16
+ <DBRestore>false</DBRestore>
17
+ <DBRestorePath>\\tell\me\where\YOURDATABASENAME.bak</DBRestorePath>
18
+ <DBRestoreOptions>INSERTRESTOREOPTIONS</DBRestoreOptions>
19
+ <DBCreateDatabaseCustomScript></DBCreateDatabaseCustomScript>
20
+ <DBDrop>false</DBDrop>
21
+ <Interactive>true</Interactive>
22
+ </PropertyGroup>
23
+
24
+
25
+ <Target Name="ApplyDatabaseChanges">
26
+ <!--<Message Text="Running RoundhousE on $(DBServer) ($(DBName)). Looking in $(DBSqlFilesPath) for sql scripts." />-->
27
+ <Roundhouse
28
+ ServerName="$(DBServer)"
29
+ DatabaseName="$(DBName)"
30
+ ConnectionString="$(DBConnectionString)"
31
+ SqlFilesDirectory="$(DBSqlFilesPath)"
32
+ RepositoryPath="$(RepositoryPath)"
33
+ VersionFile="$(VersionFile)"
34
+ VersionXPath="$(VersionFileXPath)"
35
+ UpFolderName="up"
36
+ DownFolderName="down"
37
+ RunFirstAfterUpFolderName="runFirstAfterUp"
38
+ FunctionsFolderName="functions"
39
+ ViewsFolderName="views"
40
+ SprocsFolderName="sprocs"
41
+ PermissionsFolderName="permissions"
42
+ SchemaName="RoundhousE"
43
+ VersionTableName="Version"
44
+ ScriptsRunTableName="ScriptsRun"
45
+ ScriptsRunErrorsTableName="ScriptsRunErrors"
46
+ EnvironmentName="$(Environment)"
47
+ Restore="$(DBRestore)"
48
+ RestoreFromPath="$(DBRestorePath)"
49
+ RestoreCustomOptions="$(DBRestoreOptions)"
50
+ RestoreTimeout="900"
51
+ CreateDatabaseCustomScript="$(DBCreateDatabaseCustomScript)"
52
+ Drop="$(DBDrop)"
53
+ DoNotCreateDatabase="false"
54
+ OutputPath="C:\RoundhousE_runs"
55
+ WarnOnOneTimeScriptChanges="false"
56
+ Silent="false"
57
+ DatabaseType="roundhouse.databases.sqlserver2008.SqlServerDatabase, roundhouse.databases.sqlserver2008"
58
+ WithTransaction="false"
59
+ RecoveryModeSimple="false"
60
+ RunAllAnyTimeScripts="false"
61
+ />
62
+ </Target>
63
+
64
+ <Target Name = "DBDeploy"
65
+ DependsOnTargets="
66
+ ApplyDatabaseChanges;
67
+ "
68
+ >
69
+ </Target>
70
+
71
+ </Project>
Binary file
Binary file
Binary file
Binary file
data/lib/NAnt.Core.dll ADDED
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,67 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <project name="RoundhousEDeploy" default="go">
3
+ <!-- Visit http://roundhouse.googlecode.com/ for details -->
4
+ <property name="deploy.settings" value="__NONE__" overwrite="false" />
5
+ <include buildfile="${deploy.settings}" if="${file::exists(deploy.settings)}" />
6
+ <property name="dirs.current" value="${directory::get-parent-directory(project::get-buildfile-path())}" />
7
+ <property name="project.name" value="__PROJECT_NAME__" overwrite="false" />
8
+ <property name="folder.app.drop" value="${project.name}" overwrite="false" />
9
+ <property name="repository.path" value="__REPOSITORY_PATH__" overwrite="false" />
10
+ <property name="folder.database" value="__DATABASE_FOLDER_NAME__" overwrite="false" />
11
+ <property name="server.database" value="__DATABASE_SERVER__" overwrite="false" />
12
+ <property name="database.name" value="__DATABASE_NAME__" overwrite="false" />
13
+ <property name="connection.string" value="__DATABASE_NAME__" overwrite="false" />
14
+ <property name="environment" value="" overwrite="false" />
15
+ <property name="dirs.db" value="${dirs.current}\..\..\${folder.database}\${database.name}" overwrite="false" />
16
+ <property name="file.version" value="${project.name}.dll" overwrite="false" />
17
+ <property name="xml.file.version.xpath" value="//buildInfo/version" overwrite="false" />
18
+ <property name="path.file.version" value="${dirs.current}\..\..\${folder.app.drop}\${file.version}" overwrite="false" />
19
+ <property name="restore" value="false" overwrite="false" />
20
+ <property name="restore.from.path" value="" overwrite="false" />
21
+ <property name="restore.from.path.full" value="${path::get-full-path(restore.from.path)}" if="${restore.from.path!= ''}" />
22
+ <property name="restore.custom.options" value="" overwrite="false" />
23
+ <property name="create.database.custom.script" value="" overwrite="" />
24
+ <property name="drop" value="false" overwrite="false" />
25
+
26
+ <target name="go" depends="run_roundhouse" />
27
+
28
+ <target name="run_roundhouse">
29
+ <!--<echo message="Running RoundhousE on ${server.database} (${database.name}). Looking in ${dirs.db} for sql scripts." />-->
30
+ <roundhouse
31
+ serverName="${server.database}"
32
+ databaseName="${database.name}"
33
+ connectionString="${connection.string}"
34
+ sqlFilesDirectory="${dirs.db}"
35
+ repositoryPath="${repository.path}"
36
+ versionFile="${path.file.version}"
37
+ versionXPath="${xml.file.version.xpath}"
38
+ upFolderName="up"
39
+ downFolderName="down"
40
+ runFirstAfterUpFolderName="runFirstAfterUp"
41
+ functionsFolderName="functions"
42
+ viewsFolderName="views"
43
+ sprocsFolderName="sprocs"
44
+ permissionsFolderName="permissions"
45
+ schemaName="RoundhousE"
46
+ versionTableName="Version"
47
+ scriptsRunTableName="ScriptsRun"
48
+ scriptsRunErrorsTableName="ScriptsRunErrors"
49
+ environmentName="${environment}"
50
+ restore="${restore}"
51
+ restoreFromPath="${restore.from.path.full}"
52
+ restoreCustomOptions="${restore.custom.options}"
53
+ restoreTimeout="900"
54
+ createDatabaseCustomScript="${create.database.custom.script}"
55
+ drop="${drop}"
56
+ doNotCreateDatabase="false"
57
+ outputPath="C:\RoundhousE_runs"
58
+ warnOnOneTimeScriptChanges="false"
59
+ silent="false"
60
+ databaseType="roundhouse.databases.sqlserver2008.SqlServerDatabase, roundhouse.databases.sqlserver2008"
61
+ withTransaction="false"
62
+ recoveryModeSimple="false"
63
+ runAllAnyTimeScripts="false"
64
+ />
65
+ </target>
66
+
67
+ </project>
data/lib/log4net.dll ADDED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/lib/samples.xml ADDED
@@ -0,0 +1,157 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <deploymentTool>
3
+ <nant>
4
+
5
+ <!-- basic functionality, these are the required items-->
6
+ <roundhouse
7
+ databaseName="YOURDATABASENAME"
8
+ sqlFilesDirectory="..\..\db"
9
+ />
10
+
11
+ <!-- for restoring a database from a known location before applying changes -->
12
+ <roundhouse
13
+ serverName="(local)"
14
+ databaseName="YOURDATABASENAME"
15
+ sqlFilesDirectory="..\..\db"
16
+ restore="true"
17
+ restoreFromPath="\\tell\me\where\YOURDATABASENAME.bak"
18
+ restoreCustomOptions=""
19
+ />
20
+
21
+ <!-- versioning with a dll -->
22
+ <roundhouse
23
+ serverName="(local)"
24
+ databaseName="YOURDATABASENAME"
25
+ sqlFilesDirectory="..\..\db"
26
+ repositoryPath="http://tellmewherethisis.com/svn/"
27
+ versionFile="..\..\app\somefile.dll"
28
+ />
29
+
30
+ <!-- versioning with an xml file -->
31
+ <roundhouse
32
+ serverName="(local)"
33
+ databaseName="YOURDATABASENAME"
34
+ sqlFilesDirectory="..\..\db"
35
+ repositoryPath="http://tellmewherethisis.com/svn/"
36
+ versionFile="..\..\app\versionfile.xml"
37
+ versionXPath="//buildInfo/version"
38
+ />
39
+
40
+ <!-- FULL configuration, for changing conventions -->
41
+ <roundhouse
42
+ serverName="(local)"
43
+ databaseName="YOURDATABASENAME"
44
+ connectionString=""
45
+ sqlFilesDirectory="..\..\db"
46
+ repositoryPath="http://tellmewherethisis.com/svn/"
47
+ versionFile="_BuildInfo.xml"
48
+ versionXPath="//buildInfo/version"
49
+ upFolderName="up"
50
+ downFolderName="down"
51
+ runFirstAfterUpFolderName="runFirstAfterUp"
52
+ functionsFolderName="functions"
53
+ viewsFolderName="views"
54
+ sprocsFolderName="sprocs"
55
+ permissionsFolderName="permissions"
56
+ schemaName="RoundhousE"
57
+ versionTableName="Version"
58
+ scriptsRunTableName="ScriptsRun"
59
+ scriptsRunErrorsTableName="ScriptsRunErrors"
60
+ environmentName="LOCAL"
61
+ restore="false"
62
+ restoreFromPath="\\tell\me\where\YOURDATABASENAME.bak"
63
+ restoreCustomOptions=""
64
+ restoreTimeout=""
65
+ createDatabaseCustomScript=""
66
+ drop="false"
67
+ doNotCreateDatabase="false"
68
+ outputPath="C:\RoundhousE_runs"
69
+ warnOnOneTimeScriptChanges="false"
70
+ silent="false"
71
+ databaseType="roundhouse.databases.sqlserver2008.SqlServerDatabase, roundhouse.databases.sqlserver2008"
72
+ withTransaction="false"
73
+ recoveryModeSimple="false"
74
+ runAllAnyTimeScripts="false"
75
+ />
76
+
77
+ </nant>
78
+
79
+ <msbuild>
80
+
81
+ <!-- Set this next to your proj file for deployments and import this -->
82
+ <UsingTask AssemblyFile="roundhouse.tasks.dll" TaskName="roundhouse.tasks.Roundhouse" />
83
+
84
+ <!-- basic functionality, these are the required items-->
85
+ <Roundhouse
86
+ DatabaseName="YOURDATABASENAME"
87
+ SqlFilesDirectory="..\..\db"
88
+ />
89
+
90
+ <!-- for restoring a database from a known location before applying changes -->
91
+ <Roundhouse
92
+ ServerName="(local)"
93
+ DatabaseName="YOURDATABASENAME"
94
+ SqlFilesDirectory="..\..\db"
95
+ Restore="true"
96
+ RestoreFromPath="\\tell\me\where\YOURDATABASENAME.bak"
97
+ RestoreCustomOptions=""
98
+ />
99
+
100
+ <!-- versioning with a dll -->
101
+ <Roundhouse
102
+ ServerName="(local)"
103
+ DatabaseName="YOURDATABASENAME"
104
+ SqlFilesDirectory="..\..\db"
105
+ RepositoryPath="http://tellmewherethisis.com/svn/"
106
+ VersionFile="..\..\app\somefile.dll"
107
+ />
108
+
109
+ <!-- versioning with an xml file -->
110
+ <Roundhouse
111
+ ServerName="(local)"
112
+ DatabaseName="YOURDATABASENAME"
113
+ SqlFilesDirectory="..\..\db"
114
+ RepositoryPath="http://tellmewherethisis.com/svn/"
115
+ VersionFile="..\..\app\versionfile.xml"
116
+ VersionXPath="//buildInfo/version"
117
+ />
118
+
119
+ <!-- FULL configuration, for changing conventions -->
120
+ <Roundhouse
121
+ ServerName="(local)"
122
+ DatabaseName="YOURDATABASENAME"
123
+ ConnectionString=""
124
+ SqlFilesDirectory="..\..\db"
125
+ RepositoryPath="http://tellmewherethisis.com/svn/"
126
+ VersionFile="..\_BuildInfo.xml"
127
+ VersionXPath="//buildInfo/version"
128
+ UpFolderName="up"
129
+ DownFolderName="down"
130
+ RunFirstAfterUpFolderName="runFirstAfterUp"
131
+ FunctionsFolderName="functions"
132
+ ViewsFolderName="views"
133
+ SprocsFolderName="sprocs"
134
+ PermissionsFolderName="permissions"
135
+ SchemaName="RoundhousE"
136
+ VersionTableName="Version"
137
+ ScriptsRunTableName="ScriptsRun"
138
+ ScriptsRunErrorsTableName="ScriptsRunErrors"
139
+ EnvironmentName="LOCAL"
140
+ Restore="false"
141
+ RestoreFromPath="\\tell\me\where\YOURDATABASENAME.bak"
142
+ RestoreCustomOptions=""
143
+ RestoreTimeout=""
144
+ CreateDatabaseCustomScript=""
145
+ Drop="false"
146
+ DoNotCreateDatabase="false"
147
+ OutputPath="C:\RoundhousE_runs"
148
+ WarnOnOneTimeScriptChanges="false"
149
+ Silent="false"
150
+ DatabaseType="roundhouse.databases.sqlserver2008.SqlServerDatabase, roundhouse.databases.sqlserver2008"
151
+ WithTransaction="false"
152
+ RecoveryModeSimple="false"
153
+ RunAllAnyTimeScripts="false"
154
+ />
155
+
156
+ </msbuild>
157
+ </deploymentTool>
metadata CHANGED
@@ -1,22 +1,25 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roundhouse
3
3
  version: !ruby/object:Gem::Version
4
- hash: 389
4
+ hash: 393
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
9
  - 0
10
- - 241
11
- version: 0.5.0.241
10
+ - 247
11
+ version: 0.5.0.247
12
12
  platform: mswin32
13
13
  authors:
14
14
  - Rob "FerventCoder" Reynolds
15
+ - Pascal Mestdach
16
+ - Jochen Jonckheere
17
+ - Dru Sellers
15
18
  autorequire:
16
19
  bindir: bin
17
20
  cert_chain: []
18
21
 
19
- date: 2010-07-15 00:00:00 -05:00
22
+ date: 2010-07-20 00:00:00 -05:00
20
23
  default_executable:
21
24
  dependencies: []
22
25
 
@@ -29,15 +32,34 @@ extensions: []
29
32
  extra_rdoc_files: []
30
33
 
31
34
  files:
32
- - lib/docs/buildCustomization/package.post.step
33
- - lib/docs/GettingStarted.docx
34
- - lib/docs/logo/roundhouse.ico
35
- - lib/docs/logo/RoundhousE_Logo.jpg
36
- - lib/docs/logo/RoundhousE_Logo_NoBackground.gif
37
- - lib/docs/RoundhousE.dot
38
- - lib/docs/RoundhousEPresentation.pptx
39
- - lib/LEGAL/LICENSE
40
- - lib/LEGAL/NOTICE
35
+ - lib/Antlr3.Runtime.dll
36
+ - lib/Castle.Core.dll
37
+ - lib/Castle.DynamicProxy2.dll
38
+ - lib/DBDeploy_MSBuild.proj
39
+ - lib/dbdeploy_nant.deploy
40
+ - lib/FluentNHibernate.dll
41
+ - lib/Iesi.Collections.dll
42
+ - lib/log4net.dll
43
+ - lib/Microsoft.Build.Framework.dll
44
+ - lib/Microsoft.SqlServer.ConnectionInfo.dll
45
+ - lib/Microsoft.SqlServer.Management.Sdk.Sfc.dll
46
+ - lib/Microsoft.SqlServer.Smo.dll
47
+ - lib/NAnt.Core.dll
48
+ - lib/NHibernate.ByteCode.Castle.dll
49
+ - lib/NHibernate.dll
50
+ - lib/NHibernate.Linq.dll
51
+ - lib/roundhouse.databases.mysql.dll
52
+ - lib/roundhouse.databases.oledb.dll
53
+ - lib/roundhouse.databases.oracle.dll
54
+ - lib/roundhouse.databases.sqlserver.dll
55
+ - lib/roundhouse.databases.sqlserver2000.dll
56
+ - lib/roundhouse.databases.sqlserver2005.dll
57
+ - lib/roundhouse.databases.sqlserver2008.dll
58
+ - lib/roundhouse.dll
59
+ - lib/roundhouse.nhibernate.dll
60
+ - lib/roundhouse.tasks.dll
61
+ - lib/samples.xml
62
+ - lib/StructureMap.dll
41
63
  - bin/rh
42
64
  - bin/rh.exe
43
65
  has_rdoc: true
data/lib/LEGAL/LICENSE DELETED
@@ -1,174 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
data/lib/LEGAL/NOTICE DELETED
@@ -1,9 +0,0 @@
1
- =========================================================================
2
- == Example NOTICE file for use with the Apache License, Version 2.0, ==
3
- == in this case for the Apache httpd-2.0 distribution. ==
4
- =========================================================================
5
-
6
- UppercuTs
7
- Copyright 2007-2008 The Apache Software Foundation.
8
-
9
-
Binary file
Binary file
Binary file
@@ -1,52 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" ?>
2
- <project name="Packager" default="go">
3
- <property name="dirs.current" value="${directory::get-parent-directory(project::get-buildfile-path())}" />
4
- <property name="path.to.toplevel" value=".." />
5
- <property name="folder.build_scripts" value="build" overwrite="false" />
6
- <property name="folder.build_scripts_custom" value="build.custom" overwrite="false" />
7
- <property name="dirs.build_scripts_custom" value="${dirs.current}\${path.to.toplevel}\${folder.build_scripts_custom}" />
8
- <property name="folder.code_build" value="build_output" overwrite="false" />
9
- <property name="dirs.build" value="${dirs.current}\${path.to.toplevel}\${folder.code_build}" />
10
- <property name="folder.code_drop" value="code_drop" overwrite="false" />
11
- <property name="dirs.drop" value="${dirs.current}\${path.to.toplevel}\${folder.code_drop}" overwrite="false" />
12
- <property name="folder.app.drop" value="${project.name}" overwrite="false" />
13
- <property name="folder.database" value="__DATABASE_FOLDER_NAME__" overwrite="false" />
14
- <property name="folder.reports" value="${project.name}.Reports" overwrite="false" />
15
- <property name="folder.file_server" value="file.server" overwrite="false" />
16
- <property name="folder.environment_files" value="environment.files" overwrite="false" />
17
- <property name="folder.deployment" value="deployment" overwrite="false" />
18
- <property name="folder.settings" value="settings" overwrite="false" />
19
- <property name="folder.documentation" value="docs" overwrite="false" />
20
-
21
-
22
- <target name="go" depends="package_nant_in_deploy_folder, package_roundhouse_in_deploy_folder" description="Packaging" />
23
-
24
- <target name="package_nant_in_deploy_folder">
25
- <echo message="Moving NAnt over to deployment folder" />
26
- <copy todir="${dirs.drop}\${folder.deployment}\NAnt" >
27
- <fileset basedir="${dirs.current}\..\lib\NAnt">
28
- <exclude name="**\*.template" />
29
- <include name="**/*.*" />
30
- </fileset>
31
- </copy>
32
- </target>
33
-
34
- <target name="package_roundhouse_in_deploy_folder">
35
- <echo message="Moving RoundhousE over to deployment folder" />
36
- <copy todir="${dirs.drop}\${folder.deployment}\NAnt" >
37
- <fileset basedir="${dirs.current}\..\lib\RoundhousE">
38
- <include name="**/*.*" />
39
- </fileset>
40
- </copy>
41
- </target>
42
-
43
- <target name="copy_roundhouse_files_to_deploy_console">
44
- <echo message="Copying roundhouse assemblies to ${dirs.deployment}\Console."/>
45
- <copy todir="${dirs.deployment}\Console">
46
- <fileset basedir="${dirs.current}\..\lib\RoundhousE">
47
- <include name="**/*.*" />
48
- </fileset>
49
- </copy>
50
- </target>
51
-
52
- </project>
Binary file
Binary file