vote up 1 vote down star

Does referencing a CSS stylesheet with a GPL (or AGPL) license "infect" the server side of a web application?

flag
This is a question for a lawyer, not a programmer. – Rob Kennedy Jan 30 at 23:38

5 Answers

vote up 2 vote down

I've never heard of a stylesheet being licensed under GPL. Be how it may, stylesheets are hardly so complex that they couldn't be rewritten manually from scratch, thus avoiding using other people's work (i.e. being bound by any kind of license).

link|flag
That depends on what the copyright covers; if it covers the "look" produced by the stylesheet, that won't work. – derobert Jan 31 at 14:37
Also, it depends on the jurisdiction, country, and whether the original author is willing to sue in the first place... – Henrik Paul Jan 31 at 16:23
I used a set of icons licenced as GPL once. – tovare Feb 2 at 18:40
vote up 1 vote down

In terms of the question from an academic/legal perspective (not a practical one).

You really need to talk to an academic legal person. Many GPL-related issues doesn't have a percedence in court, so some bordler-line issues might me anyones guess.

The Free Software Foundation has on-staff lawyers who advice on GPL related issues.

You can find them here: http://www.fsf.org/

You can forward your question to: licensing@fsf.org

link|flag
vote up 0 vote down

IANAL.

If your code isn't open-source there's not much point (in my opinion) to open-source something as basic as some frontend CSS. You could always put a comment in the CSS reading:

/* Feel free to use this code */
link|flag
CSS is not necessarily basic, considering the capability of various platforms, flexibility of use etc. You can write a CRUD app, much faster than a really good CSS. – tovare Feb 2 at 19:48
vote up 0 vote down

As a rule of thumb, don't use GPL'ed code or material in closed apps, unless there's a specific licence exception or permission allowing linkage.

If the CSS is GPL the author probably wanted it to be used solely for free software.

Just make your own CSS or ask the author for permission. That way you don't need any lawyers to resolve things for you.

link|flag
vote up 0 vote down

Thanks for the feedback, but I'm interested in the question from an academic/legal perspective, not from a what-should-I-do perspective. I could certainly choose to not use the code, ask them to change the license, etc. But what I don't know is how does a client-side reference to a stylesheet may (or may not) affect the license of server-side code.

link|flag
please add comments to your question, not as an answer – Joachim Sauer Feb 2 at 15:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.