Version 1.1 of the definition has been released. Please help updating it, contribute translations, and help us with the design of logos and buttons to identify free cultural works and licenses!

Talk:Logos and buttons: Difference between revisions

From Definition of Free Cultural Works
Jump to navigation Jump to search
(→‎Cheap WOW Gold: new section)
Line 139: Line 139:


--[[Special:Contributions/75.154.254.188|75.154.254.188]] 19:14, 18 November 2010 (UTC)
--[[Special:Contributions/75.154.254.188|75.154.254.188]] 19:14, 18 November 2010 (UTC)
== Cheap WOW Gold ==
u have heard this a billion times but i would like to no the greatest approach to
win 5000 gold in WoW ive tryed the dailes and agribusiness but i pretension unearth
what to be killed and i take french leave outa dailes so if any 1 can lend a hand me please reprove me
what i should seeking 5000g?!

Revision as of 19:29, 3 January 2011

Hi. Just an idea about the buttons: Please make it more international, by using symbols instead of text (like Attribution, Share-Alike). Regards--77.234.80.162 23:18, 16 February 2007 (CET)

Should we avoid duplicating Creative Commons work? - and focus on icons for free/libre content? - e.g. CC-By and Public Domain are arguably non-free/libre - as both allow derived works (such as translations and localisations) to be released under more restrictive licenses. Kim 13:48, 5 March 2007 (CET)

I strongly disagree. There is no higher degree of freedom than the absence of copyright. To argue that the works of Shakespeare are not libre because they are not under a copyleft license is bizarre to me. This is also in line with the definition, which permits copyleft, but does not require it.--Erik Möller 15:45, 5 March 2007 (CET)

Thanks Erik. Some comments: Discussion of copyleft

Thinking About Buttons

The buttons, in my opinion, still need a little more work. What we need to do is provide some HTML through which people can include the buttons on their sites. This HTML needs to include a link to the button, which is easy enough, but it should also include the necessary RDF and a link, somewhere back to the deed on the CC site. This should be, I think, in addition to the link to a license-specific page in our wiki. I'm thinking what we should do is create an image map with a small area (it could even just be a couple pixels) that links to the CC site and the rest can link to us.

There is a thread that happened on the CC-Community mailing list that is worth reading over first. The thread also raised some interesting issues about about using the CC icons instead of the letters which I definitely think we should do. If someone can help with the the new buttons, I could probably sit down and hack out some sort of solution in terms of the image maps. Benjamin Mako Hill 22:22, 8 April 2007 (CEST)

MediaWiki

You should get these put into MediaWiki, and when administrators start up their wiki, create a way for them to choose between the logos, as well as the license. 59.167.75.42 04:21, 17 April 2007 (CEST)

Gallery

Hi, does anyone have an idea why <gallery perrow="3"></gallery> doesn't work here? --Kjoonlee 20:50, 18 June 2007 (CEST)

Maybe it's due to version differences.. The English Wikipedia uses MediaWiki 1.11alpha (r22970) and "perrow" is supported there, but this site uses 1.9.0. --Kjoonlee 19:50, 22 June 2007 (CEST)

Equal treatement for "PD" please.

Would it be too much trouble to ask for buttons with "PD" in the same size letters as the other buttons have (and perhaps "Public Domain" underneath there in small print for some variants, like there are for the others). No reason to not have such. The current ones with Public and Domain in same size on different rows looks very busy to me. -- Cimon Avaro 12:26, 10 July 2007 (CEST)

An svg version would also be nice ... we could develop our own variants/colors/sizes. Does this exist? or should I (or a real artist) try my hand at tracing in Inkscape again? --Inkwina 12:38, 10 July 2007 (CEST)

License of buttons?

I see that the main logo and first set of buttons are PD but the rest have no license info. Am I just to assume they are CC-BY-2.5? --76.102.125.125 19:25, 1 May 2010 (UTC)

CC0

CC0 (Creative Commons Zero) buttons are needed. CC0 is a Public Domain dedication plus a very simple license without any requirements. The latter is for jurisdictions that don't accept PD dedications. -- Sloyment 13:35, 18 May 2010 (UTC)

METAFONT license icons

Is there a copy of license icons in METAFONT? I would like to use them in books created using TeX (not LaTeX). --24.207.49.17 03:41, 17 November 2010 (UTC)

I have written a program to do the logo in GF-Magick. It is not perfect; please fix it if you want to fix it. Here is the program:

% Logo for "Free Cultural Works"
% This logo and the program to generate it are public domain.

input gfmagick;
magickmode(200,1);

picture_size=2in;
large_circle=1.9in;

half_size=picture_size/2;

def gradient(expr xx,yy,zz,zzz) =
  clear_geometry;
  special "-size";
  special "=#0x#0";
  numspecial round(xx);
  numspecial round(yy);
  numspecial 0;
  special "=gradient:rgba(#0,#0,#0,#2)-rgba(#0,#0,#0,#2)";
  numspecial round(255*redpart(zz));
  numspecial round(255*greenpart(zz));
  numspecial round(255*bluepart(zz));
  numspecial alphapart(zz);
  numspecial round(255*redpart(zzz));
  numspecial round(255*greenpart(zzz));
  numspecial round(255*bluepart(zzz));
  numspecial alphapart(zzz);
  numspecial 0;
enddef;

def padding(expr xx,yy) =
  clear_geometry;
  special "-gravity";
  special "Center";
  special "-extent";
  special "=#0x#0";
  numspecial round(xx);
  numspecial round(yy);
  numspecial 0;
  special "+gravity";
enddef;

def sequence_multiply =
  special "-fx";
  special "u*v";
enddef;

def do_layer(expr radius,color,quadrant,grad) =
  <<<
    canvas(picture_size,picture_size,Clear);
    setcolor(color);
    [[[
      pickup pencircle scaled (radius*large_circle);
      draw (0,0);
      z1=(0,0); z2=quadrant*half_size; z3=(xpart z2,0); z4=(0,ypart z2);
      unfill z1--z3--z2--z4--cycle;
    ]]]
    put_current(half_size,half_size,"src-over");
    if grad:
      <<<
        rad:=2.5*radius*large_circle;
        gradient(rad,rad,color,Clear);
        background(Clear);
        padding(picture_size,picture_size);
      >>>
      channels("A");
      sequence_multiply;
      channels(0);
    fi;
  >>>
  compose("src-over");
enddef;

canvas(picture_size,picture_size,Clear);

vardef Red = rgb(1,0,0) enddef;
vardef Orange = rgb(1,1/2,0) enddef;
vardef Yellow = rgb(1,1,0) enddef;
vardef Green = rgb(0,2/3,0) enddef;
vardef Blue = rgb(0,0,1) enddef;
vardef Purple = rgb(1/2,0,1) enddef;

do_layer(7/7,Red,(1,1),false);
do_layer(6/7,Orange,(1,-1),false);
do_layer(5/7,Yellow,(-1,-1),false);
do_layer(4/7,Yellow,(1,1),true);
do_layer(3/7,Green,(1,1),true);
do_layer(2/7,Blue,(1,-1),true);
do_layer(1/7,Purple,(0,0),true);

end;

--75.154.254.188 19:14, 18 November 2010 (UTC)

Cheap WOW Gold

u have heard this a billion times but i would like to no the greatest approach to

win 5000 gold in WoW ive tryed the dailes and agribusiness but i pretension unearth 

what to be killed and i take french leave outa dailes so if any 1 can lend a hand me please reprove me

what i should seeking 5000g?!