Skip to content

Commit 7b8f936

Browse files
committed
Remove links to Google Code, replace with GitHub
1 parent 4502557 commit 7b8f936

File tree

37 files changed

+61
-69
lines changed

37 files changed

+61
-69
lines changed

content/api_en/libraries/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h3 id="libraries"><br /><img src="images/contributions.gif" width="200" height=
6363
community. For feedback and support, please post to the <a href="http://forum.processing.org">
6464
Forum</a>. For development discussions post to the
6565
<a href="http://forum.processing.org/library-and-tool-development">Libraries and Tool Development</a>
66-
topic. Instructions for creating your own library are on the <a href="http://code.google.com/p/processing/w/">
66+
topic. Instructions for creating your own library are on the <a href="https://github.com/processing/processing/wiki">
6767
Processing Google Code</a> site.<br />
6868
</p>
6969

content/api_en/size.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ The <b>renderer</b> parameter selects which rendering engine to use. For example
6969
<br/>
7070
<b>PDF</b>: The PDF renderer draws 2D graphics directly to an Acrobat PDF file. This produces excellent results when you need vector shapes for high-resolution output or printing. You must first use Import Library &rarr; PDF to make use of the library. More information can be found in the PDF library reference.<br/>
7171
<br/>
72-
Note that each renderer may support different drawing methods, or support them differently. For example, the P3D renderer doesn't support <b>strokeCap()</b> or <b>strokeJoin()</b>, which can lead to ugly results when using <b>strokeWeight()</b>. (<a href="http://code.google.com/p/processing/issues/detail?id=123">Issue 123</a>) <br/>
7372
]]></description>
7473

7574
</root>

content/api_en/strokeCap.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ line(20, 70, 80, 70);
2323

2424
<description><![CDATA[
2525
Sets the style for rendering line endings. These ends are either squared, extended, or rounded, each of which specified with the corresponding parameters: SQUARE, PROJECT, and ROUND. The default cap is ROUND.
26-
<br/><br/>
27-
This function is not available with the P3D renderer (<a href="http://code.google.com/p/processing/issues/detail?id=123">see Issue 123</a>). More information about the renderers can be found in the <b>size()</b> reference.
2826
]]></description>
2927

3028
</root>

content/api_en/strokeJoin.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ endShape();
5252

5353
<description><![CDATA[
5454
Sets the style of the joints which connect line segments. These joints are either mitered, beveled, or rounded and specified with the corresponding parameters MITER, BEVEL, and ROUND. The default joint is MITER.
55-
<br/> <br/>
56-
This function is not available with the P3D renderer, (<a href="http://code.google.com/p/processing/issues/detail?id=123">see Issue 123</a>). More information about the renderers can be found in the <b>size()</b> reference.
5755
]]></description>
5856

5957
</root>

content/api_en/strokeWeight.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ line(20, 70, 80, 70);
2222

2323
<description><![CDATA[
2424
Sets the width of the stroke used for lines, points, and the border around shapes. All widths are set in units of pixels.
25-
<br/><br/>
26-
When drawing with P3D, series of connected lines (such as the stroke around a polygon, triangle, or ellipse) produce unattractive results when a thick stroke weight is set (<a href="http://code.google.com/p/processing/issues/detail?id=123">see Issue 123</a>). With P3D, the minimum and maximum values for <b>strokeWeight()</b> are controlled by the graphics card and the operating system's OpenGL implementation. For instance, the thickness may not go higher than 10 pixels.
2725
]]></description>
2826

2927
</root>

content/api_en/tools/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h3 id="libraries"><br /><img src="images/contributions.gif" width="200" height=
5555
Forum</a>. For development discussions post to the
5656
<a href="http://forum.processing.org/library-and-tool-development">Libraries and Tool
5757
Development</a> topic. Instructions for creating your own tool are on the
58-
<a href="http://code.google.com/p/processing/w/">Processing Google Code</a> site.<br />
58+
<a href="https://github.com/processing/processing/wiki">Processing Google Code</a> site.<br />
5959
</p>
6060

