Skip to content

Commit

Permalink
added some missing copywrite headers
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen.swensen committed Jul 31, 2011
1 parent 23ed34b commit d3db19c
Show file tree
Hide file tree
Showing 7 changed files with 115 additions and 7 deletions.
17 changes: 16 additions & 1 deletion FsEye/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
namespace FSI_Watch
(*
Copyright 2011 Stephen Swensen
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.
*)
namespace Swensen.FsEye

open System.Reflection
open System.Runtime.CompilerServices
Expand Down
17 changes: 16 additions & 1 deletion Test.FsEye/WatchTreeViewTests.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
module WatchTreeViewTests
(*
Copyright 2011 Stephen Swensen
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.
*)
module WatchTreeViewTests
open Swensen.FsEye.Forms
open Swensen.Unquote
open Xunit
Expand Down
17 changes: 16 additions & 1 deletion Utils/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
namespace FSI_Watch
(*
Copyright 2011 Stephen Swensen
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.
*)
namespace Swensen.Utils

open System.Reflection
open System.Runtime.CompilerServices
Expand Down
18 changes: 17 additions & 1 deletion Utils/ControlExt.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
namespace Swensen.Utils
(*
Copyright 2011 Stephen Swensen
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.
*)

namespace Swensen.Utils

module Control =
let inline update< ^a when ^a :(member BeginUpdate: unit -> unit) and ^a : (member EndUpdate: unit -> unit)> (this: ^a) f =
Expand Down
17 changes: 16 additions & 1 deletion Utils/MiscUtils.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
[<AutoOpen>]
(*
Copyright 2011 Stephen Swensen
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.
*)
[<AutoOpen>]
module Swensen.Utils.MiscUtils

///Reference comparison
Expand Down
18 changes: 17 additions & 1 deletion Utils/SeqExt.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
namespace Swensen.Utils
(*
Copyright 2011 Stephen Swensen
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.
*)

namespace Swensen.Utils

module internal Seq =
let distinctByResolve primaryKey resolveCollision values = seq { //make lazy seq? (YES, Seq.distinct does)
Expand Down
18 changes: 17 additions & 1 deletion Utils/TypeExt.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
[<AutoOpen>]
(*
Copyright 2011 Stephen Swensen
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.
*)

[<AutoOpen>]
module internal Swensen.Utils.TypeExt

open System
Expand Down

0 comments on commit d3db19c

Please sign in to comment.