|
I found some code on the web. The web page doesn't make any mention of a license, and the download doesn't make any mention of a license. What are the license implications of using that code in the US? Is there such a thing as an implicit license?
Started by RickDT on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
A code is implicitly copyrighted the moment it is written, the author might not mind, but that... .
There's no such thing as an implicit license.
If the code doesn't have a license, it is still copyright.
That depends on your country's laws.
|
|
I was wondering if source code released under the Code Project Open License is GPL compatible?
Started by Scott Whitlock on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Section 5.d of the Code Project Open License :
You agree not to sell, lease, or rent any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License automatically receives a license....
|
|
There's some code on CodeProject that's already OSS under the CodeProject license .
I've contacted the author several times on his blog, but he's not responding to any request for putting the code on CodePlex (or any email at all).
Since it's OSS anyway...
Started by CVertex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
End of story license allows), then make sure to put a notice inside your COPYING file (or equivilent) with a copy of the codeproject license, the....
You cant change the license on a piece of code without the authors permission.
|
Ask your Facebook Friends
|
We are using recursive make in our project. We also use a commercial embedded compiler (diab) with a FlexLM license.
We are currently adding license-borrowing as a dependency on the top-level targets in each directory.
Like this:
.PHONY: target target...
Started by Pär Bohrarper on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Now the license is only borrowed in the top.
The solution was to look at MAKELEVEL.
The license, then calls make with arguments, and after make returns returns the license? You could check wrapper is used.
|
|
There are a couple of threads talking about license issue. Mostly focusing on GPL/LGPL/BSD. I am trying to use RabbitMQ in commercial applications, which is licensed under Mozilla Public License(MPL). Is MPL friendly to commercial use?
I found a different...
Started by Lily on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
+ "License" shall mean the terms....
Desktop/apache.txt vie ene 15 10:20:53 2010 @@ -1,470 +1,201 @@ - MOZILLA PUBLIC LICENSE - Version 1.1 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ - + TERMS.
|
|
I had to throw a machine together in a bit of a hurry- to replace a machine that suddenly failed (no one had bothered to keep a "warm" backup) It has Windows Server 2008 and SQL 2008
The snag is, I installed them off our MSDN subscription media, due to...
Started by alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Therefore if you use a KMS key on an MSDN media for example it won't work, unless the license is issued.
The license keys are hardcoded against the distribution medium.
As far as I am aware No.
|
|
I would like to start a project using the GPLv3 license; utilising existing GPLv2 code and Apache License, Version 2.0 code.
Please keep answers here specific to Apache License, Version 2.0 licensed code transitioning into a piece of GPLv3 licensed code...
Started by _ande_turner_ on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
GPLv3) for your modifications:
You may add Your own copyright statement to Your modifications... .
The Apache v2 license would seem to allow you to have a separate license (e.g.
I'm not a lawyer, but my understanding is as follows .
Duplicate.
|
|
For example, if I use some open source code that is licensed with an MIT license in my (commercial) project, does my project in turn have to be under the MIT license or do I have to distribute the MIT license or anything like that?
Answer Snippets (Read the full thread at stackoverflow):
It depends on the license....
In the case of the MIT license, the text of the license reads (emphasis mine):
Copyright (c) [year] [copyright holders]
Permission is hereby granted.
The answer depends on the text of the license.
|
|
In this case the license is question is Apache License v2, but basically if I just include a text file with the license in the application directory, it might look like my app is licensed under that license which isn't the case.
Do you just add a little...
Started by Davy8 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
All the places that....
I'm pretty sure you don't have to list which specific piece it is (for most open source licenses anyway).
Just say "This package includes software with the following licenses:" and then list any other licenses.
|
|
I want to write a tigase (a xmpp/jabber server) plugin and tigase is published under GPL3.
My plugin would use xmpp extensions to add needed functionalities.
The plugin would be load at runtime.
Started by hadrien on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Yes, your plugin would....
If you interact with GPL software, you don't need to GPL your code in the same way as my GIMP-drawn image isn't GPLed .
Check the plugin API.
If you use/include/link-to any code that is under GPL, you need to publish it under GPL .
|