licensing - 代码从一种语言移植到另一种语言 - 许可

标签 licensing

我将一些代码从 C 移植到 C#,并且还在移植的代码中添加了一些新功能。原始代码受 MPL 许可。

这是原始源代码许可条款:

/*
 * file name
 * Version .....
 *
 * Copyright (c) 2004-2012 by XXX YYY
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (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.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is file.c
 *
 * The Initial Developer of the Original Code is XXX YYY.
 *
 * Portions created by XXX YYY are Copyright (C) 2004-2012
 * XXX YYY. All Rights Reserved.
 *
 */

我可以通过这种方式更改移植代码的许可证并包含原始源代码的原始源代码许可条款吗:

//
// test.cs
//
// Author:
//   "My Name" (my@email.com) 
//
// Copyright (c) 2012 My Name
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// 
// Parts of this source code are ported from C to C# by "My Name".
//
// The Original Code is file.c (http://original-source-code-link.com);
// and under Mozilla Public License Version 1.1 (http://www.mozilla.org/MPL/) 
// The Initial Developer of the Original Code is XXX YYY (xxxyyy@email.com).

最佳答案

移植一些代码就是翻译一些代码(与翻译别人的书相比),因此受版权保护。您正在创作衍生作品。

顺便说一句。永远不要更改作者署名和版权说明。这是不行的,你这样做是在合法地自找麻烦。因此,请逐字复制原始声明,不要削弱它。

此外,您通常不能将文件置于类似 MIT 的许可证下,因为文件的一部分位于 MPL AFAIK 下,但位于 IANAL JASD 下。

为什么不直接在 MPL 下许可该文件?这可能是人们能给你的最好建议。对于其他一切,您应该直接去找您的律师。

http://en.wikipedia.org/wiki/Mozilla_Public_License

<小时/>

如果您真的想将您的作品的那部分置于您的许可之下,您必须非常明显地显示您的作品在哪里以及原始作品在哪里。

我发现移植/翻译很难使其可见,并且我怀疑这是可能的。

这只是技术上的,因为即使您能够这样做,这也没有说明许可证兼容性。当然,您还需要具有许可证兼容性。

因此,由于这两个原因,您确实应该考虑在与 MPL 具有 copyleft 相同的许可证下发布它。 .

关于licensing - 代码从一种语言移植到另一种语言 - 许可,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10952689/

相关文章:

vb6 - vb6 程序的许可要求是什么

java - AEM - We Retail 网站上的自定义实现

javascript - 确定 Chrome 扩展免费试用何时结束

delphi - 如何让 C++ Builder 2010 只安装专业版(曾经是 Architect 版)

c++ - 按时间管理许可证

asp.net-mvc - 我真的可以在 ASP.NET MVC 上免费开发吗?

cocoa - 实现 30 天计时试验

java - 根据软件许可证标志更改 JAAS 角色

cocoa - 减少我的应用程序破解(cocoafob)

licensing - GPL 如何适用于必需但非分布式的代码?