Skip to content

Commit 0e23feb

Browse files
committed
Corrected licensing information in a few places.
1 parent b616fec commit 0e23feb

File tree

104 files changed

+361
-2548
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+361
-2548
lines changed

EmberLib.net/BerLib/BerDefinitions.cs

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;
@@ -77,7 +66,7 @@ public static class BerType
7766
/// ASN.1 type INTEGER
7867
/// </summary>
7968
public const uint Integer = 2;
80-
69+
8170
/// <summary>
8271
/// ASN.1 type BIT STRING
8372
/// </summary>
@@ -97,7 +86,7 @@ public static class BerType
9786
/// ASN.1 type OBJECT IDENTIFIER
9887
/// </summary>
9988
public const uint ObjectIdentifier = 6;
100-
89+
10190
/// <summary>
10291
/// ASN.1 type ObjectDescriptor
10392
/// </summary>
@@ -107,7 +96,7 @@ public static class BerType
10796
/// ASN.1 type EXTERNAL
10897
/// </summary>
10998
public const uint External = 8;
110-
99+
111100
/// <summary>
112101
/// ASN.1 type REAL
113102
/// </summary>
@@ -122,7 +111,7 @@ public static class BerType
122111
/// ASN.1 type EMBEDDED PDV
123112
/// </summary>
124113
public const uint EmbeddedPdv = 11;
125-
114+
126115
/// <summary>
127116
/// ASN.1 type UTF8String
128117
/// </summary>
@@ -231,7 +220,7 @@ public static bool IsApplicationDefined(uint type)
231220
}
232221
}
233222

234-
223+
235224
/// <summary>
236225
/// Defines constants used by decoding/encoding entities and
237226
/// some helper methods.
@@ -245,7 +234,7 @@ public static class BerDefinitions
245234
/// </summary>
246235
public const int IndefiniteLength = -1;
247236

248-
237+
249238
/// <summary>
250239
/// Gets the name of the type passed in <paramref name="type"/> in PascalCase
251240
/// (e.g. 'ObjectIdentifier' if type equals 6).

EmberLib.net/BerLib/BerEncoding.cs

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;
@@ -141,7 +130,7 @@ public static int GetUtf8StringLength(string str)
141130

142131
return Encoding.UTF8.GetByteCount(str);
143132
}
144-
133+
145134
public static int GetAsciiStringLength(string str)
146135
{
147136
if(str == null)

EmberLib.net/BerLib/BerException.cs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;

EmberLib.net/BerLib/BerFormatter.cs

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;
@@ -172,7 +161,7 @@ public static object[] Decode(string format, IList<byte> data)
172161
for(int charIndex = 0; charIndex < format.Length; charIndex++)
173162
{
174163
var ch = format[charIndex];
175-
164+
176165
switch(ch)
177166
{
178167
case '{':

EmberLib.net/BerLib/BerInput.cs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;

EmberLib.net/BerLib/BerOutput.cs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;

EmberLib.net/BerLib/BerReaderBase.cs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;

EmberLib.net/BerLib/BerTag.cs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System;

EmberLib.net/BerLib/Properties/AssemblyInfo.cs

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,24 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System.Reflection;
2110
using System.Runtime.CompilerServices;
2211
using System.Runtime.InteropServices;
2312

24-
// General Information about an assembly is controlled through the following
13+
// General Information about an assembly is controlled through the following
2514
// set of attributes. Change these attribute values to modify the information
2615
// associated with an assembly.
2716
[assembly: AssemblyTitle("BerLib")]
2817
[assembly: AssemblyDescription("")]
2918
[assembly: AssemblyConfiguration("")]
3019

31-
// Setting ComVisible to false makes the types in this assembly not visible
32-
// to COM components. If you need to access a type in this assembly from
20+
// Setting ComVisible to false makes the types in this assembly not visible
21+
// to COM components. If you need to access a type in this assembly from
3322
// COM, set the ComVisible attribute to true on that type.
3423
[assembly: ComVisible(false)]
3524

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,27 @@
11
/*
22
EmberLib.net -- .NET implementation of the Ember+ Protocol
3-
Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+
Distributed under the Boost Software License, Version 1.0.
6+
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187
*/
198

209
using System.Reflection;
2110

22-
[assembly: AssemblyCompany("L-S-B Broadcast Technologies GmbH")]
11+
[assembly: AssemblyCompany("Lawo GmbH")]
2312
[assembly: AssemblyProduct("EmberLib.net")]
24-
[assembly: AssemblyCopyright("Copyright © L-S-B Broadcast Technologies GmbH 2007-2014")]
13+
[assembly: AssemblyCopyright("Copyright © Lawo GmbH")]
2514
[assembly: AssemblyTrademark("")]
2615
[assembly: AssemblyCulture("")]
2716

2817
// Version information for an assembly consists of the following four values:
2918
//
3019
// Major Version
31-
// Minor Version
20+
// Minor Version
3221
// Build Number
3322
// Revision
3423
//
35-
// You can specify all the values or you can default the Build and Revision Numbers
24+
// You can specify all the values or you can default the Build and Revision Numbers
3625
// by using the '*' as shown below:
3726
// [assembly: AssemblyVersion("1.0.*")]
3827
[assembly: AssemblyVersion("1.7.0.0")]

0 commit comments

Comments
 (0)