6161
<!-- When run online, variables will be set, don't insert anything. -->

content/api_en/translation/translation.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
<!-- Disclaimer and contact information -->
127127
<!-- Feel free to include your email address -->
128128
<disclaimer>Reference for Processing version 1.5. If you have a previous version, use the reference included with your software.</disclaimer>
129-
<contact>If you see any errors or have suggestions, <a href="http://code.google.com/p/processing/issues/list">please let us know</a>.
129+
<contact>If you see any errors or have suggestions, <a href="https://github.com/processing/processing-web/issues?state=open">please let us know</a>.
130130
If you prefer a more technical reference, visit the <a href="http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/index.html">Processing Javadoc</a>.</contact>
131131
</meta>
132132

content/static/tutorials/2darray/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1>Two-Dimensional Arrays</h1>
44
<table width="656">
55
<tr>
66

7-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
7+
<p><em>This tutorial is for Processing version 2+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
88

99
<p>&nbsp;</p>
1010

@@ -168,7 +168,7 @@ <h1>Two-Dimensional Arrays</h1>
168168

169169
<p>&nbsp;</p>
170170

171-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
171+
<p><em>This tutorial is for Processing version 2+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
172172

173173
</td>
174174
</tr>

content/static/tutorials/anatomy/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h1>Anatomy of a Program</h1>
55
<tr>
66
<td>
77

8-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
8+
<p><em>This tutorial is for Processing version 2+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
99

1010
<p>
1111
You can <a href="code/polystar.zip">download the files from this tutorial</a>.
@@ -682,7 +682,7 @@ <h3>Summing Up</h3>
682682

683683
<p>&nbsp;</p>
684684

685-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
685+
<p><em>This tutorial is for Processing version 2+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
686686

687687

688688

content/static/tutorials/android/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>Android</h1>
66
<tr>
77
<td>
88

9-
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is adapted from <a href="http://blog.blprnt.com/blog/blprnt/processing-android-mobile-app-development-made-very-easy">'Processing & Android: Mobile App Development Made (Very) Easy'</a> by <a href="http://blog.blprnt.com/">Jer Thorp</a></em></p>
9+
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is adapted from <a href="http://blog.blprnt.com/blog/blprnt/processing-android-mobile-app-development-made-very-easy">'Processing & Android: Mobile App Development Made (Very) Easy'</a> by <a href="http://blog.blprnt.com/">Jer Thorp</a></em></p>
1010

1111
<p><img src="imgs/android1.jpg" ></p>
1212

@@ -123,7 +123,7 @@ <h3>Step Three: Running the App on a Device</h3>
123123
<p>- I know I&#8217;ve said this before, but be patient. Canceling a process (ie. the emulator load or a device compile) can cause problems. If you do this inadvertently, you&#8217;re best off restarting Processing.</p>
124124
<p>- Make sure to check out the <a href="http://wiki.processing.org/w/Android">Processing Android Wik</a>i, where you&#8217;ll find some troubleshooting advice, and some tips on how to get your sketches working properly on your device.</p>
125125

126-
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is adapted from <a href="http://blog.blprnt.com/blog/blprnt/processing-android-mobile-app-development-made-very-easy">'Processing & Android: Mobile App Development Made (Very) Easy'</a> by <a href="http://blog.blprnt.com/">Jer Thorp</a></em></p>
126+
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is adapted from <a href="http://blog.blprnt.com/blog/blprnt/processing-android-mobile-app-development-made-very-easy">'Processing & Android: Mobile App Development Made (Very) Easy'</a> by <a href="http://blog.blprnt.com/">Jer Thorp</a></em></p>
127127

128128

129129
</td>

content/static/tutorials/basics/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1>Coordinate System and Shapes</h1>
44
<table width="656">
55
<tr>
66

7-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
7+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
88

99
<p>&nbsp;</p>
1010

@@ -84,7 +84,7 @@ <h3>Simple Shapes</h3>
8484

8585
<p>&nbsp;</p>
8686

87-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
87+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
8888

8989
</td>
9090
</tr>

