Questions about the implementation of software licenses on software, including questions about open-source licenses.

learn more… | top users | synonyms (1)

5
votes
5answers
575 views

How can I create my own software license? [closed]

I have seen numerous licenses for any kind of software such as the GNU GPL, BSD License, MIT License, and LGPL. What is the process for creating a new software license, such as "John Doe's generic ...
0
votes
1answer
81 views

Author's work and copyright. in UI design

Typical situation in UI design: you do design of some UI and, say, came up with some bright new idea like "ribbon" or "kinetic scroll past end". What would be the strategy about such thing? Register ...
5
votes
3answers
262 views

I want to sell my software along with it's source code. Is there a licence restricts anything but in-house changes?

Is there a license that: Allows the client to make in-house changes to the tool/source code if need be. Prohibits to redistribute the source code outside the company. Prohibits to sell derivative ...
2
votes
1answer
69 views

Can SDK license influence an application license?

Let's say SDK is under specific license that is not compatible with some other licenses (like Flex SDK with GPLv2). Can I create an application by using for example Flex SDK, and license its ...
1
vote
2answers
115 views

Incorporating GPL Code in my Open Source Project

I have downloaded a currently inactive GPL project with a view to updating it and releasing the completed codebase as open source. I'm not really a fan of GPL though and would rather licence my ...
-4
votes
2answers
229 views

Can I require a large donation ($499) in order for a company to receive an extended version of my open source project? [closed]

I want to make my project open source but some of its more advanced features are targeted to companies so I would like to require a donation before I send the source code to the donating company. It ...
1
vote
1answer
185 views

Is requiring attribution GPL-compatible?

Can code licensed under a clause like this: Redistribution of this work, with or without modification, is permitted if Bob Joe is attributed as the original author or licensor of this work, but not ...
1
vote
1answer
150 views

Is Creative-Commons license compatible with Apache License?

For example if I have code that contains parts of code rewritten from code found here or on Stack Overflow or other Creative-Commons licensed code, can my final code be licensed with an Apache ...
2
votes
5answers
303 views

“Viral” license that only blocks legal actions of user and developer against each other

I was thinking a lot about software licensing lately, because I would like to do some coding. I'm not an expert in all those licenses, so I came up with my own idea, and before I will put in on paper, ...
0
votes
4answers
136 views

Licensing a project

Can someone clarify the following things for me ? Let's say I want to build a website and add publicity to it so I can make money out of my work. I would use Html5 for the interface and C# with ...
1
vote
2answers
132 views

What am I allowed to do programmatically with pictures that have a Creative Commons “don't modify” license

I'm working on a project that uses some icons that are under a Creative Commons license (ND) that forbids modification of the picture. What can I do with this icons as a programmer? Can I modify ...
7
votes
3answers
223 views

How signing out a CLA prevents legal issues in open-source projects?

For example: yeoman. It's licensed under a BSD license. The CLA form (Contributor License Agreement) isn't project specific, and it can be signed electronically. How and what issues can signing out ...
2
votes
2answers
177 views

Proper attribution of derived work in a GPL project

This is a continuation of me rewriting GPL project. What will be the correct way of attributing my project as being a derivative of some other GPL-licensed project? So far I came up with: HgSharp ...
0
votes
0answers
53 views

OpenSource License Validation [closed]

I'm basically looking for some kind of FLOSS/OpenSource license validation service. I have special needs for some projects I'd like to open-source. I know there's actually tons of different ...
4
votes
1answer
177 views

Could Apple and Microsoft allow the GPLv3 on their locked-down devices?

It seems that both Apple and Microsoft prohibit GPLv3-licensed software in the app stores for their locked-down devices (i.e. iOS, Windows Phone and the Metro part of Windows). I have heard various ...
5
votes
3answers
643 views

How does the GPL static vs. dynamic linking rule apply to interpreted languages?

In my understanding, the GPL prohibits static linking from non-GPL code to GPL code, but permits dynamic linking from non-GPL code to GPL code. So which is it when the code in question is not linked ...
5
votes
5answers
230 views

