Skip to content

Commit f7d9c67

Browse files
committed
build: unpin Hugo version #1086
1 parent b74d339 commit f7d9c67

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+119
-118
lines changed

content/basics/commands.en.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ COMMAND is (sequence|winLevel|zoom|pan|rotation|crosshair|measure|draw|contextMe
5858
g! dcmview2d:move
5959
Pan the selected image
6060
Usage: dcmview2d:move -- X Y
61-
X and Y are Integer. It is mandatory to have '--' (end of options) for negative values
61+
X and Y are Integer. It is mandatory to have '--' (the end of options) for negative values
6262
-? --help show help
6363
{{< /highlight >}}
6464

@@ -102,7 +102,7 @@ VALUE is (None|Stack|Tile)
102102
g! dcmview2d:wl
103103
Change the window/level values of the selected image (increase or decrease into a normalized range of 4096)
104104
Usage: dcmview2d:wl -- WIN LEVEL
105-
WIN and LEVEL are Integer. It is mandatory to have '--' (end of options) for negative values
105+
WIN and LEVEL are Integer. It is mandatory to have '--' (the end of options) for negative values
106106
-? --help show help
107107
{{< /highlight >}}
108108

@@ -126,9 +126,9 @@ Load DICOM files remotely or locally
126126
Usage: dicom:get ([-l PATH]... [-w URI]... [-r URI]... [-p] [-i DATA]... [-z URI]...)
127127
PATH is either a directory(recursive) or a file
128128
-l --local=PATH open DICOMs from local disk
129-
-r --remote=URI open DICOMs from an URI
129+
-r --remote=URI open DICOMs from a URI
130130
-w --wado=URI open DICOMs from an XML manifest
131-
-z --zip=URI open DICOM ZIP from an URI
131+
-z --zip=URI open DICOM ZIP from a URI
132132
-p --portable open DICOMs from configured directories at the same level of the executable
133133
-i --iwado=DATA open DICOMs from an XML manifest (GZIP-Base64)
134134
-? --help show help
@@ -172,7 +172,7 @@ g! image:get
172172
Load images remotely or locally
173173
Usage: image:get ([-f file]... [-u url]...)
174174
-f --file=FILE open an image from a file
175-
-u --url=URL open an image from an URL
175+
-u --url=URL open an image from a URL
176176
-? --help show help
177177
{{< /highlight >}}
178178

@@ -220,7 +220,7 @@ arg is an XML text in UTF8 or an url with the option '--url'
220220
-x --xml open Patient Context from an XML data containing all DICOM Tags
221221
-i --inbound open Patient Context from an XML data containing all DICOM Tags, decoding syntax is [Base64/GZip]
222222
-s --iurlsafe open Patient Context from an XML data containing all DICOM Tags, decoding syntax is [Base64_URL_SAFE/GZip]
223-
-u --url open Patient Context from an URL (XML file containing all DICOM TAGs)
223+
-u --url open Patient Context from a URL (XML file containing all DICOM TAGs)
224224
-? --help show help
225225
{{< /highlight >}}
226226

@@ -239,6 +239,6 @@ A command containing special characters like '&' or space must be within quotes
239239
{{< highlight text >}}
240240
dicom:get -w "http://localhost/weasis-pacs-connector/manifest?patientID=97026728&modalitiesInStudy=MR"
241241
{{< /highlight >}}
242-
Depending the command line system, quotes or double quote needs to be escaped with a backslash. Ex. simple quote must be escaped in Eclipse but not in Intellij.
242+
Depending on the command line system, quotes or double quote needs to be escaped with a backslash. With IDE, a simple quote must be escaped in Eclipse but not in Intellij.
243243
{{% /notice %}}
244244

content/basics/customize/build-plugins.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following list describes the types of plugins, the interfaces they implement
1616
1. **Media Viewer or Editor**
1717
- Represents the main central panel and implements either `ViewerPlugin` or `ImageViewerPlugin`.
1818
- The factory for this type implements `SeriesViewerFactory`.
19-
- For DICOM special modalities, you can use `DicomSpecialElementFactory` to associate a viewer to a specific DICOM object.
19+
- For DICOM special modalities, you can use `DicomSpecialElementFactory` to associate a viewer with a specific DICOM object.
2020
2. **Toolbar Associated with a Viewer**
2121
- Implements the `Toolbar` or `DynamicToolbar` interface.
2222
- The factory for this type implements `InsertableFactory`
@@ -147,7 +147,7 @@ This feature will be available soon. It will allow you to manage the plugins and
147147
### Build OSGi Services
148148

149149
All the plugin type described in the list above are OSGi services that are registered and aggregated in the GUI. Building the plugin from the Maven archetype will configure the OSGi service automatically. For adding new OSGi services, here is the procedure:
150-
1. Create a class that implements the `Insertable` interface and represents a visual component. For example:
150+
1. Create a class that implements the `Insertable` interface and represents a visual component. For example,
151151
{{< highlight java >}}
152152
public class MyPrefView extends AbstractItemDialogPage {
153153

@@ -173,7 +173,7 @@ All the plugin type described in the list above are OSGi services that are regis
173173
}
174174
{{< /highlight >}}
175175

176-
2. Create a class that implements one of the plugin factories and include the annotations `@Component` and the `@Service` parameter. For example:
176+
2. Create a class that implements one of the plugin factories and include the annotations `@Component` and the `@Service` parameter. For example,
177177
{{< highlight java >}}
178178
@org.osgi.service.component.annotations.Component(service = PreferencesPageFactory.class)
179179
public class MyViewerPrefFactory implements PreferencesPageFactory {

content/basics/customize/integration.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ keywords: [ "workflow", "integration", "dicom viewer", "free dicom viewer", "ope
77

88
## <center>How to launch Weasis from any environments</center>
99

10-
Here we present how to launch Weasis with associated images from any context either [using weasis-pacs-connector](#use-weasis-pacs-connector) or [ViewerHub](../../../viewer-hub) as its successor,
10+
Here we present how to launch Weasis with associated images from any context either [using weasis-pacs-connector](#use-weasis-pacs-connector) or [ViewerHub](../../../viewer-hub) as its successor
1111
or by [building your own connector](#build-your-own-connector). The launch of the application is based on the [weasis protocol](../../../getting-started/weasis-protocol) available since {{% badge title="Version" %}}3.5.3{{% /badge %}}.
1212

1313
Using [weasis-pacs-connector](https://github.com/nroduit/weasis-pacs-connector) or [ViewerHub](../../../viewer-hub) allows a high degree of integration and facilitates connection to a PACS. Here are some of the advantages:
1414

1515
- Automatically build a manifest according to a configuration with a PACS
16-
- The initial URL starts with HTTP and is then redirected to weasis://? (useful when custom URI scheme is not allowed by wiki, blog platforms, etc.)
16+
- The initial URL starts with HTTP and is then redirected to weasis://? (useful when a custom URI scheme is not allowed by wiki, blog platforms, etc.)
1717
- Efficiently manages to build the manifest simultaneously with the start of Weasis, optimizing loading time
1818
- Easily handles secure manifest requests and manages tokens for the DICOMWeb services
1919

content/demo.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Expected Output:
6969

7070
#### Pixel Depth (9-bit to 16-bit)
7171

72-
Tests with different pixel depths to ensure correct image rendering.
72+
Tests with different pixel depths to ensure the correct image rendering.
7373

7474
{{% notice info %}}
7575
**Expected Output**: Images rendered identically regardless of pixel depth.
@@ -247,7 +247,7 @@ $dicom:get -w "https://nroduit.github.io/demo-archive/demo/video.xml"
247247
{{< /launch >}}
248248

249249
{{% notice info %}}
250-
Open the default viewer (associated to the video mime type) of the operating system.
250+
Open the default viewer (associated with the video mime type) of the operating system. On Windows, it uses the Windows Media Player, which does not have an MPEG-2 codec installed by default. You can use VLC or any other video player.
251251
{{% /notice %}}
252252

253253
------------------------------------------------------------------------

content/description-2.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Weasis has been designed to meet the evolving needs of clinical information syst
55
- **Data type support**
66
- Weasis provides a highly detailed implementation of the DICOM standard, enabling effortless display and interaction with most types of DICOM files.
77
- Display most DICOM files including multi-frame, enhanced, MPEG-2, MPEG-4, MIME Encapsulation, DOC, SR, PR, KOS, SEG, AU, RT, and ECG
8-
- Display DICOM image containing float or double data (Parametric Map)
9-
- Import DICOM files with DICOM Query/Retrieve (C-GET, C-MOVE and WADO-URI) and DICOMWeb (QUERY and RETRIEVE)
8+
- Display DICOM images containing float or double data (Parametric Map)
9+
- Import DICOM files with DICOM Query/Retrieve (C-GET, C-MOVE, and WADO-URI) and DICOMWeb (QUERY and RETRIEVE)
1010
- Import and export DICOM CD/DVD with DICOMDIR
1111
- Import and export DICOM ZIP files
1212
- Viewer for common image formats (TIFF, BMP, GIF, JPEG, PNG, RAS, HDR, and PNM)

content/free-dicom-viewer.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Weasis has been designed to meet the evolving needs of clinical information syst
2525
- Weasis provides a highly detailed implementation of the DICOM standard, enabling effortless display and interaction with most types of DICOM files.
2626
- Display most DICOM files including multi-frame, enhanced, MPEG-2, MPEG-4, MIME Encapsulation, DOC, SR, PR, KOS, SEG, AU, RT, and ECG
2727
- Display DICOM image containing float or double data (Parametric Map)
28-
- Import DICOM files with DICOM Query/Retrieve (C-GET, C-MOVE and WADO-URI) and DICOMWeb (QUERY and RETRIEVE)
28+
- Import DICOM files with DICOM Query/Retrieve (C-GET, C-MOVE, and WADO-URI) and DICOMWeb (QUERY and RETRIEVE)
2929
- Import and export DICOM CD/DVD with DICOMDIR
3030
- Import and export DICOM ZIP files
3131
- Viewer for common image formats (TIFF, BMP, GIF, JPEG, PNG, RAS, HDR, and PNM)

content/getting-started/_index.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Since version 4, only the distribution with a native installer is maintained to
1616
For details about GLIBC versions and Linux distribution compatibility, see this [page](https://repology.org/project/glibc/versions).
1717

1818
{{% notice note %}}
19-
To manage Weasis version at the server side, it is possible to install the [Weasis web package](https://github.com/nroduit/weasis-pacs-connector#installation) which will upgrade the native installation at the client side (it works for minor releases by updating all the plugins except the launcher).<br>
19+
To manage a Weasis version at the server side, it is possible to install the [Weasis web package](https://github.com/nroduit/weasis-pacs-connector#installation) which will upgrade the native installation at the client side (it works for minor releases by updating all the plugins except the launcher).<br>
2020
Explore more integration possibilities with other systems [here](../basics/customize/integration).
2121
{{% /notice %}}
2222

content/getting-started/dcm4chee.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Weasis is launched from the dcm4chee administrative web interface with the [weas
1111

1212
![dcm4chee-arc-light](/gallery-dcm4chee/1Weasis%20in%20dcm4chee-arc-light.png?classes=border "dcm4chee-arc-light")
1313

14-
For a simpler and faster installation without server components, please follow these [instructions](../../basics/customize/integration/#download-directly-with-dicomweb-restful-services); no need to consider the following points on this page. Otherwise if you need more advanced configurations then follow these steps:
14+
For a simpler and faster installation without server components, please follow these [instructions](../../basics/customize/integration/#download-directly-with-dicomweb-restful-services); no need to consider the following points on this page. Otherwise, if you need more advanced configurations, then follow these steps:
1515

1616
1. [Install dcm4chee](https://github.com/dcm4che/dcm4chee-arc-light/wiki), if not already done (Installation with Docker is straightforward).
1717

@@ -51,9 +51,9 @@ deployment-overlay add --name=dcm4chee-arc --deployments=weasis-pacs-connector.w
5151
5. To activate Weasis in the dcm4chee-arc-light user interface (see the matrix of the required versions in the table below):
5252
you need to add attributes by either editing docker-compose.env (from 5.22.0) or from the left menu Configuration > Devices > dcm4chee-arc > Extensions > Edit extension > Child Objects > Web Applications > DCM4CHEE (add `&cdb` to the URL if weasis.war has not been deployed on the server-side):
5353
- Configure the URL for having a view button for the patient or study level.
54-
- From dcm4chee-arc-light 5.10.2 to 5.19.0 the left menu Configuration > Devices > dcm4chee-arc > Extensions > Archive Device
54+
- From dcm4chee-arc-light 5.10.2 to 5.19.0, the left menu Configuration > Devices > dcm4chee-arc > Extensions > Archive Device
5555
- From dcm4chee-arc-light 5.19.1 the left menu Configuration > Devices > dcm4chee-arc > Extensions > Edit extension > Child Objects > Web Applications > DCM4CHEE
56-
- From dcm4chee-arc-light 5.22.0 by editing docker-compose.env (It allows you to directly apply the properties when deploying, then the can be edited in the web portal). Note: the character ‘&’ must be escaped (e.g. IID_STUDY_URL=../../weasis-pacs-connector/weasis?studyUID={{studyUID}}\\&access_token={{access_token}})
56+
- From dcm4chee-arc-light 5.22.0 by editing docker-compose.env (It allows you to directly apply the properties when deploying, then they can be edited in the web portal). Note: the character ‘&’ must be escaped (e.g., IID_STUDY_URL=../../weasis-pacs-connector/weasis?studyUID={{studyUID}}\\&access_token={{access_token}})
5757
{{% notice note %}}
5858
**URL parameters**
5959

content/getting-started/guidelines.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Weasis uses [google-java-format](https://github.com/google/google-java-format) a
2828
### Getting the source and building Weasis
2929

3030
- Getting the Source
31-
- For external Git client, see [Building Weasis](../building-weasis).
31+
- For an external Git client, see [Building Weasis](../building-weasis).
3232
- From IntelliJ IDEA: *New > Project from Version Control...*
3333
- In the *Get from Version Control* dialog, select the menu *Repository URL* and enter the following URL: `https://github.com/nroduit/Weasis.git` (public repository)
3434
- Building Weasis plugins
@@ -75,7 +75,7 @@ In Eclipse launcher parameters, '&' within URLs needs to be escaped with a backs
7575
- Defines a new user (for getting specific preferences): `-Dweasis.user=user1`
7676
- Examples with specific configuration files:
7777
- For launching Weasis Dicomizer: `-Dfelix.extended.config.properties=file:target/conf/dicomizer.json`
78-
- Configuration from an URL: `-Dfelix.extended.config.properties=https://mysite.com/weasis/conf/config.json`
78+
- Configuration from a URL: `-Dfelix.extended.config.properties=https://mysite.com/weasis/conf/config.json`
7979
{{% notice note %}}
8080
**felix.config.properties** defines the location of base.json (the OSGI configuration and the list of plugins to install/start)<br>
8181
**felix.extended.config.properties** defines the location of a json file (extends/overrides base.json)

content/getting-started/translating.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ weight: 80
88
Translation files are hosted and managed on the [Transifex](https://app.transifex.com/weasis/public/) website. Get an account and help to translate to your language! If your language is missing, just head over to Transifex and request a new language.
99

1010
{{% notice warning %}}
11-
**Text length**: The translations for many languages frequently exceed the length of the corresponding English source. It could be a problem for the layout of graphical components (e.g. buttons). Some elements have a character limit on the translation tool.
11+
**Text length**: The translations for many languages frequently exceed the length of the corresponding English source. It could be a problem for the layout of graphical components (e.g., buttons). Some elements have a character limit on the translation tool.
1212
{{% /notice %}}
1313

1414
{{% notice tip %}}
@@ -23,7 +23,7 @@ For special words or particular contexts look at the "Instructions" text box (gi
2323
To obtain daily built packages, see this [page](https://github.com/nroduit/weasis-i18n).
2424

2525
{{% notice note %}}
26-
That means the translation packages can be deployed at any time, it does not need to follow the Weasis life cycle. With remote packages, the plugin translation will be updated by Weasis only if the timestamp number has changed. This timestamp is set during the build phase described below.
26+
That means the translation packages can be deployed at any time; it does not need to follow the Weasis life cycle. With remote packages, the plugin translation will be updated by Weasis only if the timestamp number has changed. This timestamp is set during the build phase described below.
2727
{{% /notice %}}
2828

2929
{{% notice info %}}
@@ -54,7 +54,7 @@ Go in the *weasis-i18n* directory, Compile and install all the plugins in the lo
5454
$ mvn clean install -Dtransifex.token="<your-token>"
5555
{{< /highlight >}}
5656

57-
All the APIs require to be authenticated. So the value "your-token" must be replaced by your generate token, see how to [get this token](https://docs.transifex.com/account/authentication) on Transifex.
57+
All the APIs require to be authenticated. So the value "your-token" must be replaced by your generated token, see how to [get this token](https://docs.transifex.com/account/authentication) on Transifex.
5858

5959
Command if you are behind a proxy server:
6060
{{< highlight bash >}}
@@ -67,7 +67,7 @@ The distribution files are located in the *weasis-i18n-dist/target/dist* folder.
6767

6868
### Apply the translations
6969

70-
The translation package can be built manually as described below or it is automatically built every 24 hours and can be downloaded from [here](https://github.com/nroduit/weasis-i18n#download-the-binary-package). When [Building Weasis](../building-weasis), the last package is downloaded automatically.
70+
The translation package can be built manually as described below, or it is automatically built every 24 hours and can be downloaded from [here](https://github.com/nroduit/weasis-i18n#download-the-binary-package). When [Building Weasis](../building-weasis), the last package is downloaded automatically.
7171

7272
* In order to update Weasis with new translations, unzip weasis-i18n.zip and either:
7373
* Pass the weasis.i18n location into the [launch command](../weasis-protocol/#modify-the-launch-parameters):

0 commit comments

Comments
 (0)