Mercurial > hg > orthanc
annotate README @ 1150:fe0ab24f4db1
preparing for release
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 11 Sep 2014 16:05:57 +0200 |
parents | a9cff2c077d4 |
children | 4f1ac0f2c39c |
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 | |
19 Currently, the supported platforms are: | |
20 | |
21 * Linux 32bit. | |
22 * Linux 64bit. | |
7 | 23 * Windows 32bit. |
0 | 24 |
25 | |
26 Supported Toolchains | |
27 -------------------- | |
28 | |
57 | 29 Orthanc can currently be built using the following compiling |
0 | 30 toolchains: |
31 | |
32 * Native Linux compilation, with gcc. | |
7 | 33 * Native Windows compilation, with Microsoft Visual Studio. |
34 * Cross-compilation for Windows under 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 | |
449 | 44 We also kindly require scientific works and clinical studies that make |
45 use of Orthanc to cite Orthanc in their associated | |
46 publications. Similarly, we require open-source and closed-source | |
47 products that make use of Orthanc to warn us about this use. You can | |
48 cite our work using the following BibTeX entry: | |
17 | 49 |
449 | 50 @inproceedings{Jodogne:ISBI2013, |
563 | 51 author = {Jodogne, S. and Bernard, C. and Devillers, M. and Lenaerts, E. and Coucke, P.}, |
52 title = {Orthanc -- {A} Lightweight, {REST}ful {DICOM} Server for Healthcare and Medical Research}, | |
53 booktitle={Biomedical Imaging ({ISBI}), {IEEE} 10th International Symposium on}, | |
54 year={2013}, | |
55 pages={190-193}, | |
56 ISSN={1945-7928}, | |
57 month=apr, | |
58 url={http://ieeexplore.ieee.org/xpl/articleDetails.jsp?tp=&arnumber=6556444}, | |
59 address={San Francisco, {CA}, {USA}} | |
449 | 60 } |
17 | 61 |
62 | |
63 Licensing of special directories | |
64 -------------------------------- | |
65 | |
66 The following directories have separate licensing terms: | |
67 | |
68 * The file of the "Core/SQLite/" directory are licensed under the | |
69 3-clause BSD license, as they are derived from the Chromium project. | |
70 | |
71 | |
0 | 72 Content |
73 ------- | |
74 | |
75 This archive contains the following directories: | |
76 | |
77 * Core/ - The core C++ classes (independent of DCMTK) | |
479
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
78 * OrthancCppClient/ - Code of the C++ client |
57 | 79 * OrthancExplorer/ - Code of the Web application (HTML5/Javascript) |
80 * OrthancServer/ - Code of the Orthanc server (depends on DCMTK) | |
0 | 81 * Resources/ - Scripts, resources for building third-party code |
82 * UnitTests/ - Unit tests | |
83 | |
84 This archive contains the following files: | |
85 | |
86 * AUTHORS - The list of the authors | |
87 * CMakeLists.txt - The main build script | |
88 * COPYING - The GPLv3 license | |
57 | 89 * INSTALL - How to build Orthanc |
0 | 90 * README - This file |
91 * THANKS - The list of the contributors | |
7 | 92 * NEWS - The history of main changes between versions |
0 | 93 |
7 | 94 We have decided not to maintain a separate "ChangeLog" file. Each |
57 | 95 commit to the official Orthanc Mercurial repository should be |
7 | 96 associated with a description of the changes. |