Update Marlin website links to https

This commit is contained in:
Scott Lahteine 2020-04-12 17:21:02 -05:00
parent f090a927f4
commit e3321920f3
43 changed files with 54 additions and 54 deletions

View File

@ -93,7 +93,7 @@ Before creating a suggestion, please check [this list](#before-submitting-a-sugg
#### Before Submitting a Feature Request
* **Check the [Marlin website](http://marlinfw.org/)** for tips — you might discover that the feature is already included. Most importantly, check if you're using [the latest version of Marlin](https://github.com/MarlinFirmware/Marlin/releases) and if you can get the desired behavior by changing [Marlin's config settings](http://marlinfw.org/docs/configuration/configuration.html).
* **Check the [Marlin website](https://marlinfw.org/)** for tips — you might discover that the feature is already included. Most importantly, check if you're using [the latest version of Marlin](https://github.com/MarlinFirmware/Marlin/releases) and if you can get the desired behavior by changing [Marlin's config settings](https://marlinfw.org/docs/configuration/configuration.html).
* **Perform a [cursory search](https://github.com/MarlinFirmware/Marlin/issues?q=is%3Aissue)** to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
#### How Do I Submit A (Good) Feature Request?
@ -117,12 +117,12 @@ Unsure where to begin contributing to Marlin? You can start by looking through t
### Pull Requests
Pull Requests should always be targeted to working branches (e.g., `bugfix-1.1.x` and/or `bugfix-2.0.x`) and never to release branches (e.g., `1.1.x`). If this is your first Pull Request, please read our [Guide to Pull Requests](http://marlinfw.org/docs/development/getting_started_pull_requests.html) and Github's [Pull Request](https://help.github.com/articles/creating-a-pull-request/) documentation.
Pull Requests should always be targeted to working branches (e.g., `bugfix-1.1.x` and/or `bugfix-2.0.x`) and never to release branches (e.g., `1.1.x`). If this is your first Pull Request, please read our [Guide to Pull Requests](https://marlinfw.org/docs/development/getting_started_pull_requests.html) and Github's [Pull Request](https://help.github.com/articles/creating-a-pull-request/) documentation.
* Fill in [the required template](pull_request_template.md).
* Don't include issue numbers in the PR title.
* Include pictures, diagrams, and links to videos in your Pull Request to demonstrate your changes, if needed.
* Follow the [Coding Standards](http://marlinfw.org/docs/development/coding_standards.html) posted on our website.
* Follow the [Coding Standards](https://marlinfw.org/docs/development/coding_standards.html) posted on our website.
* Document new code with clear and concise comments.
* End all files with a newline.
@ -137,7 +137,7 @@ Pull Requests should always be targeted to working branches (e.g., `bugfix-1.1.x
### C++ Coding Standards
* Please read and follow the [Coding Standards](http://marlinfw.org/docs/development/coding_standards.html) posted on our website. Failure to follow these guidelines will delay evaluation and acceptance of Pull Requests.
* Please read and follow the [Coding Standards](https://marlinfw.org/docs/development/coding_standards.html) posted on our website. Failure to follow these guidelines will delay evaluation and acceptance of Pull Requests.
### Documentation

View File

@ -820,7 +820,7 @@
// @section probes
//
// See http://marlinfw.org/docs/configuration/probes.html
// See https://marlinfw.org/docs/configuration/probes.html
//
/**
@ -1636,7 +1636,7 @@
* - Click the controller to view the LCD menu
* - The LCD will display Japanese, Western, or Cyrillic text
*
* See http://marlinfw.org/docs/development/lcd_language.html
* See https://marlinfw.org/docs/development/lcd_language.html
*
* :['JAPANESE', 'WESTERN', 'CYRILLIC']
*/

View File

@ -1508,7 +1508,7 @@
* If this algorithm produces a higher speed offset than the extruder can handle (compared to E jerk)
* print acceleration will be reduced during the affected moves to keep within the limit.
*
* See http://marlinfw.org/docs/features/lin_advance.html for full instructions.
* See https://marlinfw.org/docs/features/lin_advance.html for full instructions.
* Mention @Sebastianv650 on GitHub to alert the author of any issues.
*/
//#define LIN_ADVANCE
@ -2643,7 +2643,7 @@
* You'll need to select a pin for the ON/OFF function and optionally choose a 0-5V
* hardware PWM pin for the speed control and a pin for the rotation direction.
*
* See http://marlinfw.org/docs/configuration/laser_spindle.html for more config details.
* See https://marlinfw.org/docs/configuration/laser_spindle.html for more config details.
*/
//#define SPINDLE_FEATURE
//#define LASER_FEATURE

View File

@ -19,7 +19,7 @@ Before diving in, we recommend the following essential links:
Marlin Firmware Official Website
- http://marlinfw.org/
- https://marlinfw.org/
The official Marlin Firmware website contains the most up-to-date
documentation. Contributions are always welcome!
@ -30,7 +30,7 @@ Configuration
(Applies to Marlin 1.0.x, so Jerk and Acceleration should be halved.)
Also... https://www.google.com/search?tbs=vid%3A1&q=configure+marlin
- http://marlinfw.org/docs/configuration/configuration.html
- https://marlinfw.org/docs/configuration/configuration.html
Marlin's configuration options are explained in more detail here.
Getting Help
@ -45,9 +45,9 @@ Getting Help
Contributing
- http://marlinfw.org/docs/development/contributing.html
- https://marlinfw.org/docs/development/contributing.html
If you'd like to contribute to Marlin, read this first!
- http://marlinfw.org/docs/development/coding_standards.html
- https://marlinfw.org/docs/development/coding_standards.html
Before submitting code get to know the Coding Standards.
*/

View File

@ -39,7 +39,7 @@
//
// ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRA_LCD" / "SDSUPPORT" #define IN "Configuration.h"
// ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS
// See also http://marlinfw.org/docs/development/lcd_language.html
// See also https://marlinfw.org/docs/development/lcd_language.html
// Languages
// an Aragonese

View File

@ -46,8 +46,8 @@ typedef void (*twiRequestFunc_t)();
* for the host to interpret.
*
* For more information see
* - http://marlinfw.org/docs/gcode/M260.html
* - http://marlinfw.org/docs/gcode/M261.html
* - https://marlinfw.org/docs/gcode/M260.html
* - https://marlinfw.org/docs/gcode/M261.html
*
*/
class TWIBus {

View File

@ -31,7 +31,7 @@
* -----------------
*
* Helpful G-code references:
* - http://marlinfw.org/meta/gcode
* - https://marlinfw.org/meta/gcode
* - https://reprap.org/wiki/G-code
* - http://linuxcnc.org/docs/html/gcode.html
*

View File

@ -25,7 +25,7 @@
* Standard Marlin Boot Screen bitmaps
*
* Use the Marlin Bitmap Converter to make your own:
* http://marlinfw.org/tools/u8glib/converter.html
* https://marlinfw.org/tools/u8glib/converter.html
*/
#include "../../inc/MarlinConfig.h"

View File

@ -25,7 +25,7 @@
* Standard Marlin Status Screen bitmaps
*
* Use the Marlin Bitmap Converter to make your own:
* http://marlinfw.org/tools/u8glib/converter.html
* https://marlinfw.org/tools/u8glib/converter.html
*/
#include "../../inc/MarlinConfig.h"

View File

@ -65,7 +65,7 @@
/**
* Include all needed font files
* (See http://marlinfw.org/docs/development/fonts.html)
* (See https://marlinfw.org/docs/development/fonts.html)
*/
#include "fontdata/fontdata_ISO10646_1.h"
#if ENABLED(USE_SMALL_INFOFONT)

View File

@ -25,7 +25,7 @@
* Aragonese
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Bulgarian
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Catalan
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
namespace Language_ca {

View File

@ -26,7 +26,7 @@
* UTF-8 for Graphical Display
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
* Translated by Petr Zahradnik, Computer Laboratory
* Blog and video blog Zahradnik se bavi

View File

@ -25,7 +25,7 @@
* Danish
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* German
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Greek
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Greek (Greece)
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* English
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Spanish
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Basque-Euskera
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Finnish
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* French
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Galician language (ISO "gl")
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Croatian (Hrvatski)
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Italian
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -26,7 +26,7 @@
* UTF-8 for Graphical Display
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Korean
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
namespace Language_ko_KR {

View File

@ -25,7 +25,7 @@
* Dutch
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Polish - includes accented characters
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -26,7 +26,7 @@
* UTF-8 for Graphical Display
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -26,7 +26,7 @@
* UTF-8 for Graphical Display
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
namespace Language_pt_br {

View File

@ -25,7 +25,7 @@
* Russian
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
#define DISPLAY_CHARSET_ISO10646_5

View File

@ -26,7 +26,7 @@
* UTF-8 for Graphical Display
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
* Translated by Michal Holeš, Farma MaM
* http://www.facebook.com/farmamam

View File

@ -25,7 +25,7 @@
* TEST
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Turkish
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
* Bu çeviri dosyasındaki sorunlar ve düzeltmeler için iletişim;
* Contact for issues and corrections in this translation file;

View File

@ -25,7 +25,7 @@
* Ukrainian
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/

View File

@ -25,7 +25,7 @@
* Vietnamese
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
namespace Language_vi {

View File

@ -25,7 +25,7 @@
* Simplified Chinese
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
namespace Language_zh_CN {

View File

@ -25,7 +25,7 @@
* Traditional Chinese
*
* LCD Menu Messages
* See also http://marlinfw.org/docs/development/lcd_language.html
* See also https://marlinfw.org/docs/development/lcd_language.html
*
*/
namespace Language_zh_TW {

View File

@ -7,7 +7,7 @@
<img align="right" width=175 src="buildroot/share/pixmaps/logo/marlin-250.png" />
Additional documentation can be found at the [Marlin Home Page](http://marlinfw.org/).
Additional documentation can be found at the [Marlin Home Page](https://marlinfw.org/).
Please test this firmware and let us know if it misbehaves in any way. Volunteers are standing by!
## Marlin 2.0 Bugfix Branch
@ -22,7 +22,7 @@ Download earlier versions of Marlin on the [Releases page](https://github.com/Ma
## Building Marlin 2.0
To build Marlin 2.0 you'll need [Arduino IDE 1.8.8 or newer](https://www.arduino.cc/en/main/software) or [PlatformIO](http://docs.platformio.org/en/latest/ide.html#platformio-ide). We've posted detailed instructions on [Building Marlin with Arduino](http://marlinfw.org/docs/basics/install_arduino.html) and [Building Marlin with PlatformIO for ReArm](http://marlinfw.org/docs/basics/install_rearm.html) (which applies well to other 32-bit boards).
To build Marlin 2.0 you'll need [Arduino IDE 1.8.8 or newer](https://www.arduino.cc/en/main/software) or [PlatformIO](http://docs.platformio.org/en/latest/ide.html#platformio-ide). We've posted detailed instructions on [Building Marlin with Arduino](https://marlinfw.org/docs/basics/install_arduino.html) and [Building Marlin with PlatformIO for ReArm](https://marlinfw.org/docs/basics/install_rearm.html) (which applies well to other 32-bit boards).
## Hardware Abstraction Layer (HAL)
@ -95,7 +95,7 @@ Marlin 2.0 introduces a layer of abstraction so that all the existing high-level
Proposed patches should be submitted as a Pull Request against the ([bugfix-2.0.x](https://github.com/MarlinFirmware/Marlin/tree/bugfix-2.0.x)) branch.
- This branch is for fixing bugs and integrating any new features for the duration of the Marlin 2.0.x life-cycle.
- Follow the [Coding Standards](http://marlinfw.org/docs/development/coding_standards.html) to gain points with the maintainers.
- Follow the [Coding Standards](https://marlinfw.org/docs/development/coding_standards.html) to gain points with the maintainers.
- Please submit your questions and concerns to the [Issue Queue](https://github.com/MarlinFirmware/Marlin/issues).
### [RepRap.org Wiki Page](http://reprap.org/wiki/Marlin)

View File

@ -104,7 +104,7 @@ At this time, the font file `marlin-6x12-3.bdf` is used to generate the font dat
Documents related to the old version of the language engine:
- [Marlin Fonts Documentation](http://www.marlinfw.org/docs/development/fonts.html)
- [Marlin LCD Language](http://marlinfw.org/docs/development/lcd_language.html)
- [Marlin LCD Language](https://marlinfw.org/docs/development/lcd_language.html)
- [U8GLIB](https://github.com/olikraus/u8glib.git)
- [UTF-8 for U8GLIB](https://github.com/yhfudev/u8glib-fontutf8.git)
- [Standalone test project for the Marlin UTF-8 language engine](https://github.com/yhfudev/marlin-fontutf8.git)

View File

@ -126,7 +126,7 @@ git push -f origin
git push -f upstream | {
while IFS= read -r line
do
[[ $line =~ "gh-pages -> gh-pages" ]] && opensite "http://marlinfw.org/"
[[ $line =~ "gh-pages -> gh-pages" ]] && opensite "https://marlinfw.org/"
echo "$line"
done
}