Skip to content

Commit

Permalink
- Updated license headers
Browse files Browse the repository at this point in the history
- Updated version codes
- Updated a bug in the gs1 interface which didn't create the external identifiers.
- Fixed received advice.
  • Loading branch information
justin-fyfe committed Jul 7, 2017
1 parent ded74ee commit 52bc314
Show file tree
Hide file tree
Showing 677 changed files with 5,840 additions and 2,977 deletions.
2 changes: 1 addition & 1 deletion ConfigTool/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.0.*")]
[assembly: AssemblyInformationalVersion("Dalhouse")]
[assembly: AssemblyInformationalVersion("Edmonton")]
[assembly: AssemblyFileVersion("0.8.0.0")]
21 changes: 20 additions & 1 deletion DatasetTool/Admin.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using MARC.HI.EHRS.SVC.Core;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-6-23
*/
using MARC.HI.EHRS.SVC.Core;
using MARC.HI.EHRS.SVC.Core.Services.Security;
using MohawkCollege.Util.Console.Parameters;
using OpenIZ.Core.Security;
Expand Down
33 changes: 16 additions & 17 deletions DatasetTool/App.config
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
- Copyright 2015-2017 Mohawk College of Applied Arts and Technology
-
-
- Licensed under the Apache License, Version 2.0 (the "License"); you
- may not use this file except in compliance with the License. You may
- obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-
-
- Licensed under the Apache License, Version 2.0 (the "License"); you
- may not use this file except in compliance with the License. You may
- obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- License for the specific language governing permissions and limitations under
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- License for the specific language governing permissions and limitations under
- the License.
-
-
- User: justi
- Date: 2016-8-2
-->
Expand Down Expand Up @@ -117,11 +116,11 @@
</marc.hi.ehrs.svc.core>
<connectionStrings>
<add name="TestDb" connectionString="Data Source=(LocalDb)\v12.0;Initial Catalog=OpenIZ; Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\Data\OpenIZ.mdf; Min Pool Size=10" providerName="System.Data.SqlClient" />
<add name="WHSE" connectionString="server=localhost; database=openiz_dw; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=1; " providerName="Npgsql"/>
<add name="PSQL_CLIN" connectionString="server=localhost; database=openiz; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=10; " providerName="Npgsql" />
<add name="PSQL_RW" connectionString="server=localhost; database=openiz; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=10; " providerName="Npgsql"/>
<add name="PSQL_RO" connectionString="server=localhost; database=openiz; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=10; " providerName="Npgsql"/>
<add name="GiisConnectionString" connectionString="Host=localhost;User Id=postgres;Password=postgres;DataBase=terrible;CommandTimeout=300;Timeout=100;maxpoolsize=1000" providerName="Npgsql" />
<add name="WHSE" connectionString="server=192.168.10.6; database=openiz_dw; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=1; " providerName="Npgsql"/>
<add name="PSQL_CLIN" connectionString="server=192.168.10.6; database=openiz; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=10; " providerName="Npgsql" />
<add name="PSQL_RW" connectionString="server=192.168.10.6; database=openiz; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=10; " providerName="Npgsql"/>
<add name="PSQL_RO" connectionString="server=192.168.10.6; database=openiz; user id=postgres; password=postgres; pooling=true; MinPoolSize=10; MaxPoolSize=30; Timeout=10; " providerName="Npgsql"/>
<add name="GiisConnectionString" connectionString="Host=192.168.10.6;User Id=postgres;Password=postgres;DataBase=terrible;CommandTimeout=300;Timeout=100;maxpoolsize=1000" providerName="Npgsql" />
</connectionStrings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/CommandAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-6-23
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
4 changes: 2 additions & 2 deletions DatasetTool/Csd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* License for the specific language governing permissions and limitations under
* the License.
*
* User: khannan
* Date: 2017-4-7
* User: justi
* Date: 2017-4-8
*/

//------------------------------------------------------------------------------
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/CsdImport.Organization.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-7-6
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
Expand Down
4 changes: 2 additions & 2 deletions DatasetTool/CsdImport.Place.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* License for the specific language governing permissions and limitations under
* the License.
*
* User: khannan
* Date: 2017-7-5
* User: justi
* Date: 2017-7-6
*/
using System;
using System.Collections.Generic;
Expand Down
4 changes: 2 additions & 2 deletions DatasetTool/CsdImport.PlaceService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* License for the specific language governing permissions and limitations under
* the License.
*
* User: khannan
* Date: 2017-7-5
* User: justi
* Date: 2017-7-6
*/
using System;
using System.Collections.Generic;
Expand Down
4 changes: 2 additions & 2 deletions DatasetTool/CsdImport.Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* License for the specific language governing permissions and limitations under
* the License.
*
* User: khannan
* Date: 2017-7-5
* User: justi
* Date: 2017-7-6
*/
using System;
using System.Collections.Generic;
Expand Down
25 changes: 12 additions & 13 deletions DatasetTool/CsdImport.cs
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: khannan
* Date: 2017-4-7
*
* User: justi
* Date: 2017-4-8
*/

using MARC.HI.EHRS.SVC.Core;
using MohawkCollege.Util.Console.Parameters;
using OpenIZ.Core;
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/Debugger/BreDebugger.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using MARC.HI.EHRS.SVC.Core;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-6-10
*/
using MARC.HI.EHRS.SVC.Core;
using OpenIZ.BusinessRules.JavaScript;
using OpenIZ.Core;
using System;
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/Debugger/Debug.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using MohawkCollege.Util.Console.Parameters;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-6-10
*/
using MohawkCollege.Util.Console.Parameters;
using OpenIZ.BusinessRules.JavaScript;
using System;
using System.Collections.Generic;
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/Debugger/DebuggerBase.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using MARC.HI.EHRS.SVC.Core;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-6-10
*/
using MARC.HI.EHRS.SVC.Core;
using MARC.HI.EHRS.SVC.Core.Services;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/Debugger/ProtoDebugger.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using MARC.HI.EHRS.SVC.Core;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-6-10
*/
using MARC.HI.EHRS.SVC.Core;
using OpenIZ.BusinessRules.JavaScript;
using OpenIZ.Core;
using System;
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/ExampleAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-4-14
*/
using System;

namespace OizDevTool
{
Expand Down
21 changes: 10 additions & 11 deletions DatasetTool/FakeDataGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
*
* User: justi
* Date: 2016-8-4
*/

using MARC.Everest.Threading;
using MARC.HI.EHRS.SVC.Core;
using MARC.HI.EHRS.SVC.Core.Services;
Expand Down
21 changes: 20 additions & 1 deletion DatasetTool/GiisImport.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using GIIS.DataLayer;
/*
* Copyright 2015-2017 Mohawk College of Applied Arts and Technology
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* User: justi
* Date: 2017-4-5
*/
using GIIS.DataLayer;
using MARC.HI.EHRS.SVC.Core;
using MARC.HI.EHRS.SVC.Core.Services;
using MohawkCollege.Util.Console.Parameters;
Expand Down
Loading

0 comments on commit 52bc314

Please sign in to comment.