Skip to content

Commit

Permalink
Due to website configuration changes, every url starting with http://…
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Fissore committed May 20, 2015
1 parent 0262105 commit 9166828
Show file tree
Hide file tree
Showing 140 changed files with 167 additions and 167 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ board and a development environment that implements the Processing/Wiring
language. Arduino can be used to develop stand-alone interactive objects or
can be connected to software on your computer (e.g. Flash, Processing, MaxMSP).
The boards can be assembled by hand or purchased preassembled; the open-source
IDE can be downloaded for free at http://arduino.cc/en/Main/Software
IDE can be downloaded for free at http://www.arduino.cc/en/Main/Software

* For more information, see the website at: http://www.arduino.cc/
or the forums at: http://arduino.cc/forum/
or the forums at: http://www.arduino.cc/forum/
You can also follow Arduino on twitter at: https://twitter.com/arduino or like Arduino on Facebook at: https://www.facebook.com/official.arduino

* To report a *bug* in the software or to request *a simple enhancement* go to:
Expand Down
2 changes: 1 addition & 1 deletion app/src/processing/app/Editor.java
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@ public void actionPerformed(ActionEvent e) {
item = new JMenuItem(_("Visit Arduino.cc"));
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Base.openURL(_("http://arduino.cc/"));
Base.openURL(_("http://www.arduino.cc/"));
}
});
menu.add(item);
Expand Down
10 changes: 5 additions & 5 deletions app/test/cc/arduino/packages/contributions/package_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"websiteURL": "http://www.arduino.cc/",
"email": "[email protected]",
"help": {
"online": "http://arduino.cc/en/Reference/HomePage"
"online": "http://www.arduino.cc/en/Reference/HomePage"
},
"platforms": [
{
Expand Down Expand Up @@ -58,7 +58,7 @@
"version": "1.6.3",
"category": "Arduino",
"help": {
"online": "http://arduino.cc/en/Reference/HomePage"
"online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.3.tar.bz2",
"archiveFileName": "avr-1.6.3.tar.bz2",
Expand Down Expand Up @@ -104,7 +104,7 @@
"version": "1.6.4",
"category": "Arduino",
"help": {
"online": "http://arduino.cc/en/Reference/HomePage"
"online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.4.tar.bz2",
"archiveFileName": "avr-1.6.4.tar.bz2",
Expand Down Expand Up @@ -150,7 +150,7 @@
"version": "1.6.5",
"category": "Arduino",
"help": {
"online": "http://arduino.cc/en/Reference/HomePage"
"online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.5.tar.bz2",
"archiveFileName": "avr-1.6.5.tar.bz2",
Expand Down Expand Up @@ -196,7 +196,7 @@
"version": "1.6.6",
"category": "Arduino",
"help": {
"online": "http://arduino.cc/en/Reference/HomePage"
"online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.6.tar.bz2",
"archiveFileName": "avr-1.6.6.tar.bz2",
Expand Down
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/BaseNoGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ static public File getSketchbookLibrariesFolder() {
File readme = new File(libdir, "readme.txt");
FileWriter freadme = new FileWriter(readme);
freadme.write(_("For information on installing libraries, see: " +
"http://arduino.cc/en/Guide/Libraries\n"));
"http://www.arduino.cc/en/Guide/Libraries\n"));
freadme.close();
} catch (Exception e) {
}
Expand Down
2 changes: 1 addition & 1 deletion build/create_reference.pl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
my $CURL_OPTIONS = "--silent --show-error -u $user:$pass";

my $ARDUINO = 'http://edit.arduino.cc/en_ref'; # base url for reference site
my $PUBLIC = 'http://arduino.cc/en'; # base url for public site
my $PUBLIC = 'http://www.arduino.cc/en'; # base url for public site

my %downloaded = (); # keep track of the pages we download

Expand Down
2 changes: 1 addition & 1 deletion build/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cd reference
perl ../create_reference.pl || die 'unable to create local reference pages'

mkdir img
curl http://arduino.cc/en/pub/skins/arduinoUno/img/logo.png > img/logo.png
curl http://www.arduino.cc/en/pub/skins/arduinoUno/img/logo.png > img/logo.png

cd ..
zip -r shared/reference.zip reference || die 'unable to create reference.zip archive'
Expand Down
2 changes: 1 addition & 1 deletion build/linux/dist/appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<screenshot type="default" width="624" height="351">http://mavit.fedorapeople.org/appdata/arduino-screenshot.png</screenshot>
<screenshot width="704" height="396">http://mavit.fedorapeople.org/appdata/arduino-photo.jpg</screenshot>
</screenshots>
<url type="homepage">http://arduino.cc/</url>
<url type="homepage">http://www.arduino.cc/</url>
<updatecontact>[email protected]</updatecontact>
</application>
2 changes: 1 addition & 1 deletion build/shared/examples/01.Basics/Blink/Blink.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13. If you're unsure what
pin the on-board LED is connected to on your Arduino model, check
the documentation at http://arduino.cc
the documentation at http://www.arduino.cc
This example code is in the public domain.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/ButtonStateChange
http://www.arduino.cc/en/Tutorial/ButtonStateChange
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/Tone3
http://www.arduino.cc/en/Tutorial/Tone3
*/

Expand Down
2 changes: 1 addition & 1 deletion build/shared/examples/02.Digital/toneMelody/toneMelody.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/Tone
http://www.arduino.cc/en/Tutorial/Tone
*/
#include "pitches.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/Tone4
http://www.arduino.cc/en/Tutorial/Tone4
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/Tone2
http://www.arduino.cc/en/Tutorial/Tone2
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/AnalogInput
http://www.arduino.cc/en/Tutorial/AnalogInput
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
modified 30 Aug 2011
By Tom Igoe
http://arduino.cc/en/Tutorial/Calibration
http://www.arduino.cc/en/Tutorial/Calibration
This example code is in the public domain.
Expand Down
2 changes: 1 addition & 1 deletion build/shared/examples/03.Analog/Fading/Fading.ino
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
modified 30 Aug 2011
By Tom Igoe
http://arduino.cc/en/Tutorial/Fading
http://www.arduino.cc/en/Tutorial/Fading
This example code is in the public domain.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/IfStatement
http://www.arduino.cc/en/Tutorial/IfStatement
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/WhileLoop
http://www.arduino.cc/en/Tutorial/WhileLoop
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringAdditionOperator
http://www.arduino.cc/en/Tutorial/StringAdditionOperator
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringAppendOperator
http://www.arduino.cc/en/Tutorial/StringAppendOperator
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringCaseChanges
http://www.arduino.cc/en/Tutorial/StringCaseChanges
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringCharacters
http://www.arduino.cc/en/Tutorial/StringCharacters
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringComparisonOperators
http://www.arduino.cc/en/Tutorial/StringComparisonOperators
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 30 Aug 2011
by Tom Igoe
http://arduino.cc/en/Tutorial/StringConstructors
http://www.arduino.cc/en/Tutorial/StringConstructors
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringIndexOf
http://www.arduino.cc/en/Tutorial/StringIndexOf
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
created 1 Aug 2010
by Tom Igoe
http://arduino.cc/en/Tutorial/StringLengthTrim
http://www.arduino.cc/en/Tutorial/StringLengthTrim
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringLengthTrim
http://www.arduino.cc/en/Tutorial/StringLengthTrim
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringReplace
http://www.arduino.cc/en/Tutorial/StringReplace
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/StringStartsWithEndsWith
http://www.arduino.cc/en/Tutorial/StringStartsWithEndsWith
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
modified 2 Apr 2012
by Zach Eveland
http://arduino.cc/en/Tutorial/StringSubstring
http://www.arduino.cc/en/Tutorial/StringSubstring
This example code is in the public domain.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
by Scott Fitzgerald
Thanks to Federico Vanzati for improvements
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
by Scott Fitzgerald
Thanks to Federico Vanzati for improvements
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Created 13 September 2012
by Scott Fitzgerald
http://arduino.cc/starterKit
http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
Expand Down
Loading

0 comments on commit 9166828

Please sign in to comment.