public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-28 13:51 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-04-28 13:51 UTC (permalink / raw
  To: gentoo-commits

sping       11/04/28 13:51:08

  Added:                artwork.xml
  Log:
  Add initial version of article on Gentoo artwork, todos left

Revision  Changes    Path
1.1                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.1&content-type=text/plain

Index: artwork.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">

<guide>
<title>Gentoo Artwork</title>

<author title="Author">
  <mail>sping</mail>
</author>

<abstract>
Collection of information about available artwork and its usage.
</abstract>

<!-- The *textual* content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<!-- <license/> -->

<version>1</version>
<date>2011-04-28</date>


<chapter>
<title>Gentoo Mascots</title>

<section>
<title>Larry the Cow</title>
<body>
<fig link="/images/icon-cow.png" />
    
<p>
Larry the cow originates from letter <e>s</e> of the font
<uri link="http://www.fonthead.com/fonts/Font-Heads">Font Heads</uri>.
Therefore, usage of Larry the cow needs to respect the
<uri link=" http://www.fonthead.com/license">End User License Agreement (EULA)</uri>
of <uri link="http://www.fonthead.com/">Fonthead Design Inc.</uri>.
</p>

<p>
TODO
</p>
</body>
</section>


<section>
<title>Znurt and his shadow</title>
<body>
<p>
While Znurt also appears on the Gentoo <uri link="/">main page</uri>,
his shadow is known from a previous design of Gentoo's <uri link="https://bugs.gentoo.org/">bugzilla instance</uri> only.
</p>
<fig link="/images/bugzilla.png" />
<p>
Separate graphics for each of them are available.  Click the respective image below to get to its vector sources.
</p>
<fig link="/images/artwork/znurt.png" linkto="/images/artwork/znurt.svg" />
<fig link="/images/artwork/black-gentoo-thing.png" linkto="/images/artwork/black-gentoo-thing.svg" />
<p>
Both SVGs and PNGs are licensed under
<uri link="http://creativecommons.org/licenses/by-sa/2.5">Creative Commons - Attribution / Share Alike</uri>.
</p>
</body>
</section>

</chapter>



<chapter>
<title>Rendering the offical &quot;g&quot; logo</title>

<section>
<title>The blue &quot;g&quot; logo</title>
<body>
<p>
TODO
</p>
</body>
</section>

<section>
<title>The red &quot;gentoo&quot; logo</title>
<body>
<fig link="/images/gentoo-new.gif" />
<p>
It is possible to render this logo as a transparent PNG with custom resolution.
</p>

<dl>
  <dt><b>Procedure:</b></dt>
  <dd>
    <ol>
      <li>Get a copy of <uri link="http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">gentoo3.blend.bz2</uri></li>
      <li>Unpack it using bunzip2</li>
      <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering</li>
    </ol>
  </dd>
</dl>

<p>
Blender can be made to render from the command line as following.
</p>

<pre caption="Invocation of Blender 2.49b">
# <i>blender -b gentoo3.blend -P gentoo3.py</i>
Compiled with Python version 2.6.6.
Checking for installed Python... got it!
Fra:1 Mem:0.20M | Preparing Scene data
Fra:1 Mem:2.94M | Preparing Scene data
Fra:1 Mem:2.94M | Creating Shadowbuffers
Fra:1 Mem:2.94M | Creating Environment maps
Fra:1 Mem:2.94M | SSS preprocessing
Fra:1 Mem:2.94M Sce: 1 Ve:15590 Fa:11616 La:5
Fra:1 Mem:13.24M | Part 1-16
Fra:1 Mem:12.67M | Part 2-16
Fra:1 Mem:14.82M | Part 3-16
Fra:1 Mem:13.24M | Part 5-16
Fra:1 Mem:12.67M | Part 4-16
Fra:1 Mem:13.24M | Part 6-16
Fra:1 Mem:12.67M | Part 7-16
Fra:1 Mem:13.24M | Part 8-16
Fra:1 Mem:12.67M | Part 9-16
Fra:1 Mem:13.24M | Part 11-16
Fra:1 Mem:12.67M | Part 10-16
Fra:1 Mem:13.24M | Part 13-16
Fra:1 Mem:12.67M | Part 12-16
Fra:1 Mem:13.24M | Part 15-16
Fra:1 Mem:12.67M | Part 14-16
Fra:1 Mem:12.67M | Part 16-16
Fra:1 Mem:9.90M Sce: 1 Ve:15590 Fa:11616 La:5
Save to: littletoo.png -> littletoo.png

Blender quit
</pre>

<p>
The script <path>gentoo3.py</path> is used to customize rendering parameters.
We are using a hard-coded resolution of 800x600 in this guide.
</p>

<pre caption="gentoo3.py">
<comment>#!BPY
# Copyright (C) 2011 Gentoo Foundation, Inc.
# Written by Sebastian Pipping &lt;sping@gentoo.org&gt;
# Licensed under GPL v2 or later</comment>

<keyword>import</keyword> <var>Blender</var>

<var>scn</var> = <var>Blender</var>.Scene.GetCurrent()
<var>context</var> = <var>scn</var>.getRenderingContext()

<comment># Dimensions</comment>
<var>context</var>.imageSizeX(<const>800</const>)
<var>context</var>.imageSizeY(<const>600</const>)
<var>context</var>.setRenderWinSize(<const>100</const>)

<comment># Transparent PNG</comment>
<var>context</var>.enableRGBAColor()
<var>context</var>.imageType = <var>Blender</var>.Scene.Render.PNG
<var>context</var>.enablePremultiply()

<comment># Render</comment>
<var>context</var>.render()
<var>context</var>.saveRenderedImage(<const>'.png'</const>, <const>1</const>)
</pre>

</body>
</section>

</chapter>


</guide>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-29  1:40 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-04-29  1:40 UTC (permalink / raw
  To: gentoo-commits

sping       11/04/29 01:40:28

  Modified:             artwork.xml
  Log:
  Use bigger rendering of red gentoo3 logo, point to terms of usage, update rendering howto

Revision  Changes    Path
1.2                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.1&r2=1.2

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- artwork.xml	28 Apr 2011 13:51:08 -0000	1.1
+++ artwork.xml	29 Apr 2011 01:40:28 -0000	1.2
@@ -82,18 +82,27 @@
 <section>
 <title>The red &quot;gentoo&quot; logo</title>
 <body>
-<fig link="/images/gentoo-new.gif" />
+<fig link="/images/artwork/gentoo3-616x123.png" />
 <p>
 It is possible to render this logo as a transparent PNG with custom resolution.
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
 </p>
 
 <dl>
   <dt><b>Procedure:</b></dt>
   <dd>
     <ol>
-      <li>Get a copy of <uri link="http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">gentoo3.blend.bz2</uri></li>
-      <li>Unpack it using bunzip2</li>
-      <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering</li>
+      <li>Get a copy of <uri link="http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">gentoo3.blend.bz2</uri>
+        and unpack it using bunzip2
+      </li>
+      <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering, details below</li>
+      <li>Apply post-processing
+            <ol>
+              <li>Apply <e>Autocrop Image</e> in GIMP</li>
+              <li>Add Adam7 interlacing for web display</li>
+              <li>Optimize file size using OptiPNG losslessly</li>
+            </ol>
+      </li>
     </ol>
   </dd>
 </dl>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-29 22:23 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-04-29 22:23 UTC (permalink / raw
  To: gentoo-commits

sping       11/04/29 22:23:36

  Modified:             artwork.xml
  Log:
  Integrate Gentoo/FreeBSD logo

Revision  Changes    Path
1.3                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.2&r2=1.3

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- artwork.xml	29 Apr 2011 01:40:28 -0000	1.2
+++ artwork.xml	29 Apr 2011 22:23:36 -0000	1.3
@@ -68,6 +68,27 @@
 
 
 <chapter>
+<title>Varations of the &quot;g&quot; logo</title>
+
+<section>
+<title>Gentoo/FreeBSD logo</title>
+<body>
+<p>
+The <uri link="/proj/en/gentoo-alt/bsd/fbsd/index.xml">Gentoo/FreeBSD project</uri> has its own variation of the &quot;g&quot; logo.
+</p>
+<fig link="/images/artwork/GentooFreeBSD-logo-20060515-200x200.png" linkto="/images/artwork/GentooFreeBSD-logo-20060515.svg" />	
+<p>
+It has been created by Marius Morawski and is licensed under <uri link="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License, version 2</uri>.
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+</p>
+</body>
+</section>
+
+</chapter>
+
+
+
+<chapter>
 <title>Rendering the offical &quot;g&quot; logo</title>
 
 <section>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-29 22:48 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-04-29 22:48 UTC (permalink / raw
  To: gentoo-commits

sping       11/04/29 22:48:34

  Modified:             artwork.xml
  Log:
  Add page intro pointing to Gentoo Branded Artwork. Add note on variance in licensing.

Revision  Changes    Path
1.4                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.3&r2=1.4

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- artwork.xml	29 Apr 2011 22:23:36 -0000	1.3
+++ artwork.xml	29 Apr 2011 22:48:34 -0000	1.4
@@ -21,6 +21,27 @@
 
 
 <chapter>
+<title>About</title>
+
+<section>
+<body>
+<p>
+This page is about logos and graphical building blocks.
+For compositions like wallpapers and buttons
+please see <uri link="/main/en/graphics.xml">Gentoo Branded Artwork</uri>, instead.
+</p>
+<p>
+The licensing of the artwork on this page may differ <e>from piece to piece</e>.
+Please pay attention to the license of the very graphic you want to use.  Thank you.
+</p>
+</body>
+</section>
+
+</chapter>
+
+
+
+<chapter>
 <title>Gentoo Mascots</title>
 
 <section>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-30  1:56 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-04-30  1:56 UTC (permalink / raw
  To: gentoo-commits

sping       11/04/30 01:56:09

  Modified:             artwork.xml
  Log:
  Integrate vector "g" logo and Gentoo/OpenBSD logo, make todos stand out

Revision  Changes    Path
1.5                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.4&r2=1.5

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- artwork.xml	29 Apr 2011 22:48:34 -0000	1.4
+++ artwork.xml	30 Apr 2011 01:56:09 -0000	1.5
@@ -16,7 +16,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>1</version>
+<version>5</version>
 <date>2011-04-28</date>
 
 
@@ -58,7 +58,7 @@
 </p>
 
 <p>
-TODO
+<brite>TODO</brite>
 </p>
 </body>
 </section>
@@ -92,6 +92,30 @@
 <title>Varations of the &quot;g&quot; logo</title>
 
 <section>
+<title>Vector version &quot;g&quot; logo</title>
+<body>
+<p>
+Lennart Andre Rolland has created a vector remake of the &quot;g&quot; logo.
+Here it is side by side for comparision with the original Blender version.
+</p>
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/gentoo-logo-146x149.png" linkto="/images/gentoo-logo.svg" />	</ti>
+    <ti><fig link="/images/glogo-small.png" linkto="/images/gblend.png" /></ti>
+  </tr>
+  <tr>
+    <th>Vector remake</th>
+    <th>Blender version</th>
+  </tr>
+</table>
+<p>
+<brite>TODO</brite>
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+</p>
+</body>
+</section>
+
+<section>
 <title>Gentoo/FreeBSD logo</title>
 <body>
 <p>
@@ -105,6 +129,20 @@
 </body>
 </section>
 
+<section>
+<title>Gentoo/OpenBSD logo</title>
+<body>
+<p>
+The <uri link="/proj/en/gentoo-alt/bsd/obsd/index.xml">Gentoo/OpenBSD project</uri> has its own variation of the &quot;g&quot; logo.
+</p>
+<fig link="/images/artwork/gentoo-openbsd-160x150.png" linkto="/proj/en/gentoo-alt/bsd/obsd/images/gentoo-openbsd.png" />	
+<p>
+<brite>TODO</brite>
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+</p>
+</body>
+</section>
+
 </chapter>
 
 
@@ -116,7 +154,7 @@
 <title>The blue &quot;g&quot; logo</title>
 <body>
 <p>
-TODO
+<brite>TODO</brite>
 </p>
 </body>
 </section>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-30 17:37 David Abbott (dabbott)
  0 siblings, 0 replies; 32+ messages in thread
From: David Abbott (dabbott) @ 2011-04-30 17:37 UTC (permalink / raw
  To: gentoo-commits

dabbott     11/04/30 17:37:47

  Modified:             artwork.xml
  Log:
  lined up images all on left side

Revision  Changes    Path
1.6                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.5&r2=1.6

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- artwork.xml	30 Apr 2011 01:56:09 -0000	1.5
+++ artwork.xml	30 Apr 2011 17:37:47 -0000	1.6
@@ -8,6 +8,10 @@
   <mail>sping</mail>
 </author>
 
+<author title="Author">
+  <mail>dabbott</mail>
+</author>
+
 <abstract>
 Collection of information about available artwork and its usage.
 </abstract>
@@ -16,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>5</version>
-<date>2011-04-28</date>
+<version>6</version>
+<date>2011-04-30</date>
 
 
 <chapter>
@@ -47,8 +51,11 @@
 <section>
 <title>Larry the Cow</title>
 <body>
-<fig link="/images/icon-cow.png" />
-    
+  
+<p>
+<img src="/images/icon-cow.png" />
+</p>
+
 <p>
 Larry the cow originates from letter <e>s</e> of the font
 <uri link="http://www.fonthead.com/fonts/Font-Heads">Font Heads</uri>.
@@ -68,36 +75,51 @@
 <title>Znurt and his shadow</title>
 <body>
 <p>
-While Znurt also appears on the Gentoo <uri link="/">main page</uri>,
-his shadow is known from a previous design of Gentoo's <uri link="https://bugs.gentoo.org/">bugzilla instance</uri> only.
+While Znurt also appears on the Gentoo <uri link="/">main page</uri>, his shadow
+is known from a previous design of Gentoo's <uri
+  link="https://bugs.gentoo.org/">bugzilla instance</uri> only.
 </p>
-<fig link="/images/bugzilla.png" />
+
 <p>
-Separate graphics for each of them are available.  Click the respective image below to get to its vector sources.
+<img src="/images/bugzilla.png" />
 </p>
-<fig link="/images/artwork/znurt.png" linkto="/images/artwork/znurt.svg" />
-<fig link="/images/artwork/black-gentoo-thing.png" linkto="/images/artwork/black-gentoo-thing.svg" />
+
+<p>
+Separate graphics for each of them are available.  Click the respective image
+below to get to its vector sources.
+</p>
+
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/znurt.png"
+        linkto="/images/artwork/znurt.svg"/></ti>
+    <ti><fig link="/images/artwork/black-gentoo-thing.png"
+        linkto="/images/artwork/black-gentoo-thing.svg" /></ti>
+  </tr>
+</table>
+
 <p>
 Both SVGs and PNGs are licensed under
-<uri link="http://creativecommons.org/licenses/by-sa/2.5">Creative Commons - Attribution / Share Alike</uri>.
+<uri link="http://creativecommons.org/licenses/by-sa/2.5">Creative Commons -
+  Attribution / Share Alike</uri>.
 </p>
+
 </body>
 </section>
-
 </chapter>
 
-
-
 <chapter>
 <title>Varations of the &quot;g&quot; logo</title>
 
 <section>
 <title>Vector version &quot;g&quot; logo</title>
 <body>
+  
 <p>
 Lennart Andre Rolland has created a vector remake of the &quot;g&quot; logo.
 Here it is side by side for comparision with the original Blender version.
 </p>
+
 <table>
   <tr>
     <ti><fig link="/images/artwork/gentoo-logo-146x149.png" linkto="/images/gentoo-logo.svg" />	</ti>
@@ -108,38 +130,62 @@
     <th>Blender version</th>
   </tr>
 </table>
+
 <p>
 <brite>TODO</brite>
 The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
 </p>
+
 </body>
 </section>
 
 <section>
 <title>Gentoo/FreeBSD logo</title>
 <body>
+  
 <p>
-The <uri link="/proj/en/gentoo-alt/bsd/fbsd/index.xml">Gentoo/FreeBSD project</uri> has its own variation of the &quot;g&quot; logo.
+The <uri link="/proj/en/gentoo-alt/bsd/fbsd/index.xml">Gentoo/FreeBSD
+  project</uri> has its own variation of the &quot;g&quot; logo.
 </p>
-<fig link="/images/artwork/GentooFreeBSD-logo-20060515-200x200.png" linkto="/images/artwork/GentooFreeBSD-logo-20060515.svg" />	
+
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/GentooFreeBSD-logo-20060515-200x200.png"
+        linkto="/images/artwork/GentooFreeBSD-logo-20060515.svg" /></ti>
+  </tr>
+</table>
+
 <p>
-It has been created by Marius Morawski and is licensed under <uri link="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License, version 2</uri>.
-The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+It has been created by Marius Morawski and is licensed under <uri
+  link="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License,
+  version 2</uri>. The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo
+  Usage Guidelines</uri> apply.
 </p>
+
 </body>
 </section>
 
 <section>
 <title>Gentoo/OpenBSD logo</title>
 <body>
+  
 <p>
-The <uri link="/proj/en/gentoo-alt/bsd/obsd/index.xml">Gentoo/OpenBSD project</uri> has its own variation of the &quot;g&quot; logo.
+The <uri link="/proj/en/gentoo-alt/bsd/obsd/index.xml">Gentoo/OpenBSD
+  project</uri> has its own variation of the &quot;g&quot; logo.
 </p>
-<fig link="/images/artwork/gentoo-openbsd-160x150.png" linkto="/proj/en/gentoo-alt/bsd/obsd/images/gentoo-openbsd.png" />	
+
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/gentoo-openbsd-160x150.png"
+        linkto="/proj/en/gentoo-alt/bsd/obsd/images/gentoo-openbsd.png" /></ti>
+  </tr>
+</table>
+
 <p>
 <brite>TODO</brite>
 The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
 </p>
+
 </body>
 </section>
 
@@ -153,35 +199,43 @@
 <section>
 <title>The blue &quot;g&quot; logo</title>
 <body>
+  
 <p>
 <brite>TODO</brite>
 </p>
+
 </body>
 </section>
 
 <section>
 <title>The red &quot;gentoo&quot; logo</title>
 <body>
-<fig link="/images/artwork/gentoo3-616x123.png" />
+
+<p>
+<img src="/images/artwork/gentoo3-616x123.png" />
+</p>
+
 <p>
 It is possible to render this logo as a transparent PNG with custom resolution.
-The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage
+  Guidelines</uri> apply.
 </p>
 
 <dl>
   <dt><b>Procedure:</b></dt>
   <dd>
     <ol>
-      <li>Get a copy of <uri link="http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">gentoo3.blend.bz2</uri>
-        and unpack it using bunzip2
-      </li>
-      <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering, details below</li>
+      <li>Get a copy of <uri link=
+          "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">
+          gentoo3.blend.bz2</uri> and unpack it using bunzip2</li>
+      <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering,
+        details below</li>
       <li>Apply post-processing
-            <ol>
-              <li>Apply <e>Autocrop Image</e> in GIMP</li>
-              <li>Add Adam7 interlacing for web display</li>
-              <li>Optimize file size using OptiPNG losslessly</li>
-            </ol>
+    <ol>
+      <li>Apply <e>Autocrop Image</e> in GIMP</li>
+      <li>Add Adam7 interlacing for web display</li>
+      <li>Optimize file size using OptiPNG losslessly</li>
+    </ol>
       </li>
     </ol>
   </dd>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-04-30 18:49 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-04-30 18:49 UTC (permalink / raw
  To: gentoo-commits

sping       11/04/30 18:49:06

  Modified:             artwork.xml
  Log:
  Add more labels to graphics

Revision  Changes    Path
1.7                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.6&r2=1.7

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- artwork.xml	30 Apr 2011 17:37:47 -0000	1.6
+++ artwork.xml	30 Apr 2011 18:49:06 -0000	1.7
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>6</version>
+<version>7</version>
 <date>2011-04-30</date>
 
 
@@ -93,9 +93,13 @@
   <tr>
     <ti><fig link="/images/artwork/znurt.png"
         linkto="/images/artwork/znurt.svg"/></ti>
-    <ti><fig link="/images/artwork/black-gentoo-thing.png"
+    <ti><fig link="/images/artwork/black-gentoo-thing-134x79.png"
         linkto="/images/artwork/black-gentoo-thing.svg" /></ti>
   </tr>
+  <tr>
+    <th>Znurt</th>
+    <th>Unnamed black thing</th>
+  </tr>
 </table>
 
 <p>
@@ -153,6 +157,9 @@
     <ti><fig link="/images/artwork/GentooFreeBSD-logo-20060515-200x200.png"
         linkto="/images/artwork/GentooFreeBSD-logo-20060515.svg" /></ti>
   </tr>
+  <tr>
+    <th>Gentoo/FreeBSD logo</th>
+  </tr>
 </table>
 
 <p>
@@ -179,6 +186,9 @@
     <ti><fig link="/images/artwork/gentoo-openbsd-160x150.png"
         linkto="/proj/en/gentoo-alt/bsd/obsd/images/gentoo-openbsd.png" /></ti>
   </tr>
+  <tr>
+    <th>Gentoo/OpenBSD logo</th>
+  </tr>
 </table>
 
 <p>
@@ -211,9 +221,14 @@
 <title>The red &quot;gentoo&quot; logo</title>
 <body>
 
-<p>
-<img src="/images/artwork/gentoo3-616x123.png" />
-</p>
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/gentoo3-616x123.png" /></ti>
+  </tr>
+  <tr>
+    <th>Rendering of gentoo3.blend</th>
+  </tr>
+</table>
 
 <p>
 It is possible to render this logo as a transparent PNG with custom resolution.






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-05-07  2:53 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-05-07  2:53 UTC (permalink / raw
  To: gentoo-commits

sping       11/05/07 02:53:58

  Modified:             artwork.xml
  Log:
  Mention license of vector "g" logo (CC-BY-SA/2.5)

Revision  Changes    Path
1.8                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.7&r2=1.8

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- artwork.xml	30 Apr 2011 18:49:06 -0000	1.7
+++ artwork.xml	7 May 2011 02:53:58 -0000	1.8
@@ -136,7 +136,9 @@
 </table>
 
 <p>
-<brite>TODO</brite>
+This vector version is licensed under
+<uri link="http://creativecommons.org/licenses/by-sa/2.5">Creative Commons -
+  Attribution / Share Alike</uri>.
 The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
 </p>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-05-10 16:30 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 32+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2011-05-10 16:30 UTC (permalink / raw
  To: gentoo-commits

nimiux      11/05/10 16:30:35

  Modified:             artwork.xml
  Log:
  Fixed typo

Revision  Changes    Path
1.9                  xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.8&r2=1.9

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- artwork.xml	7 May 2011 02:53:58 -0000	1.8
+++ artwork.xml	10 May 2011 16:30:35 -0000	1.9
@@ -113,7 +113,7 @@
 </chapter>
 
 <chapter>
-<title>Varations of the &quot;g&quot; logo</title>
+<title>Variations of the &quot;g&quot; logo</title>
 
 <section>
 <title>Vector version &quot;g&quot; logo</title>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-01 19:17 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-01 19:17 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/01 19:17:42

  Modified:             artwork.xml
  Log:
  Integrate Larry the cow images, add some related history, fix some &apos;

Revision  Changes    Path
1.10                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.9&r2=1.10

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- artwork.xml	10 May 2011 16:30:35 -0000	1.9
+++ artwork.xml	1 Jun 2011 19:17:42 -0000	1.10
@@ -20,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>7</version>
-<date>2011-04-30</date>
+<version>8</version>
+<date>2011-06-01</date>
 
 
 <chapter>
@@ -51,21 +51,68 @@
 <section>
 <title>Larry the Cow</title>
 <body>
-  
+
 <p>
-<img src="/images/icon-cow.png" />
+<img src="http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/images/fishhead.gif" />
 </p>
 
 <p>
-Larry the cow originates from letter <e>s</e> of the font
-<uri link="http://www.fonthead.com/fonts/Font-Heads">Font Heads</uri>.
-Therefore, usage of Larry the cow needs to respect the
-<uri link=" http://www.fonthead.com/license">End User License Agreement (EULA)</uri>
-of <uri link="http://www.fonthead.com/">Fonthead Design Inc.</uri>.
+As to current best knowledge Larry was first introduced to Gentoo by Daniel Robbins by the graphic above around 2002-01-02.
+All of these heads originate from a font labeled <uri link="http://www.fonthead.com/fonts/Font-Heads">Font Heads</uri>
+created in 2000 by <uri link="http://new.myfonts.com/person/Ethan_Paul_Dunham/">Ethan Dunham</uri> of
+<uri link="http://www.fonthead.com/">Fonthead Design</uri> licensed under the
+<uri link=" http://www.fonthead.com/license">End User License Agreement (EULA)</uri> of Fonthead Design.
 </p>
 
 <p>
-<brite>TODO</brite>
+Of those heads only the cow was integrated with the gentoo.org website &mdash; in the
+<uri link="http://www.gentoo.org/main/en/about.xml">about section</uri>, the 404 page and
+to accompany certain news posts &mdash; under the name of &quot;Larry the Cow&quot;.
+</p>
+
+<p>
+On 2004-11-25 <uri link="http://peach.smartart.it/">Matteo &quot;Peach&quot; Pescarin</uri>
+<uri link="https://forums.gentoo.org/viewtopic-t-257123.html">introduced</uri> a version of Larry with body,
+originally showing an udder.
+Due to a discussion about the gender of Larry and the word &quot;cow&quot; in general Matteo soon removed the udder.
+
+As he traced Larry&apos;s head from a small bitmap his version of Larry has a distinguishable look, best seen side by side.
+</p>
+
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/larry-font-head-200x180.png"
+        linkto="/images/artwork/larry-font-head.svg"/></ti>
+    <ti><fig link="/images/artwork/larry-peach-200x180.png"
+        /></ti>
+  </tr>
+  <tr>
+    <th>Initial version by Ethan Dunham<br />
+      now available under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Version by Matteo &quot;Peach&quot; Pescarin<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+  </tr>
+</table>
+
+<p>
+Besides the initial images on gentoo.org, other derivate works seems to have used Matteo&apos;s version.
+</p>
+
+<p>
+On request by the Gentoo Foundation, Fonthead Design Inc. gave written permission to use the original artwork of Larry the Cow under the
+<uri link="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 license</uri> license on 2011-05-31.
+</p>
+</body>
+</section>
+
+
+<section>
+<title>Related: Ripple icons</title>
+<body>
+<p>
+<brite>TODO</brite><br />
+<img src="/images/icon-cow.png" />
+<img src="/images/icon-gentoo.png" />
 </p>
 </body>
 </section>
@@ -76,7 +123,7 @@
 <body>
 <p>
 While Znurt also appears on the Gentoo <uri link="/">main page</uri>, his shadow
-is known from a previous design of Gentoo's <uri
+is known from a previous design of Gentoo&apos;s <uri
   link="https://bugs.gentoo.org/">bugzilla instance</uri> only.
 </p>
 
@@ -322,7 +369,7 @@
 
 <comment># Render</comment>
 <var>context</var>.render()
-<var>context</var>.saveRenderedImage(<const>'.png'</const>, <const>1</const>)
+<var>context</var>.saveRenderedImage(<const>&apos;.png&apos;</const>, <const>1</const>)
 </pre>
 
 </body>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-01 20:44 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-01 20:44 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/01 20:44:55

  Modified:             artwork.xml
  Log:
  Integrate Larry edits with body, add note on derived works

Revision  Changes    Path
1.11                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.10&r2=1.11

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- artwork.xml	1 Jun 2011 19:17:42 -0000	1.10
+++ artwork.xml	1 Jun 2011 20:44:55 -0000	1.11
@@ -74,9 +74,28 @@
 On 2004-11-25 <uri link="http://peach.smartart.it/">Matteo &quot;Peach&quot; Pescarin</uri>
 <uri link="https://forums.gentoo.org/viewtopic-t-257123.html">introduced</uri> a version of Larry with body,
 originally showing an udder.
-Due to a discussion about the gender of Larry and the word &quot;cow&quot; in general Matteo soon removed the udder.
+Due to a discussion about the gender of Larry, Matteo decided to remove the udder.
+</p>
+
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/larry-the-cow-full-udder-200x191.png"
+        linkto="/images/artwork/larry-the-cow-full-udder.svg"/></ti>
+    <ti><fig link="/images/artwork/larry-the-cow-full-200x191.png"
+        linkto="/images/artwork/larry-the-cow-full.svg"/></ti>
+  </tr>
+  <tr>
+    <th>Original female edition<br />
+      by Ethan Dunham and Matteo Pescarin<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Male edition<br />
+      by Ethan Dunham and Matteo Pescarin<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+  </tr>
+</table>
 
-As he traced Larry&apos;s head from a small bitmap his version of Larry has a distinguishable look, best seen side by side.
+<p>
+As Matteo traced Larry&apos;s head from a small bitmap back then, Larry&apos;s head has a distinguishable look in his version, best seen side by side.
 </p>
 
 <table>
@@ -87,9 +106,11 @@
         /></ti>
   </tr>
   <tr>
-    <th>Initial version by Ethan Dunham<br />
+    <th>Initial version<br />
+      by Ethan Dunham<br />
       now available under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
-    <th>Version by Matteo &quot;Peach&quot; Pescarin<br />
+    <th>Re-traced successor<br />
+      by Ethan Dunham and Matteo Pescarin<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
@@ -102,6 +123,12 @@
 On request by the Gentoo Foundation, Fonthead Design Inc. gave written permission to use the original artwork of Larry the Cow under the
 <uri link="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 license</uri> license on 2011-05-31.
 </p>
+
+<p>
+When creating artwork derived from one of Matteo&apos;s edits be sure to mention both Ethan Dunham and Matteo Pescarin to fully satisfy attribution.
+</p>
+
+
 </body>
 </section>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-01 21:07 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-01 21:07 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/01 21:07:42

  Modified:             artwork.xml
  Log:
  Link to just-arrived larry-peach.svg

Revision  Changes    Path
1.12                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.11&r2=1.12

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- artwork.xml	1 Jun 2011 20:44:55 -0000	1.11
+++ artwork.xml	1 Jun 2011 21:07:42 -0000	1.12
@@ -103,7 +103,7 @@
     <ti><fig link="/images/artwork/larry-font-head-200x180.png"
         linkto="/images/artwork/larry-font-head.svg"/></ti>
     <ti><fig link="/images/artwork/larry-peach-200x180.png"
-        /></ti>
+        linkto="/images/artwork/larry-peach.svg"/></ti>
   </tr>
   <tr>
     <th>Initial version<br />






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-01 23:21 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-01 23:21 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/01 23:21:26

  Modified:             artwork.xml
  Log:
  Integrate ripple icons, misc improvements

Revision  Changes    Path
1.13                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.12&r2=1.13

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- artwork.xml	1 Jun 2011 21:07:42 -0000	1.12
+++ artwork.xml	1 Jun 2011 23:21:26 -0000	1.13
@@ -20,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>8</version>
-<date>2011-06-01</date>
+<version>9</version>
+<date>2011-06-02</date>
 
 
 <chapter>
@@ -30,14 +30,16 @@
 <section>
 <body>
 <p>
-This page is about logos and graphical building blocks.
+This page is about logos and graphical building blocks related to Gentoo Linux.
+</p>
+<note>
 For compositions like wallpapers and buttons
 please see <uri link="/main/en/graphics.xml">Gentoo Branded Artwork</uri>, instead.
-</p>
-<p>
+</note>
+<impo>
 The licensing of the artwork on this page may differ <e>from piece to piece</e>.
-Please pay attention to the license of the very graphic you want to use.  Thank you.
-</p>
+Please pay attention to the license of the <e>very</e> graphic you want to use.  Thank you.
+</impo>
 </body>
 </section>
 
@@ -120,13 +122,14 @@
 </p>
 
 <p>
-On request by the Gentoo Foundation, Fonthead Design Inc. gave written permission to use the original artwork of Larry the Cow under the
+On request of the Gentoo Foundation, Fonthead Design Inc. gave written permission to use the original artwork of Larry the Cow
+(letter &quot;s&quot; of font <uri link="http://www.fonthead.com/fonts/Font-Heads">Font Heads</uri>) under the
 <uri link="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 license</uri> license on 2011-05-31.
 </p>
 
-<p>
+<impo>
 When creating artwork derived from one of Matteo&apos;s edits be sure to mention both Ethan Dunham and Matteo Pescarin to fully satisfy attribution.
-</p>
+</impo>
 
 
 </body>
@@ -137,10 +140,36 @@
 <title>Related: Ripple icons</title>
 <body>
 <p>
-<brite>TODO</brite><br />
-<img src="/images/icon-cow.png" />
-<img src="/images/icon-gentoo.png" />
+These icons appear at the <uri link="http://www.gentoo.org/">front page</uri> of gentoo.org next to a news item.
 </p>
+
+<table>
+  <tr>
+    <ti><fig link="/images/artwork/ripples-larry-105x105.png"
+        linkto="/images/artwork/ripples-larry.svg"/></ti>
+    <ti><fig link="/images/artwork/ripples-gblend-105x105.png"
+        linkto="/images/artwork/ripples-gblend.svg"/></ti>
+  </tr>
+  <tr>
+    <th>Ripples Larry<br />
+      by Ethan Dunham <br />
+      and Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Ripples Gentoo<br />
+      <br />
+      by Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+  </tr>
+</table>
+
+<impo>
+For <e>Ripples Gentoo</e>, the <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+</impo>
+<note>
+Please note that the <uri link="/images/artwork/ripples-gblend.svg">SVG of Ripples Gentoo</uri> is linking to
+<uri link="/images/artwork/gblend.png">gblend.png</uri> internally and therfore <e>depends</e> on that file.
+</note>
+
 </body>
 </section>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-01 23:38 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-01 23:38 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/01 23:38:25

  Modified:             artwork.xml
  Log:
  Misc improvements

Revision  Changes    Path
1.14                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.13&r2=1.14

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- artwork.xml	1 Jun 2011 23:21:26 -0000	1.13
+++ artwork.xml	1 Jun 2011 23:38:25 -0000	1.14
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>9</version>
+<version>10</version>
 <date>2011-06-02</date>
 
 
@@ -38,7 +38,7 @@
 </note>
 <impo>
 The licensing of the artwork on this page may differ <e>from piece to piece</e>.
-Please pay attention to the license of the <e>very</e> graphic you want to use.  Thank you.
+Please pay close attention to the license of the very graphic you want to use.  Thank you.
 </impo>
 </body>
 </section>
@@ -188,8 +188,7 @@
 </p>
 
 <p>
-Separate graphics for each of them are available.  Click the respective image
-below to get to its vector sources.
+Separate graphics for each of them are available.
 </p>
 
 <table>
@@ -200,8 +199,12 @@
         linkto="/images/artwork/black-gentoo-thing.svg" /></ti>
   </tr>
   <tr>
-    <th>Znurt</th>
-    <th>Unnamed black thing</th>
+    <th>Znurt<br />
+      by Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Unnamed black thing<br />
+      by Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 
@@ -233,17 +236,18 @@
     <ti><fig link="/images/glogo-small.png" linkto="/images/gblend.png" /></ti>
   </tr>
   <tr>
-    <th>Vector remake</th>
-    <th>Blender version</th>
+    <th>Vector remake<br />
+      by Lennart Andre Rolland<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Blender version<br />
+      by Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 
-<p>
-This vector version is licensed under
-<uri link="http://creativecommons.org/licenses/by-sa/2.5">Creative Commons -
-  Attribution / Share Alike</uri>.
+<impo>
 The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
-</p>
+</impo>
 
 </body>
 </section>
@@ -263,16 +267,15 @@
         linkto="/images/artwork/GentooFreeBSD-logo-20060515.svg" /></ti>
   </tr>
   <tr>
-    <th>Gentoo/FreeBSD logo</th>
+    <th>Gentoo/FreeBSD logo<br />
+      by Marius Morawski<br />
+      licensed under <uri link="http://www.gnu.org/licenses/gpl-2.0.html">GNU GPL 2.0</uri></th>
   </tr>
 </table>
 
-<p>
-It has been created by Marius Morawski and is licensed under <uri
-  link="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License,
-  version 2</uri>. The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo
-  Usage Guidelines</uri> apply.
-</p>
+<impo>
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+</impo>
 
 </body>
 </section>
@@ -296,10 +299,12 @@
   </tr>
 </table>
 
-<p>
-<brite>TODO</brite>
+<warn>
+As of the moment, licensing of this work is not clear.  Its use is at your own risk.
+</warn>
+<impo>
 The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
-</p>
+</impo>
 
 </body>
 </section>
@@ -331,7 +336,9 @@
     <ti><fig link="/images/artwork/gentoo3-616x123.png" /></ti>
   </tr>
   <tr>
-    <th>Rendering of gentoo3.blend</th>
+    <th>Rendering of gentoo3.blend<br />
+      by Gentoo Foundation, Inc.
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 
@@ -347,7 +354,9 @@
     <ol>
       <li>Get a copy of <uri link=
           "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">
-          gentoo3.blend.bz2</uri> and unpack it using bunzip2</li>
+          gentoo3.blend.bz2</uri>
+          (licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri>)
+          and unpack it using bunzip2</li>
       <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering,
         details below</li>
       <li>Apply post-processing






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-02  1:16 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-02  1:16 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/02 01:16:24

  Modified:             artwork.xml
  Log:
  Integrate a3li's version of Larry the cow

Revision  Changes    Path
1.15                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.14&r2=1.15

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- artwork.xml	1 Jun 2011 23:38:25 -0000	1.14
+++ artwork.xml	2 Jun 2011 01:16:24 -0000	1.15
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>10</version>
+<version>11</version>
 <date>2011-06-02</date>
 
 
@@ -97,7 +97,8 @@
 </table>
 
 <p>
-As Matteo traced Larry&apos;s head from a small bitmap back then, Larry&apos;s head has a distinguishable look in his version, best seen side by side.
+As Matteo traced Larry&apos;s head from a small bitmap back then, Larry&apos;s head has a distinguishable look in his version, best noticed side by side.
+Also, there is an alternative re-trace by Alex Legler.  Both his and Matteo&quot;s version have been used in print.
 </p>
 
 <table>
@@ -106,6 +107,8 @@
         linkto="/images/artwork/larry-font-head.svg"/></ti>
     <ti><fig link="/images/artwork/larry-peach-200x180.png"
         linkto="/images/artwork/larry-peach.svg"/></ti>
+    <ti><fig link="/images/artwork/larry-a3li-200x180.png"
+        linkto="/images/artwork/larry-a3li.svg"/></ti>
   </tr>
   <tr>
     <th>Initial version<br />
@@ -114,14 +117,13 @@
     <th>Re-traced successor<br />
       by Ethan Dunham and Matteo Pescarin<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Alternative re-trace<br />
+      by Ethan Dunham and Alex Legler<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 
 <p>
-Besides the initial images on gentoo.org, other derivate works seems to have used Matteo&apos;s version.
-</p>
-
-<p>
 On request of the Gentoo Foundation, Fonthead Design Inc. gave written permission to use the original artwork of Larry the Cow
 (letter &quot;s&quot; of font <uri link="http://www.fonthead.com/fonts/Font-Heads">Font Heads</uri>) under the
 <uri link="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 license</uri> license on 2011-05-31.






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-02  1:20 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-02  1:20 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/02 01:20:34

  Modified:             artwork.xml
  Log:
  Misc improvements

Revision  Changes    Path
1.16                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.15&r2=1.16

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- artwork.xml	2 Jun 2011 01:16:24 -0000	1.15
+++ artwork.xml	2 Jun 2011 01:20:34 -0000	1.16
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>11</version>
+<version>12</version>
 <date>2011-06-02</date>
 
 
@@ -98,7 +98,7 @@
 
 <p>
 As Matteo traced Larry&apos;s head from a small bitmap back then, Larry&apos;s head has a distinguishable look in his version, best noticed side by side.
-Also, there is an alternative re-trace by Alex Legler.  Both his and Matteo&quot;s version have been used in print.
+Also, there is an alternative re-trace by Alex Legler.  Both his and Matteo&apos;s version have been used in print.
 </p>
 
 <table>
@@ -131,6 +131,7 @@
 
 <impo>
 When creating artwork derived from one of Matteo&apos;s edits be sure to mention both Ethan Dunham and Matteo Pescarin to fully satisfy attribution.
+Same applies to the version of Alex Legler, respectively.
 </impo>
 
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-02  1:24 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-02  1:24 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/02 01:24:59

  Modified:             artwork.xml
  Log:
  Mention author of vector remakes

Revision  Changes    Path
1.17                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.16&r2=1.17

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- artwork.xml	2 Jun 2011 01:20:34 -0000	1.16
+++ artwork.xml	2 Jun 2011 01:24:59 -0000	1.17
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>12</version>
+<version>13</version>
 <date>2011-06-02</date>
 
 
@@ -144,6 +144,7 @@
 <body>
 <p>
 These icons appear at the <uri link="http://www.gentoo.org/">front page</uri> of gentoo.org next to a news item.
+The vector remakes below were created by Sebastian Pipping.
 </p>
 
 <table>
@@ -192,6 +193,7 @@
 
 <p>
 Separate graphics for each of them are available.
+The vector remakes below were created by Sebastian Pipping.
 </p>
 
 <table>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03  0:02 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03  0:02 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 00:02:34

  Modified:             artwork.xml
  Log:
  Give more credit to Daniel Robbins, misc improvements

Revision  Changes    Path
1.18                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.17&r2=1.18

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- artwork.xml	2 Jun 2011 01:24:59 -0000	1.17
+++ artwork.xml	3 Jun 2011 00:02:34 -0000	1.18
@@ -193,7 +193,8 @@
 
 <p>
 Separate graphics for each of them are available.
-The vector remakes below were created by Sebastian Pipping.
+Original artwork was done by Daniel Robbins,
+vector remakes were created by Sebastian Pipping.
 </p>
 
 <table>
@@ -232,7 +233,8 @@
   
 <p>
 Lennart Andre Rolland has created a vector remake of the &quot;g&quot; logo.
-Here it is side by side for comparision with the original Blender version.
+Here it is side by side for comparision with the original Blender version
+created by Daniel Robbins.
 </p>
 
 <table>
@@ -336,6 +338,10 @@
 <title>The red &quot;gentoo&quot; logo</title>
 <body>
 
+<p>
+Again, original artwork by Daniel Robbins.
+</p>
+
 <table>
   <tr>
     <ti><fig link="/images/artwork/gentoo3-616x123.png" /></ti>
@@ -347,10 +353,12 @@
   </tr>
 </table>
 
+<impo>
+The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
+</impo>
+
 <p>
 It is possible to render this logo as a transparent PNG with custom resolution.
-The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage
-  Guidelines</uri> apply.
 </p>
 
 <dl>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03  0:23 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03  0:23 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 00:23:30

  Modified:             artwork.xml
  Log:
  Give more credit to Daniel Robbins

Revision  Changes    Path
1.19                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.18&r2=1.19

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- artwork.xml	3 Jun 2011 00:02:34 -0000	1.18
+++ artwork.xml	3 Jun 2011 00:23:30 -0000	1.19
@@ -144,7 +144,7 @@
 <body>
 <p>
 These icons appear at the <uri link="http://www.gentoo.org/">front page</uri> of gentoo.org next to a news item.
-The vector remakes below were created by Sebastian Pipping.
+The original artwork was done by Daniel Robbins, vector remakes were created by Sebastian Pipping.
 </p>
 
 <table>
@@ -193,8 +193,7 @@
 
 <p>
 Separate graphics for each of them are available.
-Original artwork was done by Daniel Robbins,
-vector remakes were created by Sebastian Pipping.
+The original artwork was done by Daniel Robbins, vector remakes were created by Sebastian Pipping.
 </p>
 
 <table>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03 11:23 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03 11:23 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 11:23:24

  Modified:             artwork.xml
  Log:
  Integrate dark/mono version of vector "g"

Revision  Changes    Path
1.20                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.19&r2=1.20

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- artwork.xml	3 Jun 2011 00:23:30 -0000	1.19
+++ artwork.xml	3 Jun 2011 11:23:24 -0000	1.20
@@ -20,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>13</version>
-<date>2011-06-02</date>
+<version>14</version>
+<date>2011-06-03</date>
 
 
 <chapter>
@@ -231,23 +231,30 @@
 <body>
   
 <p>
-Lennart Andre Rolland has created a vector remake of the &quot;g&quot; logo.
+Lennart Andre Rolland has created a vector version of the &quot;g&quot; logo.
 Here it is side by side for comparision with the original Blender version
 created by Daniel Robbins.
 </p>
 
 <table>
   <tr>
-    <ti><fig link="/images/artwork/gentoo-logo-146x149.png" linkto="/images/gentoo-logo.svg" />	</ti>
     <ti><fig link="/images/glogo-small.png" linkto="/images/gblend.png" /></ti>
+    <ti><fig link="/images/artwork/gentoo-logo-146x149.png" linkto="/images/gentoo-logo.svg" /></ti>
+    <ti><fig link="/images/artwork/gentoo-logo-dark-146x149.png" linkto="/images/artwork/gentoo-logo-dark.svg" /></ti>
   </tr>
   <tr>
-    <th>Vector remake<br />
-      by Lennart Andre Rolland<br />
-      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
     <th>Blender version<br />
+      <br />
       by Gentoo Foundation, Inc.<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Vector version<br />
+      <br />
+      by Lennart Andre Rolland<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Vector version dark/mono<br />
+      by Lennart Andre Rolland<br />
+      and Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03 12:06 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03 12:06 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 12:06:33

  Modified:             artwork.xml
  Log:
  Integrate "g" logo by peach

Revision  Changes    Path
1.21                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.20&r2=1.21

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- artwork.xml	3 Jun 2011 11:23:24 -0000	1.20
+++ artwork.xml	3 Jun 2011 12:06:33 -0000	1.21
@@ -231,8 +231,9 @@
 <body>
   
 <p>
-Lennart Andre Rolland has created a vector version of the &quot;g&quot; logo.
-Here it is side by side for comparision with the original Blender version
+Lennart Andre Rolland has created a vector version of the &quot;g&quot; logo which is widely used by now.
+There also is a vector version by Matteo &quot;Peach&quot; Pescarin.
+Below you can see them side by side for comparision with the original Blender version
 created by Daniel Robbins.
 </p>
 
@@ -256,6 +257,18 @@
       and Gentoo Foundation, Inc.<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
+  <tr>
+    <ti><fig link="/images/glogo-small.png" linkto="/images/gblend.png" /></ti>
+    <ti><fig link="/images/artwork/gentoo-logo-peach-146x149.png" linkto="/images/artwork/gentoo-logo-peach.svg" /></ti>
+  </tr>
+  <tr>
+    <th>Blender version<br />
+      by Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Vector version<br />
+      by Matteo Pescarin<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+  </tr>
 </table>
 
 <impo>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03 14:55 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03 14:55 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 14:55:17

  Modified:             artwork.xml
  Log:
  Add plain version of Matteo's "g" logo

Revision  Changes    Path
1.22                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.21&r2=1.22

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- artwork.xml	3 Jun 2011 12:06:33 -0000	1.21
+++ artwork.xml	3 Jun 2011 14:55:17 -0000	1.22
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>14</version>
+<version>15</version>
 <date>2011-06-03</date>
 
 
@@ -259,13 +259,17 @@
   </tr>
   <tr>
     <ti><fig link="/images/glogo-small.png" linkto="/images/gblend.png" /></ti>
+    <ti><fig link="/images/artwork/gentoo-logo-peach-plain-146x149.png" linkto="/images/artwork/gentoo-logo-peach-plain.svg" /></ti>
     <ti><fig link="/images/artwork/gentoo-logo-peach-146x149.png" linkto="/images/artwork/gentoo-logo-peach.svg" /></ti>
   </tr>
   <tr>
     <th>Blender version<br />
       by Gentoo Foundation, Inc.<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
-    <th>Vector version<br />
+    <th>Vector version plain<br />
+      by Matteo Pescarin<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Vector version initial<br />
       by Matteo Pescarin<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03 17:17 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03 17:17 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 17:17:09

  Modified:             artwork.xml
  Log:
  Integrate page on colors

Revision  Changes    Path
1.23                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.22&r2=1.23

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- artwork.xml	3 Jun 2011 14:55:17 -0000	1.22
+++ artwork.xml	3 Jun 2011 17:17:09 -0000	1.23
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>15</version>
+<version>16</version>
 <date>2011-06-03</date>
 
 
@@ -36,6 +36,9 @@
 For compositions like wallpapers and buttons
 please see <uri link="/main/en/graphics.xml">Gentoo Branded Artwork</uri>, instead.
 </note>
+<note>
+If you consider creating artwork for Gentoo, please also check out the <uri link="colors.xml">Gentoo Color Palette</uri>.
+</note>
 <impo>
 The licensing of the artwork on this page may differ <e>from piece to piece</e>.
 Please pay close attention to the license of the very graphic you want to use.  Thank you.






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-03 18:00 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-03 18:00 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/03 18:00:16

  Modified:             artwork.xml
  Log:
  Introduce ids (i.e. HTML anchors)

Revision  Changes    Path
1.24                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.23&r2=1.24

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- artwork.xml	3 Jun 2011 17:17:09 -0000	1.23
+++ artwork.xml	3 Jun 2011 18:00:16 -0000	1.24
@@ -20,7 +20,7 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>16</version>
+<version>17</version>
 <date>2011-06-03</date>
 
 
@@ -50,10 +50,10 @@
 
 
 
-<chapter>
+<chapter id="mascots">
 <title>Gentoo Mascots</title>
 
-<section>
+<section id="larry">
 <title>Larry the Cow</title>
 <body>
 
@@ -181,7 +181,7 @@
 </section>
 
 
-<section>
+<section id="znurt">
 <title>Znurt and his shadow</title>
 <body>
 <p>
@@ -285,7 +285,7 @@
 </body>
 </section>
 
-<section>
+<section id="gentoo-freebsd">
 <title>Gentoo/FreeBSD logo</title>
 <body>
   
@@ -313,7 +313,7 @@
 </body>
 </section>
 
-<section>
+<section id="gentoo-openbsd">
 <title>Gentoo/OpenBSD logo</title>
 <body>
   
@@ -346,7 +346,7 @@
 
 
 
-<chapter>
+<chapter id="rendering">
 <title>Rendering the offical &quot;g&quot; logo</title>
 
 <section>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-04 17:19 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-04 17:19 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/04 17:19:33

  Modified:             artwork.xml
  Log:
  Update licensing of Gentoo/OpenBSD logo

Revision  Changes    Path
1.25                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.24&r2=1.25

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- artwork.xml	3 Jun 2011 18:00:16 -0000	1.24
+++ artwork.xml	4 Jun 2011 17:19:32 -0000	1.25
@@ -20,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>17</version>
-<date>2011-06-03</date>
+<version>18</version>
+<date>2011-06-04</date>
 
 
 <chapter>
@@ -318,8 +318,8 @@
 <body>
   
 <p>
-The <uri link="/proj/en/gentoo-alt/bsd/obsd/index.xml">Gentoo/OpenBSD
-  project</uri> has its own variation of the &quot;g&quot; logo.
+The <uri link="/proj/en/gentoo-alt/bsd/obsd/index.xml">Gentoo/OpenBSD project</uri>
+has its own variation of the &quot;g&quot; logo created by Dawid Węgliński.
 </p>
 
 <table>
@@ -328,13 +328,12 @@
         linkto="/proj/en/gentoo-alt/bsd/obsd/images/gentoo-openbsd.png" /></ti>
   </tr>
   <tr>
-    <th>Gentoo/OpenBSD logo</th>
+    <th>Gentoo/OpenBSD logo<br />
+      by Gentoo Foundation, Inc.<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 
-<warn>
-As of the moment, licensing of this work is not clear.  Its use is at your own risk.
-</warn>
 <impo>
 The <uri link="/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</uri> apply.
 </impo>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-04 17:20 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-04 17:20 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/04 17:20:29

  Modified:             artwork.xml
  Log:
  Add year of Gentoo/OpenBSD logo creation

Revision  Changes    Path
1.26                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.25&r2=1.26

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- artwork.xml	4 Jun 2011 17:19:32 -0000	1.25
+++ artwork.xml	4 Jun 2011 17:20:29 -0000	1.26
@@ -319,7 +319,7 @@
   
 <p>
 The <uri link="/proj/en/gentoo-alt/bsd/obsd/index.xml">Gentoo/OpenBSD project</uri>
-has its own variation of the &quot;g&quot; logo created by Dawid Węgliński.
+has its own variation of the &quot;g&quot; logo created by Dawid Węgliński in 2007.
 </p>
 
 <table>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-05 13:49 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-05 13:49 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/05 13:49:36

  Modified:             artwork.xml
  Log:
  Add note on imcompatibility of CC-BY-SA and CC-BY-NC-SA

Revision  Changes    Path
1.27                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.26&r2=1.27

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- artwork.xml	4 Jun 2011 17:20:29 -0000	1.26
+++ artwork.xml	5 Jun 2011 13:49:36 -0000	1.27
@@ -43,6 +43,18 @@
 The licensing of the artwork on this page may differ <e>from piece to piece</e>.
 Please pay close attention to the license of the very graphic you want to use.  Thank you.
 </impo>
+
+<impo>
+Many of the graphics listed here are licensed under
+<uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri>.
+Be aware that CC-BY-SA and CC-BY-<b>NC</b>-SA (with NC for non-commercial) are
+<uri link="http://wiki.creativecommons.org/Frequently_Asked_Questions#If_I_use_a_Creative_Commons-licensed_work_to_create_a_new_work_.28ie_a_derivative_work_or_adaptation.29.2C_which_Creative_Commons_license_can_I_use_for_my_new_work.3F">not compatible</uri>.
+Therefore, you explicitly cannot license derivative work based on CC-BY-SA content under CC-BY-<b>NC</b>-SA,
+as that would be in violation of the ShareAlike aspect of CC-BY-SA.
+What you can do is applying any later version of CC-BY-SA &mdash; e.g. CC-BY-SA/3.0 &mdash; to derivate works.
+Please contact the <mail link="trustees">Board of Trustees</mail> with questions regarding licensing.
+</impo>
+
 </body>
 </section>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-06 12:28 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 32+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2011-06-06 12:28 UTC (permalink / raw
  To: gentoo-commits

nimiux      11/06/06 12:28:58

  Modified:             artwork.xml
  Log:
  Fixed minor typo. No version bump.

Revision  Changes    Path
1.28                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.27&r2=1.28

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- artwork.xml	5 Jun 2011 13:49:36 -0000	1.27
+++ artwork.xml	6 Jun 2011 12:28:57 -0000	1.28
@@ -186,7 +186,7 @@
 </impo>
 <note>
 Please note that the <uri link="/images/artwork/ripples-gblend.svg">SVG of Ripples Gentoo</uri> is linking to
-<uri link="/images/artwork/gblend.png">gblend.png</uri> internally and therfore <e>depends</e> on that file.
+<uri link="/images/artwork/gblend.png">gblend.png</uri> internally and therefore <e>depends</e> on that file.
 </note>
 
 </body>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-06-20 20:02 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-06-20 20:02 UTC (permalink / raw
  To: gentoo-commits

sping       11/06/20 20:02:18

  Modified:             artwork.xml
  Log:
  Add missing anchors, update licensing of "g" Blender logo as requested

Revision  Changes    Path
1.29                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.28&r2=1.29

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- artwork.xml	6 Jun 2011 12:28:57 -0000	1.28
+++ artwork.xml	20 Jun 2011 20:02:18 -0000	1.29
@@ -20,11 +20,11 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>18</version>
-<date>2011-06-04</date>
+<version>19</version>
+<date>2011-06-20</date>
 
 
-<chapter>
+<chapter id="about">
 <title>About</title>
 
 <section>
@@ -154,7 +154,7 @@
 </section>
 
 
-<section>
+<section id="ripples">
 <title>Related: Ripple icons</title>
 <body>
 <p>
@@ -238,10 +238,10 @@
 </section>
 </chapter>
 
-<chapter>
+<chapter id="g">
 <title>Variations of the &quot;g&quot; logo</title>
 
-<section>
+<section id="vector-g">
 <title>Vector version &quot;g&quot; logo</title>
 <body>
   
@@ -260,9 +260,9 @@
   </tr>
   <tr>
     <th>Blender version<br />
-      <br />
       by Gentoo Foundation, Inc.<br />
-      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+      licensed under<br />
+      <uri link="http://creativecommons.org/licenses/sampling+/1.0/">CCPL-Sampling-Plus-1.0</uri></th>
     <th>Vector version<br />
       <br />
       by Lennart Andre Rolland<br />
@@ -360,7 +360,7 @@
 <chapter id="rendering">
 <title>Rendering the offical &quot;g&quot; logo</title>
 
-<section>
+<section id="rendering-g">
 <title>The blue &quot;g&quot; logo</title>
 <body>
   
@@ -371,7 +371,7 @@
 </body>
 </section>
 
-<section>
+<section id="rendering-gentoo3">
 <title>The red &quot;gentoo&quot; logo</title>
 <body>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-07-20 23:44 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-07-20 23:44 UTC (permalink / raw
  To: gentoo-commits

sping       11/07/20 23:44:33

  Modified:             artwork.xml
  Log:
  Fix license declaration of gentoo3.blend (bug #369185)

Revision  Changes    Path
1.30                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.29&r2=1.30

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- artwork.xml	20 Jun 2011 20:02:18 -0000	1.29
+++ artwork.xml	20 Jul 2011 23:44:33 -0000	1.30
@@ -405,7 +405,7 @@
       <li>Get a copy of <uri link=
           "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/gentoo-web/blend/blend-archive/gentoo3.blend.bz2">
           gentoo3.blend.bz2</uri>
-          (licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri>)
+          (licensed under <uri link="http://creativecommons.org/licenses/sampling+/1.0/">CCPL-Sampling-Plus-1.0</uri>)
           and unpack it using bunzip2</li>
       <li>Pass it to Blender (package <c>media-gfx/blender</c>) for rendering,
         details below</li>






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2011-07-21  2:04 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2011-07-21  2:04 UTC (permalink / raw
  To: gentoo-commits

sping       11/07/21 02:04:16

  Modified:             artwork.xml
  Log:
  Fix license declaration of gentoo3.blend (bug #369185)

Revision  Changes    Path
1.31                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.30&r2=1.31

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- artwork.xml	20 Jul 2011 23:44:33 -0000	1.30
+++ artwork.xml	21 Jul 2011 02:04:16 -0000	1.31
@@ -20,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>19</version>
-<date>2011-06-20</date>
+<version>20</version>
+<date>2011-07-21</date>
 
 
 <chapter id="about">
@@ -386,7 +386,7 @@
   <tr>
     <th>Rendering of gentoo3.blend<br />
       by Gentoo Foundation, Inc.
-      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+      licensed under <uri link="http://creativecommons.org/licenses/sampling+/1.0/">CCPL-Sampling-Plus-1.0</uri></th>
   </tr>
 </table>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml
@ 2012-03-11  3:38 Sebastian Pipping (sping)
  0 siblings, 0 replies; 32+ messages in thread
From: Sebastian Pipping (sping) @ 2012-03-11  3:38 UTC (permalink / raw
  To: gentoo-commits

sping       12/03/11 03:38:18

  Modified:             artwork.xml
  Log:
  Integrate larry re-paint by Nefarius

Revision  Changes    Path
1.32                 xml/htdocs/proj/en/desktop/artwork/artwork.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml?r1=1.31&r2=1.32

Index: artwork.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/artwork/artwork.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- artwork.xml	21 Jul 2011 02:04:16 -0000	1.31
+++ artwork.xml	11 Mar 2012 03:38:17 -0000	1.32
@@ -20,8 +20,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <!-- <license/> -->
 
-<version>20</version>
-<date>2011-07-21</date>
+<version>21</version>
+<date>2012-03-11</date>
 
 
 <chapter id="about">
@@ -94,12 +94,18 @@
 Due to a discussion about the gender of Larry, Matteo decided to remove the udder.
 </p>
 
+<p>
+On the right a re-paint with body of 2004-04-18 by Manuel &quot;Nefarius&quot; Zwerenz can be seen.
+</p>
+
 <table>
   <tr>
     <ti><fig link="/images/artwork/larry-the-cow-full-udder-200x191.png"
         linkto="/images/artwork/larry-the-cow-full-udder.svg"/></ti>
     <ti><fig link="/images/artwork/larry-the-cow-full-200x191.png"
         linkto="/images/artwork/larry-the-cow-full.svg"/></ti>
+    <ti><fig link="/images/artwork/larry-nefarius-v2-200x191.png"
+        linkto="/images/artwork/larry-nefarius-v2.svg"/></ti>
   </tr>
   <tr>
     <th>Original female edition<br />
@@ -108,6 +114,9 @@
     <th>Male edition<br />
       by Ethan Dunham and Matteo Pescarin<br />
       licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
+    <th>Re-paint<br />
+      by Manuel &quot;Nefarius&quot; Zwerenz<br />
+      licensed under <uri link="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA/2.5</uri></th>
   </tr>
 </table>
 






^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2012-03-11  3:38 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-06 12:28 [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/artwork: artwork.xml JosA MarAa Alonso (nimiux)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-11  3:38 Sebastian Pipping (sping)
2011-07-21  2:04 Sebastian Pipping (sping)
2011-07-20 23:44 Sebastian Pipping (sping)
2011-06-20 20:02 Sebastian Pipping (sping)
2011-06-05 13:49 Sebastian Pipping (sping)
2011-06-04 17:20 Sebastian Pipping (sping)
2011-06-04 17:19 Sebastian Pipping (sping)
2011-06-03 18:00 Sebastian Pipping (sping)
2011-06-03 17:17 Sebastian Pipping (sping)
2011-06-03 14:55 Sebastian Pipping (sping)
2011-06-03 12:06 Sebastian Pipping (sping)
2011-06-03 11:23 Sebastian Pipping (sping)
2011-06-03  0:23 Sebastian Pipping (sping)
2011-06-03  0:02 Sebastian Pipping (sping)
2011-06-02  1:24 Sebastian Pipping (sping)
2011-06-02  1:20 Sebastian Pipping (sping)
2011-06-02  1:16 Sebastian Pipping (sping)
2011-06-01 23:38 Sebastian Pipping (sping)
2011-06-01 23:21 Sebastian Pipping (sping)
2011-06-01 21:07 Sebastian Pipping (sping)
2011-06-01 20:44 Sebastian Pipping (sping)
2011-06-01 19:17 Sebastian Pipping (sping)
2011-05-10 16:30 JosA MarAa Alonso (nimiux)
2011-05-07  2:53 Sebastian Pipping (sping)
2011-04-30 18:49 Sebastian Pipping (sping)
2011-04-30 17:37 David Abbott (dabbott)
2011-04-30  1:56 Sebastian Pipping (sping)
2011-04-29 22:48 Sebastian Pipping (sping)
2011-04-29 22:23 Sebastian Pipping (sping)
2011-04-29  1:40 Sebastian Pipping (sping)
2011-04-28 13:51 Sebastian Pipping (sping)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox