Mercurial > hg > orthanc
annotate README @ 2640:c691fcf66071 jobs
ResourceModificationJob
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 28 May 2018 16:30:17 +0200 |
parents | 93dbea1a71e0 |
children | 62cc762d1fb0 |
rev | line source |
---|---|
57 | 1 Orthanc - A Lightweight, RESTful DICOM Server |
2 ============================================= | |
3 | |
0 | 4 |
5 General Information | |
6 ------------------- | |
7 | |
705 | 8 General information about this software can be found on its official |
9 Website: | |
10 http://www.orthanc-server.com/ | |
0 | 11 |
57 | 12 The instructions for building Orthanc can be found in the "INSTALL" |
0 | 13 file. |
14 | |
15 | |
16 Supported Platforms | |
17 ------------------- | |
18 | |
2086 | 19 Currently, the officially supported platforms are: |
0 | 20 |
2086 | 21 * GNU/Linux (32bit and 64bit). |
7 | 22 * Windows 32bit. |
2086 | 23 * Apple OS X (32bit and 64bit). |
0 | 24 |
25 | |
26 Supported Toolchains | |
27 -------------------- | |
28 | |
57 | 29 Orthanc can currently be built using the following compiling |
0 | 30 toolchains: |
31 | |
2086 | 32 * Native GNU/Linux compilation, with gcc. |
7 | 33 * Native Windows compilation, with Microsoft Visual Studio. |
2086 | 34 * Cross-compilation for Windows under GNU/Linux, with MinGW. |
0 | 35 |
36 | |
17 | 37 Licensing |
38 --------- | |
39 | |
136 | 40 Orthanc is licensed under the GPLv3 license, with the OpenSSL |
41 exception: | |
42 http://people.gnome.org/~markmc/openssl-and-the-gpl.html | |
43 | |
1230
4f1ac0f2c39c
Fix licensing terms according to FSF recommendations
s.jodogne@gmail.com
parents:
705
diff
changeset
|
44 We also kindly ask scientific works and clinical studies that make |
4f1ac0f2c39c
Fix licensing terms according to FSF recommendations
s.jodogne@gmail.com
parents:
705
diff
changeset
|
45 use of Orthanc to cite Orthanc in their associated publications. |
4f1ac0f2c39c
Fix licensing terms according to FSF recommendations
s.jodogne@gmail.com
parents:
705
diff
changeset
|
46 Similarly, we ask open-source and closed-source products that make |
4f1ac0f2c39c
Fix licensing terms according to FSF recommendations
s.jodogne@gmail.com
parents:
705
diff
changeset
|
47 use of Orthanc to warn us about this use. You can cite our work |
4f1ac0f2c39c
Fix licensing terms according to FSF recommendations
s.jodogne@gmail.com
parents:
705
diff
changeset
|
48 using the following BibTeX entry: |
17 | 49 |
2561 | 50 @Article{Jodogne2018, |
51 author="Jodogne, S{\'e}bastien", | |
52 title="The {O}rthanc Ecosystem for Medical Imaging", | |
53 journal="Journal of Digital Imaging", | |
54 year="2018", | |
2613 | 55 month="Jun", |
56 day="01", | |
57 volume="31", | |
58 number="3", | |
59 pages="341--352", | |
2561 | 60 issn="1618-727X", |
61 doi="10.1007/s10278-018-0082-y", | |
62 url="https://doi.org/10.1007/s10278-018-0082-y" | |
449 | 63 } |
17 | 64 |
65 | |
66 Licensing of special directories | |
67 -------------------------------- | |
68 | |
69 The following directories have separate licensing terms: | |
70 | |
71 * The file of the "Core/SQLite/" directory are licensed under the | |
72 3-clause BSD license, as they are derived from the Chromium project. | |
73 | |
74 | |
0 | 75 Content |
76 ------- | |
77 | |
78 This archive contains the following directories: | |
79 | |
80 * Core/ - The core C++ classes (independent of DCMTK) | |
57 | 81 * OrthancExplorer/ - Code of the Web application (HTML5/Javascript) |
82 * OrthancServer/ - Code of the Orthanc server (depends on DCMTK) | |
1253 | 83 * Plugins/ - Code of the plugin framework |
0 | 84 * Resources/ - Scripts, resources for building third-party code |
1253 | 85 * UnitTestsSources/ - Unit tests |
0 | 86 |
87 This archive contains the following files: | |
88 | |
89 * AUTHORS - The list of the authors | |
90 * CMakeLists.txt - The main build script | |
91 * COPYING - The GPLv3 license | |
57 | 92 * INSTALL - How to build Orthanc |
0 | 93 * README - This file |
94 * THANKS - The list of the contributors | |
7 | 95 * NEWS - The history of main changes between versions |
0 | 96 |
7 | 97 We have decided not to maintain a separate "ChangeLog" file. Each |
57 | 98 commit to the official Orthanc Mercurial repository should be |
7 | 99 associated with a description of the changes. |