Skip to content

Commit

Permalink
Fixes internal broken links. Dead links (The Internal Edition) #595
Browse files Browse the repository at this point in the history
  • Loading branch information
twisst committed Dec 24, 2024
1 parent a148722 commit aef342c
Show file tree
Hide file tree
Showing 38 changed files with 43 additions and 40 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"mdx-preview.preview.useVscodeMarkdownStyles": false
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "(Weka4P) Weka Machine Learning for Processing",
"authors": [
"[Rong-Hao Liang]([email protected]), [Wesley Hartogs](https://wesleyhartogs.nl), [Janet Huang]([email protected])"
"[Rong-Hao Liang](mailto:[email protected]), [Wesley Hartogs](https://wesleyhartogs.nl), [Janet Huang](mailto:[email protected])"
],
"url": "https://howieliang.github.io/Weka4P/",
"categories": [
Expand Down
2 changes: 1 addition & 1 deletion content/contributions/REPL_Mode.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
],
"url": "https://github.com/joelmoniz/REPLmode",
"sentence": "Adds an REPL Console to view the output of code typed into it immediately. Also gives the PDE the ability to hot swap code.",
"paragraph": "This mode adds in a Read-Evaluate-Print-Loop console to processing in the form of a tab at the bottom. The console enables users to type in processing code and to view the output of this code immediately. Each subsequent line of code shows the output incrementally, much like how an REPL Console for any interpretive language (like Python, and the Linux bash terminal) would. The console also provides options to undo commands, to convert the valid commands entered so far into a function, and so on. Ths mode also gives the PDE the ability to hot swap code, wherein the output corresponding to changes made in a running sketch can be viewed by simply saving the sketch, without restarting it.",
"paragraph": "This mode adds in a Read-Evaluate-Print-Loop console to Processing in the form of a tab at the bottom. The console enables users to type in processing code and to view the output of this code immediately. Each subsequent line of code shows the output incrementally, much like how an REPL Console for any interpretive language (like Python, and the Linux bash terminal) would. The console also provides options to undo commands, to convert the valid commands entered so far into a function, and so on. Ths mode also gives the PDE the ability to hot swap code, wherein the output corresponding to changes made in a running sketch can be viewed by simply saving the sketch, without restarting it.",
"imports": "processing.mode.java.JavaMode",
"lastUpdated": "1443120511000",
"type": "mode",
Expand Down
2 changes: 1 addition & 1 deletion content/contributions/SerialRecord.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SerialRecord",
"authors": [
"[Oliver Steele]([email protected])"
"[Oliver Steele](mailto:[email protected])"
],
"url": "https://osteele.github.io/Processing_SerialRecord/",
"categories": [
Expand Down
2 changes: 1 addition & 1 deletion content/contributions/Simple_Phidgets.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Simple Phidgets",
"authors": [
"[Shachar Geiger]([email protected])"
"[Shachar Geiger](mailto:[email protected])"
],
"url": "https://github.com/sgeigers/SimplePhidgets",
"categories": [
Expand Down
2 changes: 1 addition & 1 deletion content/contributions/meter.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "meter",
"authors": [
"Bill (Papa) Kujawa"
"Bill 'Papa' Kujawa"
],
"url": "https://github.com/BillKujawa/meter.git",
"categories": [
Expand Down
2 changes: 1 addition & 1 deletion content/contributions/tramontanaCV.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tramontanaCV",
"authors": [
"[Pierluigi Dalla Rosa](www.pierdr.com)"
"[Pierluigi Dalla Rosa](https://www.pierdr.com/)"
],
"url": "https://tramontana.xyz/",
"categories": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"level": "Intermediate",
"order": "4",
"description": "It is sometimes beneficial to convert a value from one type of \n data to another. Each of the conversion functions converts its parameter \n to an equivalent representation within its datatype. \n The conversion functions include int(), float(), char(), byte(), and others.",
"featured": ["floatconvert", "intconvert", "byteconvert", "charconvert"]
"featured": ["float", "int", "byte", "char"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"order": "0",
"author": "Daniel Shiffman (slight modification by l8l)",
"description": "Simple rendering of the Mandelbrot set.",
"featured": ["loadPixels_", "updatePixels_", "pixels[]"]
"featured": ["loadPixels_", "updatePixels_", "pixels"]
}
2 changes: 1 addition & 1 deletion content/examples/Topics/Image Processing/Blur/Blur.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"image_",
"PImage_loadPixels_",
"createImage_",
"PImage_pixels[]",
"PImage_pixels",
"PImage_updatePixels_"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"order": "4",
"description": "Applies a convolution matrix to a portion of an image. Move mouse to apply filter to different parts of the image.",
"featured": [
"PImage_",
"PImage",
"Array",
"loadImage_",
"constrain_",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"level": "Intermediate",
"order": "0",
"description": "Click and drag the mouse up and down to control the signal and \n press and hold any key to see the current pixel being read. \n This program sequentially reads the color of every pixel of an image\n and displays this color to fill the window.",
"featured": ["PImage_", "loadImage_", "constrain_", "set_"]
"featured": ["PImage", "loadImage_", "constrain_", "set_"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Bodies experience fluid resistance when in "water"
*
* For the basics of working with PVector, see
* http://processing.org/learning/pvector/
* https://processing.org/tutorials/pvector
* as well as examples in Topics/Vectors/
*
*/
Expand Down
2 changes: 1 addition & 1 deletion content/examples/Topics/Vectors/VectorMath/VectorMath.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"level": "Intermediate",
"order": "1",
"description": "Demonstration of some basic vector math: subtraction, normalization, scaling. Normalizing a vector sets its length to 1.",
"featured": ["PVector", "PVector_sub", "PVector_normalize_", "PVector_mult_"]
"featured": ["PVector", "PVector_sub_", "PVector_normalize_", "PVector_mult_"]
}
2 changes: 1 addition & 1 deletion content/references/translations/en/net/Client.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"description": "A client connects to a server and sends data back and forth. If anything\n goes wrong with the connection, for example the host is not there or is\n listening on a different port, an exception is thrown.",
"type": "class",
"constructors": ["Client(parent, host, port)", "Client(parent, socket)"],
"related": ["LIB_net/clientEvent_"],
"related": ["net/clientEvent_"],
"name": "Client",
"classanchor": "net/Client",
"category": "client",
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/processing/PFont.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"brief": "Grayscale bitmap font class used by Processing",
"constructors": [],
"related": ["loadFont_", "createFont_", "PGraphics_textFont_"],
"related": ["loadFont_", "createFont_", "textFont_"],
"methods": [
{
"anchor": "PFont_list_",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Copies the entire image",
"related": ["PGraphics_alpha_", "PImage_blend_"],
"related": ["alpha_", "PImage_blend_"],
"name": "copy()",
"description": "Copies a region of pixels from one image into another. If the source and\n destination regions aren't the same size, it will automatically resize\n source pixels to fit the specified target region. No alpha information\n is used in the process, however if the source image has an alpha channel\n set, it will be copied as well.\n <br/><br/>\n As of release 0149, this function ignores <b>imageMode()</b>.",
"syntax": [
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/processing/blue_.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"hue_",
"saturation_",
"brightness_",
"rightshift_"
"rightshift"
],
"name": "blue()",
"description": "Extracts the blue value from a color, scaled to match current\n <b>colorMode()</b>. The value is always returned as a float, so be careful\n not to assign it to an int value.<br/>\n <br/>\n The <b>blue()</b> function is easy to use and understand, but it is slower\n than a technique called bit masking. When working in <b>colorMode(RGB,\n 255)</b>, you can achieve the same results as <b>blue()</b> but with greater\n speed by using a bit mask to remove the other color components. For example,\n the following two lines of code are equivalent means of getting the blue\n value of the color value <b>c</b>:<br/>\n <br/>\n\n <pre>\n float b1 = blue(c); // Simpler, but slower to calculate\n float b2 = c & 0xFF; // Very fast to calculate\n </pre>",
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/processing/green_.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"hue_",
"saturation_",
"brightness_",
"rightshift_"
"rightshift"
],
"name": "green()",
"description": "Extracts the green value from a color, scaled to match current\n <b>colorMode()</b>. The value is always returned as a float, so be careful\n not to assign it to an int value.<br/>\n <br/>\n The <b>green()</b> function is easy to use and understand, but it is slower\n than a technique called bit shifting. When working in <b>colorMode(RGB,\n 255)</b>, you can achieve the same results as <b>green()</b> but with greater\n speed by using the right shift operator (<b>>></b>) with a bit mask. For\n example, the following two lines of code are equivalent means of getting the\n green value of the color value <b>c</b>:<br/>\n <br/>\n\n <pre>\n float g1 = green(c); // Simpler, but slower to calculate\n float g2 = c >> 8 & 0xFF; // Very fast to calculate\n </pre>",
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/processing/red_.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"hue_",
"saturation_",
"brightness_",
"rightshift_"
"rightshift"
],
"name": "red()",
"description": "Extracts the red value from a color, scaled to match current\n <b>colorMode()</b>. The value is always returned as a float, so be careful\n not to assign it to an int value.<br/>\n <br/>\n The <b>red()</b> function is easy to use and understand, but it is slower\n than a technique called bit shifting. When working in <b>colorMode(RGB,\n 255)</b>, you can achieve the same results as <b>red()</b> but with greater\n speed by using the right shift operator (<b>>></b>) with a bit mask. For\n example, the following two lines of code are equivalent means of getting the\n red value of the color value <b>c</b>:<br/>\n <br/>\n\n <pre>\n float r1 = red(c); // Simpler, but slower to calculate\n float r2 = c >> 16 & 0xFF; // Very fast to calculate\n </pre>",
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/processing/text_.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"textDescent_",
"rectMode_",
"fill_",
"String_"
"String"
],
"name": "text()",
"description": "Draws text to the screen. Displays the information specified in the first\n parameter on the screen in the position specified by the additional\n parameters. A default font will be used unless a font is set with the\n <b>textFont()</b> function and a default size will be used unless a font is\n set with <b>textSize()</b>. Change the color of the text with the\n <b>fill()</b> function. The text displays in relation to the\n <b>textAlign()</b> function, which gives the option to draw to the left,\n right, and center of the coordinates.<br/>\n <br/>\n The <b>x2</b> and <b>y2</b> parameters define a rectangular area to display\n within and may only be used with string data. When these parameters are\n specified, they are interpreted based on the current <b>rectMode()</b>\n setting. Text that does not fit completely within the rectangle specified\n will not be drawn to the screen.<br/>\n <br/>\n Note that Processing now lets you call <b>text()</b> without first specifying\n a PFont with <b>textFont()</b>. In that case, a generic sans-serif font will\n be used instead. (See the third example above.)",
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/serial/Serial.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"Serial(parent, portName, baudRate)",
"Serial(parent, portName, baudRate, parity, dataBits, stopBits)"
],
"related": ["LIB_serial/serialEvent_"],
"related": ["serial/Serial_serialEvent_"],
"name": "Serial",
"classanchor": "serial/Serial",
"category": "serial",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Jump to a specific position in the audiosample without interrupting playback.",
"related": ["sound/AudioSample_cue_", "sound/AudioSample_play_"],
"related": ["AudioSample_cue_", "AudioSample_play_"],
"name": "jumpFrame()",
"description": "Jump to a specific position in the audiosample without interrupting playback.",
"syntax": ["audiosample.jumpFrame(frameNumber)"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Jumps to a specific position in the audio sample.",
"related": ["sound/AudioSample_cue_", "sound/AudioSample_play_"],
"related": ["AudioSample_cue_", "AudioSample_play_"],
"name": "jump()",
"description": "Jump to a specific position in the audiosample while continuing to play (or \n starting to play if it wasn't playing already).",
"syntax": ["audiosample.jump(time)"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Stop the playback of the sample, but cue it to the current position.",
"related": ["sound/AudioSample_cue_"],
"related": ["AudioSample_cue_"],
"name": "pause()",
"description": "Stop the playback of the sample, but cue it to the current position. \n The next call to <b>play()</b> will continue playing where it left off.",
"syntax": ["audiosample.pause()"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Controls which output channel sounds will be played back to.\n\n After selecting a new output channel, all sounds that start `play()`ing \n will be sent to that channel.",
"related": ["sound/MultiChannel_availableChannels_"],
"related": ["MultiChannel_availableChannels_"],
"name": "activeChannel()",
"description": "Controls which output channel sounds will be played back to.\n\n After selecting a new output channel, all sounds that start `play()`ing \n will be sent to that channel.",
"syntax": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Gets the number of output channels available on an output device",
"related": ["sound/Sound_outputDevice_"],
"related": ["Sound_outputDevice_"],
"name": "availableChannels()",
"description": "Gets the number of output channels available on an output device",
"syntax": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Force using PortAudio instead of JavaSound.",
"related": ["sound/Sound_list_"],
"related": ["Sound_list_"],
"name": "usePortAudio()",
"description": "Force using PortAudio instead of JavaSound.\n\n Support for 24 bit audio interfaces on Windows requires using the native\n PortAudio bindings instead of the default JavaSound one. The Sound library \n will automatically check for and load PortAudio when it is necessary to do \n so. However, when <code>Sound.list()</code> is called before selecting an \n output device, it might show an incorrect number of channels for \n multi-channel interfaces. By explicitly loading PortAudio ahead of time you \n can ensure that <code>Sound.list()</code> will show accurate channel \n numbers from the start.\n\n Returns <code>true</code> if PortAudio was successfully loaded.",
"syntax": ["MultiChannel.usePortAudio()"],
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/en/sound/Sound.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"Sound(parent)",
"Sound(parent, sampleRate, outputDevice, inputDevice, volume)"
],
"related": ["sound/MultiChannel"],
"related": ["MultiChannel"],
"name": "Sound",
"classanchor": "sound/Sound",
"category": "Configuration",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Choose the device (sound card) which should be used for grabbing audio input using AudioIn.",
"related": ["sound/Sound_list_"],
"related": ["Sound_list_"],
"name": "inputDevice()",
"description": "Choose the device (sound card) which should be used for grabbing audio input\n using AudioIn. Note that this setting affects the choice of sound card, which \n is not necessarily the same as the number of the input channel. If your sound \n card has more than one input channel, you can specify which channel to use in\n the constructor of the AudioIn class.",
"syntax": ["Sound.inputDevice(deviceId)", "Sound.inputDevice(deviceName)"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Choose the device (sound card) which the Sound library's audio output should be sent to.",
"related": ["sound/Sound_list_"],
"related": ["Sound_list_"],
"name": "outputDevice()",
"description": "Choose the device (sound card) which the Sound library's audio output should\n be sent to. The output device should support stereo output (2 channels).",
"syntax": ["Sound.outputDevice(deviceId)", "Sound.outputDevice(deviceName)"],
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/es/net/Client.es.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"description": "A client connects to a server and sends data back and forth. If anything \n goes wrong with the connection, for example the host is not there or is \n listening on a different port, an exception is thrown.",
"type": "class",
"constructors": ["Client(parent, host, port)", "Client(parent, socket)"],
"related": ["LIB_net/clientEvent_"],
"related": ["net/clientEvent_"],
"name": "Client",
"classanchor": "net/Client",
"category": "client",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"brief": "Copies the entire image",
"related": ["PGraphics_alpha_", "PImage_blend_"],
"related": ["alpha_", "PImage_blend_"],
"name": "copy()",
"description": "Copies a region of pixels from one image into another. If the source and\n destination regions aren't the same size, it will automatically resize\n source pixels to fit the specified target region. No alpha information\n is used in the process, however if the source image has an alpha channel\n set, it will be copied as well.\n <br /><br />\n As of release 0149, this function ignores <b>imageMode()</b>.",
"syntax": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"textDescent_",
"rectMode_",
"fill_",
"String_"
"String"
],
"name": "text()",
"description": "Draws text to the screen. Displays the information specified in the first\n parameter on the screen in the position specified by the additional\n parameters. A default font will be used unless a font is set with the\n <b>textFont()</b> function and a default size will be used unless a font is\n set with <b>textSize()</b>. Change the color of the text with the\n <b>fill()</b> function. The text displays in relation to the\n <b>textAlign()</b> function, which gives the option to draw to the left,\n right, and center of the coordinates.<br />\n <br />\n The <b>x2</b> and <b>y2</b> parameters define a rectangular area to display\n within and may only be used with string data. When these parameters are\n specified, they are interpreted based on the current <b>rectMode()</b>\n setting. Text that does not fit completely within the rectangle specified\n will not be drawn to the screen.<br />\n <br />\n Note that Processing now lets you call <b>text()</b> without first specifying\n a PFont with <b>textFont()</b>. In that case, a generic sans-serif font will\n be used instead. (See the third example above.)",
Expand Down
2 changes: 1 addition & 1 deletion content/references/translations/es/serial/Serial.es.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"Serial(parent, portName, baudRate)",
"Serial(parent, portName, baudRate, parity, dataBits, stopBits)"
],
"related": ["LIB_serial/serialEvent_"],
"related": ["serial/Serial_serialEvent_"],
"name": "Serial",
"classanchor": "serial/Serial",
"category": "serial",
Expand Down
Loading

0 comments on commit aef342c

Please sign in to comment.