content/static/tutorials/color/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1>Color</h1>
44
<table width="656">
55
<tr>
66

7-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
7+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
88

99
<p>&nbsp;</p>
1010

@@ -167,7 +167,7 @@ <h3>Custom Color Ranges</h3>
167167

168168
<p>&nbsp;</p>
169169

170-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
170+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
171171

172172
</td>
173173
</tr>

content/static/tutorials/curves/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h1>Drawing Curves</h1>
55
<tr>
66
<td>
77

8-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
8+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
99

1010
<p>
1111
<a href="code/curve_programs.zip">Download the files from this tutorial.</a>
@@ -377,7 +377,7 @@ <h3>Summary</h3>
377377

378378
<p>&nbsp;</p>
379379

380-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
380+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
381381

382382

383383
</td>

content/static/tutorials/data/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1>Data</h1>
44
<table width="656">
55
<tr>
66

7-
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
7+
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
88

99
<p>&nbsp;</p>
1010

@@ -504,7 +504,7 @@ <h3>Other Topics?</h3>
504504

505505
<p>&nbsp;</p>
506506

507-
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
507+
<p><em>This tutorial is for Processing version 2.0+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
508508

509509
</td>
510510
</tr>

content/static/tutorials/drawing/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1>Coordinate System and Shapes</h1>
44
<table width="656">
55
<tr>
66

7-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
7+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
88

99
<p>&nbsp;</p>
1010

@@ -90,7 +90,7 @@ <h3>Simple Shapes</h3>
9090

9191
<p>&nbsp;</p>
9292

93-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
93+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial is from the book, <a href="http://www.processing.org/learning/books/#shiffman">Learning Processing</a>, by Daniel Shiffman, published by Morgan Kaufmann Publishers, Copyright 2008 Elsevier Inc. All rights reserved.</em></p>
9494

9595
</td>
9696
</tr>

content/static/tutorials/eclipse/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ <h1>Processing in Eclipse</h1>
33
<table width="656">
44
<tr>
55

6-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
6+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
77

88
<p>&nbsp;</p>
99

@@ -234,7 +234,7 @@ <h3>Processing in Eclipse with Multiple Classes</h3>
234234

235235
<p>&nbsp;</p>
236236

237-
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>.</em></p>
237+
<p><em>This tutorial is for Processing version 1.1+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>.</em></p>
238238

239239

240240
</td>

content/static/tutorials/gettingstarted/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>Getting Started. Welcome to Processing!</h1>
66
<tr>
77
<td>
88

9-
<p><em>This tutorial is for Processing 2+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial was adapted from the book, <a href="http://www.processing.org/learning/books/#reasfry2">Getting Started with Processing</a>, by Casey Reas and Ben Fry, O'Reilly / Make 2010.</em></p>
9+
<p><em>This tutorial is for Processing 2+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial was adapted from the book, <a href="http://www.processing.org/learning/books/#reasfry2">Getting Started with Processing</a>, by Casey Reas and Ben Fry, O'Reilly / Make 2010.</em></p>
1010

1111
<p>&nbsp;</p>
1212

@@ -236,7 +236,7 @@ <h3>Examples and Reference</h3>
236236

237237
<p>&nbsp;</p>
238238

239-
<p><em>This tutorial is for Processing 2+. If you see any errors or have comments, please <a href="http://code.google.com/p/processing/issues/list">let us know</a>. This tutorial was adapted from the book, <a href="http://www.processing.org/learning/books/#reasfry2">Getting Started with Processing</a>, by Casey Reas and Ben Fry, O'Reilly / Make 2010.</em></p>
239+
<p><em>This tutorial is for Processing 2+. If you see any errors or have comments, please <a href="https://github.com/processing/processing-web/issues?state=open">let us know</a>. This tutorial was adapted from the book, <a href="http://www.processing.org/learning/books/#reasfry2">Getting Started with Processing</a>, by Casey Reas and Ben Fry, O'Reilly / Make 2010.</em></p>
240240

241241
</td>
242242
</tr>

0 commit comments

Comments
 (0)