WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _licenses/cern-ohl-p-2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: A permissive license for hardware designs, with conditions only req

how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.

note: 'CERN <a href="https://ohwr.org/project/cernohl/wikis/uploads/8a6b5d01f71c207c49493e4d114d61e6/cern_ohl_p_v2_howto.pdf">recommends</a> adding the following information in the source files: copyright and license notice, a disclaimer of warranties and a source location. You can also include the source location in a part of the design which will be visible in the end product.'
note: 'CERN <a href="https://gitlab.com/ohwr/project/cernohl/-/wikis/uploads/8a6b5d01f71c207c49493e4d114d61e6/cern_ohl_p_v2_howto.pdf">recommends</a> adding the following information in the source files: copyright and license notice, a disclaimer of warranties and a source location. You can also include the source location in a part of the design which will be visible in the end product.'

using:
tedium: https://github.com/jboone/tedium/blob/master/LICENSE-CERN-OHL-P-v2
Expand Down
2 changes: 1 addition & 1 deletion _licenses/cern-ohl-s-2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Permissions of this strongly reciprocal license for hardware design

how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.

note: 'CERN <a href="https://ohwr.org/project/cernohl/wikis/uploads/cf37727497ca2b5295a7ab83a40fcf5a/cern_ohl_s_v2_user_guide.pdf">recommends</a> adding the following information in the source files: copyright and license notice, a disclaimer of warranties and a source location. You can also include the source location in a part of the design which will be visible in the end product.'
note: 'CERN <a href="https://gitlab.com/ohwr/project/cernohl/-/wikis/uploads/cf37727497ca2b5295a7ab83a40fcf5a/cern_ohl_s_v2_user_guide.pdf">recommends</a> adding the following information in the source files: copyright and license notice, a disclaimer of warranties and a source location. You can also include the source location in a part of the design which will be visible in the end product.'

using:
USB Armory: https://github.com/f-secure-foundry/usbarmory/blob/master/hardware/mark-two/LICENSE
Expand Down
4 changes: 2 additions & 2 deletions _licenses/cern-ohl-w-2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ description: Permissions of this weakly-reciprocal license are conditioned on ma

how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.

note: 'CERN <a href="https://ohwr.org/project/cernohl/wikis/uploads/c2e5e9d297949b5c2d324a6cbf6adda0/cern_ohl_w_v2_howto.pdf">recommends</a> adding the following information in the source files: copyright and license notice, a disclaimer of warranties and a source location. You can also include the source location in a part of the design which will be visible in the end product.'
note: 'CERN <a href="https://gitlab.com/ohwr/project/cernohl/-/wikis/uploads/c2e5e9d297949b5c2d324a6cbf6adda0/cern_ohl_w_v2_howto.pdf">recommends</a> adding the following information in the source files: copyright and license notice, a disclaimer of warranties and a source location. You can also include the source location in a part of the design which will be visible in the end product.'

using:
Simple PCIe FMC carrier: https://ohwr.org/project/spec/blob/master/LICENSES/CERN-OHL-W-2.0.txt
Simple PCIe FMC carrier: https://gitlab.com/ohwr/project/spec/blob/master/LICENSES/CERN-OHL-W-2.0.txt
GProcessor8Bits: https://github.com/JonathSpirit/GP8B/blob/master/LICENSE
FPGA Cores: https://github.com/suoto/fpga_cores/blob/master/LICENSE

Expand Down
4 changes: 2 additions & 2 deletions assets/js/app.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ class LicenseSuggestion
callback null, info
.fail (e) ->
if e.status == 404
callback new Error "Repository <b>#{repositoryFullName}</b> not found."
callback new Error "Repository #{repositoryFullName} not found."
else
callback new Error "Network error when trying to get information about <b>#{repositoryFullName}</b>."
callback new Error "Network error when trying to get information about #{repositoryFullName}."

# Generates a message showing that a repository is already licensed
repositoryLicense: (repositoryFullName, license) ->
Expand Down
2 changes: 1 addition & 1 deletion spec/license_meta_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
example_url.gsub!(%r{/tree/}, '/plain/')
elsif example_url.start_with?('https://bitbucket.org/')
example_url.gsub!(%r{/src/}, '/raw/')
elsif example_url.start_with?('https://ohwr.org/')
elsif example_url.start_with?('https://gitlab.com/')
example_url.gsub!(%r{/blob/}, '/raw/')
end

Expand Down
Loading