0

Assuming I have a plugin hosted on wordpress.org, can someone else just take my plugin and copyright it?

Can they take the name of my plugin and copyright or trademark it (assuming I do not have it copyrighted or trademarked)?

Can they take my code, extensively add to it and build off it creating a new plugin but using my code as a base without my permission?

What if they copyrighted it before I got a chance to?

What if they file for a provisional patent on my work? Can they do that?

  • 2
    possible duplicate of [What is the “default” software license?](http://programmers.stackexchange.com/questions/26548/what-is-the-default-software-license) – gnat Apr 23 '15 at 22:39
  • 4
    The answer depends on the jurisdiction, but in the U.S. you have a "default" copyright on anything you create even if you do not file for copyright. Trademark you have to file for, but if that becomes a question you are operating a business and should have a lawyer on retainer anyway. –  Apr 23 '15 at 22:42
  • 2
    @gnat: That question is about something else. – Robert Harvey Apr 23 '15 at 22:56
  • If you don't want to copyright it and are concerned others taking credit without attribution look at an option to "copy-left" - there are several FOSS and CC Licenses that you could consider and incorporate with relative ease. – Y123 Apr 23 '15 at 22:58
  • 2
    "What if they copyrighted it before I got a chance to?" - you *always* have a chance to, even if you didn't put the copyright on it. By creating it, it is copyrighted at that very instant. –  Apr 23 '15 at 23:09
  • @YazadKhambata: It doesn't work that way. You have to possess copyright before you can license it to others. – Robert Harvey Apr 23 '15 at 23:27
  • 1
    @RobertHarvey - if it is a code he wrote he has the copyright to it weather he registers (advisable) it or not - http://copyright.gov/help/faq/faq-general.html#register. – Y123 Apr 23 '15 at 23:31
  • @YazadKhambata: That's right. So why are you making the statement "if you don't want to copyright it?" – Robert Harvey Apr 23 '15 at 23:37
  • What are you not following? – Y123 Apr 24 '15 at 00:03
  • @YazadKhambata: You *can't* "not Copyright" something in a country where it's automatic. The closest you can do (in countries with no Public Domain) is to release all your rights on the work, which is what the Creative Commons Zero license does. It's not even legally clear if Public Domain dedication is even possible in countries that have it. – greyfade Apr 24 '15 at 05:05
  • I see the confusion - I am using the term copyright as a verb "to copyright" which means to secure it or to register a copyright. I think it would have been easier if I had commented "to register the copyright" and used it as a noun. – Y123 Apr 24 '15 at 17:52

2 Answers2

5

Copyright, trademark, and patents are three very different things with very different laws concerning each. You seem to be confused on the basics of these matters you should do some research; here is a document explaining some of the US copyright system.

In general:

  • Copyright protects a specific expressions of an idea.
  • Patents protect inventions; generally physical.
  • Trademark protects business names, logos, etc.

Copyright attaches when the work is fixated, i.e. when you write it down, record it as a file on a storage device, etc. You don't need to register a copyright to own it; you need to register your copyright if you want to sue someone and be eligible for statutory damages. Actual damages can be awarded even without registration (n.b. I Am Not A Lawyer (IANAL.))

can someone else just take my plugin and copyright it?

Legally no, could they register it anyway, possibly.

can someone trademark the name of my plugin

I don't know much about trademark law, if they are using the mark then probably; i.e. they happen to have a similar product already that uses the name. The test, if i recall correctly, is about market confusion, i.e. could someone confuse your product for mine. Also, trademarks have to go through a 'comment' period where interested parties can object to your mark.

What if they file for a provisional patent on my work? Can they do that?

Legally no, since software patents are abstract and are rarely valid, but invalid patents are granted all the time. Most software patents wouldn't hold up in court but the cost of litigation allows invalid patents to be wielded as a threat, again IANAL!

esoterik
  • 3,879
  • 3
  • 13
  • 22
  • 1
    Trademarks are restricted to a particular market or field of operations. You can and do have several companies called "Sun" working in different markets, without infringing on each others trade markets. – James Anderson Apr 24 '15 at 04:19
-1

You establish ownership by asserting copyright.

I can easily do this for a $1000 fee. Or you could do it yourself by inserting a comment:

// Copyright Your Name Here , 24/04/2015, all rights reserved

at the top of your source code.

James Anderson
  • 18,049
  • 1
  • 42
  • 72
  • 2
    This is not exactly correct. Copyright is *automatic* when the work is put in a "fixed form," and this is the case in all countries that are signatories of the Berne Convention. Assertion of Copyright only clarifies the ownership. Registration is not required in any of these countries. However, registration makes *prosecution* of Copyright infringement a great deal easier, since it short-circuits the process of establishing ownership. Assertion is also a good place to specify which rights are offered to recipients. ("All rights reserved" means, I believe, "none are offered.") – greyfade Apr 24 '15 at 04:54