Downgrading from GPL v3 to GPL v2

I have this issue with licensing. I downloaded a third-party class from GitHub and it's under the GPL v3 license. However, I used this class on another open-source project which is under the GPL v2 ...
5
votes
2answers
121 views

Is the creator of a piece of software bound by the license he gives it?

For example, if a person creates an application that they open-source under a license that says you can use this code but you cannot sell it, has that person just bound himself to not selling it now ...
6
votes
2answers
188 views

Licensing code under GPL: are revisions prior to adding GPL license still GPLed?

Suppose I have an already existing codebase which does not have any license headers in any of the source files, nor does it have COPYING file. So when I add all the neccessary GPL "cruft" to, say, ...
1
vote
1answer
83 views

Does it ever make sense to license source code as a learning resource under GPL?

I recently came across a series of articles walking through how to make a scheme interpreter. I was browsing through the code when I realized that it was AGPL. For the most part, the code itself is ...
32
votes
2answers
784 views

Unicode license

The Unicode Terms of use state that any software that uses their data files (or a modification of it) should carry the Unicode license references. It seems to me that most Unicode libraries have ...
6
votes
3answers
287 views

is Java free for mobile development? [duplicate]

Q1. I would like to know if it's free for a developer (I mean, if I have to pay no royalties to Sun/Oracle) to develop (Android) mobile apps in Java? After reading this snippet about use of Java ...
2
votes
4answers
277 views

GPL licensed software installed on commercial hardware

Do vendors need to provide sources, at the customer's request, for GPL licensed software installed on the hardware they sell? For example, a vendor sells an IPTV box and pre-installs some proprietary ...
0
votes
2answers
111 views

Switching licenses, or cross licensing existing GNU GPL v3 software

I'm in the process of making a fork of GNU coreutils with a range of modifications. I'd like to release the result as an open-source project, but I'm not so much of a fan of GNU GPL as a license. Is ...
3
votes
1answer
185 views

How to copyright and license individual code files

I have a habit of writing small, reusable components in my spare time. I reuse these components with my clients' code bases. It occurs to me there's a potential issue that using identical code for ...
3
votes
1answer
1k views

Can I use new BSD licensed library/code in commercial closed source project?

I've found freetype-gl library I want to use. It has new BSD license and I'd like to use it in my closed source commercial project. Can I do it?
1
vote
4answers
604 views

Legally, can I re reuse code for different customers? [closed]

The company I work for develops custom factory automation applications for multiple customers. Even though each application is custom, they contain common code which is re-used across projects. One ...
0
votes
4answers
210 views

Dilemma for growing a project: Open source volunteer developers VS closed source paid / revshare developers? [closed]

I am trying to grow my project, and I am vaccillating between some examples. Some options seem to be: 1. open sourcing the project to draw volunteer developers. Pros This would mean anyone can ...
1
vote
1answer
137 views

What are some general guidelines for setting up an iOS project I will want to personally publish but sell in the future?

I have an idea for a personal iOS project that I would like to write and release to the iOS store. I'm the type of developer who enjoys developing and publishing. I want to write quality software ...
4
votes
3answers
182 views

How to efficiently protect part of an application with a license

I am working on an application that has many functional parts. When a customer buys the application, he buys the standard functionality, but he can also buy some additional elements of the ...
2
votes
2answers
184 views

Have you used a Framework/Lib whose LGPL License? if yes, what are the impressions of your customers? [closed]

I am trying to make my first app for sale, I would like to ask some questions for those who have already sold their software: Have you used a Framework/Lib whose LGPL License? if yes, what are the ...
0
votes
2answers
250 views

LGPL License in commercial application

I have searched around but I don't seem to be able to get a clear answer on my questions that I understand. I want to use the Xuggler library in my application, which is licensed either GPL or LGPL ...
0
votes
1answer
106 views

licensing a ' Sharepoint bug-Fix' to reserve it [closed]

My friend recently finished his personal work on a project that fixes a known bug in sharepoint 2010. The guy spent significant time\effort to reach this point He consulted me on how to license this ...
3
votes
3answers
108 views

