1
vote
2answers
207 views

Developer name in the copyright notice of files contributed to open source project?

I am developing a small application which I want to make open source. Currently only my work is on the application, and so in all the files I have put up a copyright notice in my name. Now when I ...
0
votes
1answer
153 views

Open source licenses (specifically GPL) & gamemaker's source format

Now with gamemaker studio source files are no longer stored in a proprietary format - instead they are stored as simple XML files containing all data. Now I am wondering, can projects created with ...
2
votes
2answers
153 views

Is there a license for selling a software with the sources so buyer can make modifications without claiming ownership of the code or distributing it?

I would like to sell a software that has some open source competitors. Therefore I would like to include the source code with the binaries so that the company buying it can modify it as it wishes. The ...
5
votes
1answer
200 views

Copyright notice in CSS or XML files

I'm currently working on an open-source project. Currently, we put our copyright notice at the top of every Java source file. I was wondering whether it was advisable or common practice to put ...
4
votes
2answers
239 views

Copying (forking) an open source project to your own repository

I'm currently using an open source project called CodeFirstMembership for one of my projects. There's a critical issue that I need to get past, and the more I use it, the more I find things I need to ...
-4
votes
3answers
294 views

is it okay to remove copyright info from a free, open source API even if you are explicitly told not to do so? [closed]

Just wondering if text such as the following, which appears inside the source files of a free, open source API, means anything in a court of law // Permission is hereby granted, free of charge, ...
1
vote
3answers
260 views

Is making my own copyright licence safe?

I've seen various open source libraries (actually I've seen it for assets as well) having a home-baked license in the following manner : SomeGuy's License:1. You can use this code freely in ...
6
votes
6answers
703 views

Open source code with no license… can I fork it?

A few years ago somebody created a bunch of really awesome and quite popular shell scripts. They don't work in the latest version of Mac OS X, because a filepath has changed. All you need to do is ...
7
votes
4answers
604 views

What copyright date for an update to an open-source project from last year?

In 2011, I released some open-source code that was licensed using the Apache license. As such, all the source files have this boiler plate message at the top: /* Copyright 2011 My Name ...
-3
votes
5answers
387 views

Is there a way to prevent others to steal your open source project and use it to make a profit?

This might seems like a silly question to ask, but I can't really figure out the answer. The title pretty much says it all. Let's say you have an open source music player, along comes someone, copies ...
8
votes
8answers
366 views

Does it make sense to license unit tests?

I am wondering if there are any benefits / risks of (not) putting a licence on test code which mostly consists of unit tests. What do you think? I am particularly interested in licensing under ...
5
votes
1answer
316 views

How do I dual license?

I'd like to open source a project of mine under GPL v3. Additionally, I'd like to sell a license for those who wish to use the code in a proprietary application. How do I go about releasing my ...
14
votes
5answers
974 views

“Do Whatever You Want” License With Attribution

I'm looking for an open source license that lets people do whatever they want - just like the MIT license - just as long as they attribute the original author, i.e. me. Does a common license exist ...
0
votes
3answers
246 views

Get code from one open source project and add it to another

I found some functions that I want to get from WordPress source code and add want to add them into my project which is going to be open source. Do I simply get the functions that I want and add them ...
3
votes
1answer
250 views

When they say its open source it means i can take their pictures?

when they say that a project is open source (i.e. LifeRay) does it mean that I can take anything I want from that project? I want to use some of the icons used in LifeRay portal for my own ...
2
votes
3answers
611 views

Software licensing and Copyright of Open source

I have seen some source code containing Copyright notice in the beginning of the file. Most of them are either GNU General Public License or Apache License. If I want to develop any open source ...
4
votes
3answers
457 views

Will a copyrighted code get into public domain once its copyright expires?

Since source code license is protected through the Copyright Law (Berne Convention to be precise), and all copyrighted material will be in public domain for certain number of years, depending on which ...
2
votes
2answers
143 views

Open source for software, copyrighting, etc?

This may be more of a legal question: Some guy claims to copyright his source code but he has several publicly exposed source code examples on his website but just puts a copyright notice at the ...
5
votes
3answers
255 views

What is the preferred way to protect ownership of one's code (e.g. copyright, licenses, etc)

I posted some open source code on soureforge, and someone got in contact with me stating they intended to use my algorithms for a commercial product. I don't want this to happen, what should I do? ...
2
votes
3answers
119 views

Software license options

Is there a software license that allows free access to source code, but does not allow redistributing any binaries, either direct from the source code or modified source code for a limited time? The ...
13
votes
1answer
987 views

What's the right way to fork/re-use code from an open source project?

Let's say I am working on an open source project and want to re-use a trivial utility function from another open source project (for example, a file search/replace function). Is it legal to copy the ...
9
votes
4answers
3k views

Copyright notices/disclaimers in source files

It's a common practice to place copyright notices, various legal disclaimers and sometimes even full license agreements in each source file of an open-source project. Is this really necessary for a ...