Skip to content

Commit 1a61a43

Browse files
ctruedenmattxwang
authored andcommitted
Fix mangled imagej.nih.gov links
My search-and-replace was too eager; there are places where '/ij' should not have been changed.
1 parent 9fbf632 commit 1a61a43

File tree

12 files changed

+37
-37
lines changed

12 files changed

+37
-37
lines changed

_pages/learn/user-guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ nav-links: true
77
<div style="display: table">
88

99
<div style="text-align:center;" markdown="1">
10-
<a href="https://imagej.nih.govhttps://imagej.nih.gov/ij/docs/guide"><img src="/media/books/imagej-user-guide.jpg" width="247" height="350"></a>\\
10+
<a href="https://imagej.nih.gov/ij/docs/guide"><img src="/media/books/imagej-user-guide.jpg" width="247" height="350"></a>\\
1111
The [ImageJ User Guide](https://imagej.nih.gov/ij/docs/guide/) provides a
1212
thorough description of ImageJ's built-in functions.
1313
</div>

_pages/plugins/bunwarpj.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ Notice here that the input and output file names must include the path, since th
315315

316316
For instance, to see the program help we can call the program from the command line (where $IJDIR is the directory where ImageJ is installed) like this in Linux:
317317

318-
`java -Xmx512m -cp $IJDIRhttps://imagej.nih.gov/ij.jar:$IJDIR/plugins/bUnwarpJ_.jar bunwarpj.bUnwarpJ_ -help`
318+
`java -Xmx512m -cp $IJDIR/ij.jar:$IJDIR/plugins/bUnwarpJ_.jar bunwarpj.bUnwarpJ_ -help`
319319

320320
For the rest of the options, follow the help instructions.
321321

_pages/plugins/miji.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ run("Command", "key1=7 key2 key3=[C:\\Documents and Settings\\Fiji\\Test.png]");
4545

4646
The first parameter to the `run()` method is the menu item's label which identifies the plugin to run (in this example, the label would read: *Command*).
4747

48-
The second parameter is a String containing values the user specified via an [ImageJ dialog](http://jenkins.imagej.net/job/ImageJ1-javadoc/javadochttps://imagej.nih.gov/ij/gui/GenericDialog.html). Every value is identified by a label, and except for checkboxes (such as `key2` in the example above), they have values. If the values contain spaces, you need to enclose the value in square brackets (such as `key3` in the example above).
48+
The second parameter is a String containing values the user specified via an [ImageJ dialog](http://jenkins.imagej.net/job/ImageJ1-javadoc/javadoc/ij/gui/GenericDialog.html). Every value is identified by a label, and except for checkboxes (such as `key2` in the example above), they have values. If the values contain spaces, you need to enclose the value in square brackets (such as `key3` in the example above).
4949

5050
Note that the backslash is a so-called *escape character*, i.e. it can be used to insert special characters such as line breaks or tabs. To insert a plain backslash, it has to be repeated therefore (as in the `key3` value: `C:\\Documents and Settings` becomes `C:\\\\Documents and Settings`).
5151

_pages/plugins/morpholibj.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -697,15 +697,15 @@ At the end of the script a dialog is shown to smooth the surfaces at will. Each
697697

698698
## Documentation
699699

700-
Each [released version of MorphoLibJ](https://github.comhttps://imagej.nih.gov/ijpb/MorphoLibJ/releases) comes with a [User Manual in PDF format](https://github.comhttps://imagej.nih.gov/ijpb/MorphoLibJ/releases/download/v1.4.0/MorphoLibJ-manual-v1.4.0.pdf).
700+
Each [released version of MorphoLibJ](https://github.com/ijpb/MorphoLibJ/releases) comes with a [User Manual in PDF format](https://github.com/ijpb/MorphoLibJ/releases/download/v1.4.0/MorphoLibJ-manual-v1.4.0.pdf).
701701

702-
The main source code directory is on GitHub under [src/main/java/inrahttps://imagej.nih.gov/ijpb](http://github.comhttps://imagej.nih.gov/ijpb/MorphoLibJ/tree/master/src/main/java/inrahttps://imagej.nih.gov/ijpb).
702+
The main source code directory is on GitHub under [src/main/java/inra/ijpb](http://github.com/ijpb/MorphoLibJ/tree/master/src/main/java/inra/ijpb).
703703

704-
You can browse the [javadoc](http:/https://imagej.nih.gov/ijpb.github.io/MorphoLibJ/javadoc/) for more information about its API.
704+
You can browse the [javadoc](http://ijpb.github.io/MorphoLibJ/javadoc/) for more information about its API.
705705

706706
## Installation
707707

708-
- In [ImageJ 1.x](/software/imagej1), download the [latest released jar](https://github.comhttps://imagej.nih.gov/ijpb/MorphoLibJ/releases) into the *plugins* folder.
708+
- In [ImageJ 1.x](/software/imagej1), download the [latest released jar](https://github.com/ijpb/MorphoLibJ/releases) into the *plugins* folder.
709709
- In [ImageJ2](/software/imagej2) (including [Fiji](/software/fiji)), you just need to [ add](/update-sites/following#add-update-sites) the IJPB-plugins site to your list of update sites:
710710
1. Select {% include bc path='Help | Update...'%} from the menu to start the [updater](/plugins/updater).
711711
2. Click on *Manage update sites*. This brings up a dialog where you can activate additional update sites.

_pages/plugins/multi-stack-montage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ You can have a look at this minimal plugin that runs StackMontage.
7070
public void run(String arg) {
7171

7272
// Make some nice images
73-
ImagePlus imp = IJ.openImage("https://imagej.net/ij/images/confocal-series.zip");
73+
ImagePlus imp = IJ.openImage("https://imagej.nih.gov/ij/images/confocal-series.zip");
7474
String imageName = imp.getTitle();
7575

7676
// Recolor them

_pages/plugins/nanotrackj.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories: [Uncategorized]
1212
{% capture maintainer%}
1313
{% include person id='thorstenwagner' %},
1414
{% endcapture %}
15-
{% include info-box software='ImageJFiji' name='NanoTrackJ' author=author maintainer=maintainer filename='nanotrackj.jar [\[1](https://github.com/thorstenwagnerhttps://imagej.nih.gov/ij-nanotrackj/releases/latest) \]' source='Github [\[2](https://github.com/thorstenwagnerhttps://imagej.nih.gov/ij-nanotrackj) \]' latest-version='v1.0.3 (22 Feb 2016)' status='active' %}
15+
{% include info-box software='ImageJFiji' name='NanoTrackJ' author=author maintainer=maintainer filename='nanotrackj.jar [\[1](https://github.com/thorstenwagner/ij-nanotrackj/releases/latest) \]' source='Github [\[2](https://github.com/thorstenwagner/ij-nanotrackj) \]' latest-version='v1.0.3 (22 Feb 2016)' status='active' %}
1616

1717
## General
1818

@@ -78,7 +78,7 @@ If the plugin finishes analyzing it opens histogram plots for the size distribut
7878

7979
## Simulation
8080

81-
If you like to check NanoTrackJ by Monte-Carlo simulation, you may use our [simulation macros](https://github.com/thorstenwagnerhttps://imagej.nih.gov/ij-nanotrackj/tree/master/scripts/simulation).
81+
If you like to check NanoTrackJ by Monte-Carlo simulation, you may use our [simulation macros](https://github.com/thorstenwagner/ij-nanotrackj/tree/master/scripts/simulation).
8282

8383
PartSimDC.ijm: This macro allows you to simulate particle by specifying their diffusion coefficient.
8484

_pages/plugins/robust-clump-splitting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories: [Uncategorized]
1212
{% capture maintainer%}
1313
{% include person id='LouiseBloch' %}, {% include person id='thorstenwagner' %}
1414
{% endcapture %}
15-
{% include info-box software='Fiji' name='Robust Clump Splitting' author=author maintainer=maintainer filename='ij\_robust\_split.jar \[\]' source='Github https://github.com/thorstenwagnerhttps://imagej.nih.gov/ij-robust-split' latest-version='v1.0.0 (04 Sep 2016)' status='active' %}
15+
{% include info-box software='Fiji' name='Robust Clump Splitting' author=author maintainer=maintainer filename='ij\_robust\_split.jar \[\]' source='Github https://github.com/thorstenwagner/ij-robust-split' latest-version='v1.0.0 (04 Sep 2016)' status='active' %}
1616

1717
## Purpose
1818

@@ -28,7 +28,7 @@ and
2828

2929
The plugin provides an alternative to the ImageJ "build-in"-[watershed](https://imagej.nih.gov/ij/docs/guide/146-29.html#sub:Watershed)-plugin. It does not perform better results on regular round clumps. Especially for big clumps with image disturbances and many holes in the clump the results of the watershed plugins are much more robust and it does not depends on so many parameters. For elongated indididual objects, the plugin can produce better results than the watershed.
3030

31-
It depends on the [IJ-Blob](/pluginshttps://imagej.nih.gov/ij-blob) library, the [Vecmath](https://github.com/hharrison/vecmath) library, the [LIBSVM](https://www.csie.ntu.edu.tw/~cjlin/libsvm/) library and the [JavaML](http://java-ml.sourceforge.net/) library.
31+
It depends on the [IJ-Blob](/plugins/ij-blob) library, the [Vecmath](https://github.com/hharrison/vecmath) library, the [LIBSVM](https://www.csie.ntu.edu.tw/~cjlin/libsvm/) library and the [JavaML](http://java-ml.sourceforge.net/) library.
3232

3333
## Plugin usage
3434

@@ -168,7 +168,7 @@ As already mentioned the main algorithm follows the publication of *Kumar et al.
168168

169169
# Installation
170170

171-
If you use ImageJ just copy ij\_robust\_split.jar in your plugins folder and copy the [IJ-Blob](/pluginshttps://imagej.nih.gov/ij-blob), [Vecmath](https://github.com/hharrison/vecmath), the [LIBSVM](https://www.csie.ntu.edu.tw/~cjlin/libsvm/) and the [JavaML](http://java-ml.sourceforge.net/) jars into the plugins/jars folder.
171+
If you use ImageJ just copy ij\_robust\_split.jar in your plugins folder and copy the [IJ-Blob](/plugins/ij-blob), [Vecmath](https://github.com/hharrison/vecmath), the [LIBSVM](https://www.csie.ntu.edu.tw/~cjlin/libsvm/) and the [JavaML](http://java-ml.sourceforge.net/) jars into the plugins/jars folder.
172172

173173
# How to cite
174174

_pages/plugins/tws/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Here we can load the data (in [Weka](http://www.cs.waikato.ac.nz/ml/weka/) forma
102102

103103
#### Save data
104104

105-
With this button we can save the current trace information into a data file that we can handle later with the plugin or the Weka Explorer itself. The plugin will save the feature vectors derived from the pixels belonging to each trace into an [ARFF](http://weka.wikispaces.com/ARFF+%28stable+version%29) file at a location chosen by the user. Notice the traces (regions of interests selected by the user) are not saved but only their corresponding feature vectors. To save the ROIs, you can simply use the \[https://imagej.nih.gov/ijhttps://imagej.nih.gov/ij/docs/guide/146-30.html#sub:ROI-Manager... ROI Manager\].
105+
With this button we can save the current trace information into a data file that we can handle later with the plugin or the Weka Explorer itself. The plugin will save the feature vectors derived from the pixels belonging to each trace into an [ARFF](http://weka.wikispaces.com/ARFF+%28stable+version%29) file at a location chosen by the user. Notice the traces (regions of interests selected by the user) are not saved but only their corresponding feature vectors. To save the ROIs, you can simply use the \[https://imagej.nih.gov/ij/docs/guide/146-30.html#sub:ROI-Manager... ROI Manager\].
106106

107107
#### Create new class
108108

_pages/scripting/clojure.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ See [Scripting Help](/scripting) for details on keybindings and how to use the i
2727
A minimal, complete clojure example:
2828

2929
(import '(ij IJ))
30-
(def gold (IJ/openImage "https://imagej.nih.govhttps://imagej.nih.gov/ij/images/AuPbSn40.jpg"))
30+
(def gold (IJ/openImage "https://imagej.nih.gov/ij/images/AuPbSn40.jpg"))
3131
(.show gold)
3232

3333
To create scripts, just save them as .clj text files (with an underscore in the name) in any folder or subfolder of Fiji's plugins folder, and run {% include bc path='Plugins|Scripting|Refresh Clojure Scripts'%} to update the menus (it's done automatically at start up as well).
@@ -299,13 +299,13 @@ Above, note the dot '.' after Random, which indicates we are calling the constru
299299

300300
ImageJ has three basic objects:
301301

302-
- The <b>[ImagePlus](https://imagej.nih.gov/ij/developer/apihttps://imagej.nih.gov/ij/ImagePlus.html)</b>, which wraps the ImageProcessor and contains properties and pointers to the ROI (region of interest) and the ImageWindow that may be displaying the image.
303-
- The <b>[ImageProcessor](https://imagej.nih.gov/ij/developer/apihttps://imagej.nih.gov/ij/process/ImageProcessor.html)</b>, which is an abstract class enabling the high-level manipulation of and access to pixels. Its subclasses each wraps a different kind of data type:
302+
- The <b>[ImagePlus](https://imagej.nih.gov/ij/developer/api/ij/ImagePlus.html)</b>, which wraps the ImageProcessor and contains properties and pointers to the ROI (region of interest) and the ImageWindow that may be displaying the image.
303+
- The <b>[ImageProcessor](https://imagej.nih.gov/ij/developer/api/ij/process/ImageProcessor.html)</b>, which is an abstract class enabling the high-level manipulation of and access to pixels. Its subclasses each wraps a different kind of data type:
304304
- ByteProcessor - byte\[\]
305305
- ShortProcessor - short\[\]
306306
- FloatProcessor - float\[\]
307307
- ColorProcessor - int\[\] (byte-packed ARGB, but Alpha channel is ignored)
308-
- The <b>[ImageStack](https://imagej.nih.gov/ij/developer/apihttps://imagej.nih.gov/ij/ImageStack.html)</b> which contains unfortunately not an array of ImageProcessor, but an Object\[\] containing an homogeneous list of equal length byte\[\], or float\[\], etc.
308+
- The <b>[ImageStack](https://imagej.nih.gov/ij/developer/api/ij/ImageStack.html)</b> which contains unfortunately not an array of ImageProcessor, but an Object\[\] containing an homogeneous list of equal length byte\[\], or float\[\], etc.
309309

310310
For extensive documentation, see the [Anatomy of an ImageJ image](http://albert.rierol.net/imagej_programming_tutorials.html#ImageJ%20programming%20basics) ImageJ programming basics tutorial.
311311

@@ -362,7 +362,7 @@ An alternative way would be to simply duplicate the processor of imp-1, and then
362362

363363
### Resizing an ImageStack
364364

365-
This one is harder, because an ImageStack is just a wrapper for Object\[\] list of pixel arrays. ImageJ though provides a mid-level resizing method, via the [CanvasResizer](https://imagej.nih.gov/ij/developer/apihttps://imagej.nih.gov/ij/plugin/CanvasResizer.html) class:
365+
This one is harder, because an ImageStack is just a wrapper for Object\[\] list of pixel arrays. ImageJ though provides a mid-level resizing method, via the [CanvasResizer](https://imagej.nih.gov/ij/developer/api/ij/plugin/CanvasResizer.html) class:
366366

367367
(import '(ij.plugin CanvasResizer)
368368
'(ij IJ ImagePlus))
@@ -1125,7 +1125,7 @@ To compile the clojure code to .class files, you need:
11251125
For example:
11261126

11271127
$ mkdir classes
1128-
$ java -cp .:../..https://imagej.nih.gov/ij.jar:../../jars/clojure.jar:./classes/:./fj/tests/process/ clojure.lang.Repl
1128+
$ java -cp .:../../ij.jar:../../jars/clojure.jar:./classes/:./fj/tests/process/ clojure.lang.Repl
11291129

11301130
`user=> (compile 'fj.tests.process.FloatProcessorPlus)`
11311131
`fj.tests.process.FloatProcessorPlus`
@@ -1156,7 +1156,7 @@ The example clojure code:
11561156
; ...
11571157
; $ cd ../../../
11581158
; $ mkdir classes
1159-
; $ java -cp ../..https://imagej.nih.gov/ij.jar:../../jars/clojure.jar:./classes/:.:./fj/tests/process/ clojure.lang.Repl
1159+
; $ java -cp ../../ij.jar:../../jars/clojure.jar:./classes/:.:./fj/tests/process/ clojure.lang.Repl
11601160
; user=> (compile 'fj.tests.process.FloatProcessorPlus)
11611161
; fj.tests.process.FloatProcessorPlus
11621162
; user=>
@@ -1165,7 +1165,7 @@ The example clojure code:
11651165
; structure in the ./classes/ folder.
11661166
;
11671167
; Then run like any other java class with a static public void main method:
1168-
; $ java -cp .:../..https://imagej.nih.gov/ij.jar:../../jars/clojure.jar:./classes fj.tests.process.FloatProcessorPlus
1168+
; $ java -cp .:../../ij.jar:../../jars/clojure.jar:./classes fj.tests.process.FloatProcessorPlus
11691169
;
11701170

11711171
(ns fj.tests.process.FloatProcessorPlus

_pages/scripting/generic-dialog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Dialog.addChoice("Type:", newArray("8-bit", "16-bit", "32-bit", "RGB"));
7373
Dialog.addCheckbox("Ramp", true);
7474

7575
// One can add a Help button that opens a webpage
76-
Dialog.addHelp("https://imagej.nethttps://imagej.nih.gov/ij/macros/DialogDemo.txt");
76+
Dialog.addHelp("https://imagej.nih.gov/ij/macros/DialogDemo.txt");
7777

7878
// Finally show the GUI, once all parameters have been added
7979
Dialog.show();

0 commit comments

Comments
 (0)