Most appropriate OSS license for infrastructure code

I'm looking into potentially releasing some infrastructure code (related to automated builds and deployments) as OSS and I'm curious about how the various OSS licenses effect it. Specifically, LGPL ...
0
votes
1answer
86 views

Which license can I use for my open source AWS project [closed]

I'm creating a project on codeplex that uses Amazon Web Services and the AWS SDK for .NET Which licenses can I use? The SDK is released under Apache 2.0 license, so I assume my project can or should ...
15
votes
2answers
486 views

Is there a precedent for the license on a compiler restricting the kind of development you can use it for?

It was recently let slip that the new EULA for Delphi XE3 will prohibit Client Server development with the Professional edition without the additional purchase of a Client Server license pack. This is ...
2
votes
2answers
254 views

microsoft .Net license

Am about to start coding using microsoft .Net technologies, am just worried about the license, so if I compile my code using the .Net compiler "not visual studio" can I distribute, sell or use my ...
3
votes
4answers
259 views

How can I ensure a portion of my project's code remains in all derivative works?

I had an idea for a website. After much coding and thinking out the idea, I've got it to a decent stage. If I were someone else, potentially a more commercially-minded person, I might want to sell ...
3
votes
2answers
576 views

Running software as a service using unmodified GPL(v2+) program as a core dependency: must the SaaS source code be released?

I'm designing a software as a service project which will only be accessed online. I may have a hard dependency on an executable which is covered by GNU GPL (v2 or later). I understand that my code, ...
9
votes
4answers
472 views

How does the GPL work in regards to languages like Dart which compile to other languages?

Google's Dart language is not supported by any Web Browsers other than a special build of Chromium known as Dartium. To use Dart for production code you need to run it through a Dart->JavaScript ...
3
votes
1answer
112 views

What's more restrictive, the RPL or the AGPL?

What's the difference between the RPL licence and the AGPL licence? Which one is more restrictive?
3
votes
3answers
173 views

Confused on selling GPL. How is it consistent with this section?

(Written against GPLv2.) It is always said that GPL does not prohibit selling the software, as long as its source code is provided under the same license (GPL). Now, I do not understand how it is ...
8
votes
1answer
335 views

What are the licensing requirements for shipping Java along with application

We have an application in Java. Now we want to export this application to clients (free of charge). Can we ship JRE7 along the application (precaution as client might not have Java installed). Is it ...
0
votes
1answer
88 views

Openfire licensing with custom code

I am thinking of integrating the openfire chat server with my custom website. Openfire server and the smack client library is licensed under Apache License, Version 2.0. If I decide to use openfire, ...
5
votes
2answers
332 views

How much should a floating license cost?

Floating licensing is a software licensing approach in which a limited number of licenses for a software application are shared among a larger number of users over time. Nice for the corporates to ...
2
votes
2answers
106 views

Choosing the right license for a testing framework

I've finished a first working, releasable version of a testing framework. Prior to release, I want to apply a proper license to it. Normally I'd choose something like GPLv3 but here I am pretty ...
1
vote
1answer
117 views

Sencha Ext JS run time license

Do you need to buy a run time license from Sencha if your application code written is developed in Ext JS and deployed on a web server? http://www.sencha.com
19
votes
7answers
1k views

Can I legally and ethically take an open-source project with community contributions to closed-source?

Let's say I start and develop some project under open-source license, and accept some community contributions. How shaky is the ground I stand on if I decide to take the project commercial and ...
2
votes
3answers
1k views

Can I distribute software that's using Microsoft's Visual Basic 2010 Express Edition?

Am I within my rights to write and distribute software in compiled and source form using, in part, Microsoft's Visual Basic 2010 Express Edition? I have only the free, express version. If it has ...
1
vote
1answer
147 views

Site for uploading open source project

I have some simple and useful projects. I want to upload it as an open source project. What are the most popular sites for uploading these projects? Following are the requirements The site is ...

1 2 3 4 5 13