-
Notifications
You must be signed in to change notification settings - Fork 61
/
demo_version.html
183 lines (123 loc) · 7.4 KB
/
demo_version.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- $Id: demo_version.html,v 1.15 2013/01/20 12:18:34 jact Exp $ -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Demo Version Features</title>
<meta http-equiv="imagetoolbar" content="no" />
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
<meta name="author" content="Jose Antonio Chavarría" />
<meta name="copyright" content="2002-2013 Jose Antonio Chavarría" />
<meta name="keywords" content="OpenClinic, open source, gpl, healthcare, php, mysql, coresis" />
<meta name="description" content="OpenClinic is an easy to use, open source, medical records system written in PHP" />
<link rel="stylesheet" type="text/css" href="./css/openclinic.css" media="screen" title="OpenClinic" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="./css/ie6_fix.css" title="IE 6 Fix" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="./css/print.css" media="print" />
<link rel="stylesheet" type="text/css" href="./css/print.css" media="print" />
<link rel="shortcut icon" type="image/png" href="./img/miniopc.png" />
<link rel="bookmark icon" type="image/png" href="./img/miniopc.png" />
</head>
<body id="top">
<div id="wrap">
<div id="header">
<p id="logo">
<a accesskey="1" href="../index.php">
<img src="./img/openclinic-1.png" alt="OpenClinic" title="OpenClinic" height="58" width="291" />
</a>
</p>
<div id="shortcuts">
<ul>
<li><a href="./index.php">Start OpenClinic</a></li>
</ul>
</div><!-- #shortcuts -->
<div id="tabs">
<ul>
<li><a href="./index.html" class="first">Readme</a></li>
<li><a href="./install.html">Install Instructions</a></li>
<li><a href="./changelog.html">Changelog</a></li>
<li><a href="./coding_guidelines.html">Coding Guidelines</a></li>
<li><a href="./demo_version.html" class="selected">Demo Version Features</a></li>
</ul>
</div><!-- #tabs -->
</div><!-- #header -->
<hr />
<div id="main">
<div id="content">
<h1>Demo Version Features</h1>
<h2 id="enable"><a href="#top" title="To top of the page">Enable/Disable Demo</a></h2>
<p>
To enable/disable OpenClinic demo behavior there must be set as <code>true</code> or <code>false</code> the constant <code>OPEN_DEMO</code> in file <code class="note">config/global_constants.php</code>.
</p>
<pre class="programlisting"><code>
define("OPEN_DEMO", <var>false</var>); // normal version
define("OPEN_DEMO", <var>true</var>); // demo version
</code></pre>
<h2 id="disabled"><a href="#top" title="To top of the page">Disabled Options in Demo</a></h2>
<p>
For security reasons, in demo version there have been disabled some features. In normal version this features would be tested. You could do so <a href="http://sourceforge.net/project/showfiles.php?group_id=70742">downloading the normal version</a> and testing it by yourself.
</p>
<ul>
<li><strong class="note">Admin » Dumps</strong> - This option is used to back-up the application database in different formats.</li>
<li><strong class="note">Install script page</strong> - This page is needed to install the application and to restore the back-ups of the database. As into this site everything is set up to start using the application, it is unnecesary its use.</li>
<li>In the option <strong class="note">Admin » Config Settings</strong> you can choose the application language. But in this demo version it is disabled for clearness reasons.</li>
<li>Disabling security for demo since sourceforge.net seems to be using mirrored servers that do not share session info. That is why, in demo version there isn't user's control.</li>
<li>Historical and log tables would not be used for lack of space reasons.</li>
<li><strong class="note">Admin » Logs Statistics</strong> - Log tables would not be used.</li>
<li>In <strong class="note">Medical Records</strong> tab doesn't exist a list of lastest viewed patients.</li>
<li>In <strong class="note">Medical Records</strong> tab can't manage <strong class="note">medical problem tests</strong> because server's space disk is limited.</li>
<li>Patients and medical problems can't be deleted.</li>
</ul>
<h2 id="profiles"><a href="#top" title="To top of the page">User Profiles</a></h2>
<p>
There are other three profiles defined in OpenClinic. Their features are:
</p>
<ul>
<li><strong class="note">Administrator</strong> - Users with this profile would have total access available into the program.</li>
<li><strong class="note">Administrative</strong> - Users with this profile would have access to <strong class="note">Medical Records</strong> tab and <strong class="note">Home</strong> tab only.</li>
<li><strong class="note">Doctor</strong> - This profile, at this application developing stage, has only access to the <strong class="note">Home</strong> tab and some of the options of <strong class="note">Medical Records</strong> tab. It only can see patient's data, not edit them.</li>
</ul>
<h2 id="private"><a href="#top" title="To top of the page">Patient Private Data</a></h2>
<p>
Patient's data should be ficticious. This is so because they should be used only for <strong class="note">Medical Records</strong> tab aplication testing purposes. Therefore, as author's site, I don't take charge of any liability derived from the data that this application could hold.
</p>
<h2 id="bugs"><a href="#top" title="To top of the page">Bugs and Suggestions</a></h2>
<p>
OpenClinic isn't perfect, but your suggestions, feedback and bug reports can help us to have a very well done medical records system! You can do this, mailing to <a href="mailto:CUT-THIS.openclinic@gmail.com?subject=OpenClinic">Jose Antonio Chavarría</a> with <strong class="note">subject OpenClinic</strong>.
</p>
<h1><a href="./index.php">Start using OpenClinic demo version</a></h1>
</div><!-- #content -->
</div><!-- #main -->
<hr />
<div id="navigation">
<h2>Table of contents</h2>
<ul>
<li><a href="#enable">Enable/Disable Demo</a></li>
<li><a href="#disabled">Disabled Options in Demo</a></li>
<li><a href="#profiles">User Profiles</a></li>
<li><a href="#private">Patient Private Data</a></li>
<li><a href="#bugs">Bugs and Suggestions</a></li>
</ul>
<p id="hosting">
<a href="http://sourceforge.net" title="Project hosted in SourceForge.net">Project hosted in SF.net</a>
</p>
</div><!-- #navigation -->
<hr />
<div id="footer">
<div id="app_info">
<p><a href="http://openclinic.sourceforge.net/">Powered by OpenClinic</a></p>
<p>
Copyright © 2002-2013 <a href="mailto:CUT-THIS.openclinic@gmail.com?subject=OpenClinic" accesskey="9">Jose Antonio Chavarría</a>
</p>
<p>
Under the <a href="./LICENSE" rel="license">GNU General Public License</a>
</p>
<p>
<a href="http://validator.w3.org/check/referer" id="xhtml11" title="Valid XHTML 1.1">Valid XHTML 1.1</a>
</p>
</div><!-- #app_info -->
</div><!-- #footer -->
</div><!-- #wrap -->
</body>
</html>