Commit 10bbaaf9 authored by Claes Sjofors's avatar Claes Sjofors

Web quick tour, android app added

parent fc9994d7
<html>
<head>
<link rel="stylesheet" type="text/css" href="../pcss.css">
<title>Quick Guide Android app</title>
</head>
<body>
<h1>Android app</h1>
<p> Control and troubleshoot the process from a cell phone or tablet computer.
</p><br>
<hr>
<h2 id="mainmenu">Start menu</h2>
<br>
<img src="../qguide_a_menu.png" alt="Menu">
<br><br>
<p> The configurable start menu with links to process graphics and documentation.
</p><br>
<hr>
<h2 id="mainmenu">Process graphics</h2>
<br>
<img src="../qguide_a_graph.png" alt="Process graphics">
<br><br>
<p>Process graphics to view and control the plant.</p><br>
<hr>
<h2 id="mainmenu">Plc Trace</h2>
<br>
<img src="../qguide_a_trace.png" alt="Plc trace">
<br><br>
<p>Examine the current state of the plc.</p><br>
<hr>
<h2 id="mainmenu">Runtime Navigator</h2>
<br>
<img src="../qguide_a_nav.png" alt="Runtime Navigator">
<br><br>
<p>The realtime database displayed in the runtime navigator.</p>
<hr>
<h2 id="mainmenu">Alarms and Events</h2>
<br>
<img src="../qguide_a_events.png" alt="Eventlist">
<br><br>
<p>Alarm and event lists.</p>
</body>
</html>
...@@ -50,5 +50,9 @@ ...@@ -50,5 +50,9 @@
<tr><td id="mainmenu"><a id="mainmenu" href="qguide_w_alarm.html" target="right">Alarms and events</a></td></tr> <tr><td id="mainmenu"><a id="mainmenu" href="qguide_w_alarm.html" target="right">Alarms and events</a></td></tr>
<tr><td id="mainmenu"><a id="mainmenu" href="qguide_w_methods.html" target="right">Methods</a></td></tr> <tr><td id="mainmenu"><a id="mainmenu" href="qguide_w_methods.html" target="right">Methods</a></td></tr>
</table> </table>
<h2 id="mainmenu">App</h2>
<table id="mainmenu" border="1" cellspacing="0" width="100%">
<tr><td id="mainmenu"><a id="mainmenu" href="qguide_app.html" target="right">Android app</a></td></tr>
</table>
</body> </body>
</html> </html>
...@@ -28,6 +28,15 @@ gif_sources := $(sort \ ...@@ -28,6 +28,15 @@ gif_sources := $(sort \
) \ ) \
) )
png_sources := $(sort \
$(foreach file, \
$(foreach dir, \
$(source_dirs), \
$(wildcard $(dir)/*.png) \
), $(notdir $(file)) \
) \
)
js_sources := $(sort \ js_sources := $(sort \
$(foreach file, \ $(foreach file, \
$(foreach dir, \ $(foreach dir, \
...@@ -65,6 +74,7 @@ sv_se_html_sources := $(sort \ ...@@ -65,6 +74,7 @@ sv_se_html_sources := $(sort \
) )
export_gif := $(addprefix $(doc_dir)/,$(gif_sources)) export_gif := $(addprefix $(doc_dir)/,$(gif_sources))
export_png := $(addprefix $(doc_dir)/,$(png_sources))
export_js := $(addprefix $(doc_dir)/,$(js_sources)) export_js := $(addprefix $(doc_dir)/,$(js_sources))
export_html := $(addprefix $(doc_dir)/,$(html_sources)) export_html := $(addprefix $(doc_dir)/,$(html_sources))
export_html_en_us := $(addprefix $(doc_dir)/en_us/,$(en_us_html_sources)) export_html_en_us := $(addprefix $(doc_dir)/en_us/,$(en_us_html_sources))
...@@ -72,7 +82,7 @@ export_html_sv_se := $(addprefix $(doc_dir)/sv_se/,$(sv_se_html_sources)) ...@@ -72,7 +82,7 @@ export_html_sv_se := $(addprefix $(doc_dir)/sv_se/,$(sv_se_html_sources))
clean_pwg := $(patsubst %.pwg,clean_%.pwg,$(sources)) clean_pwg := $(patsubst %.pwg,clean_%.pwg,$(sources))
clean_html := $(patsubst %.html,clean_%.html,$(sources)) clean_html := $(patsubst %.html,clean_%.html,$(sources))
clean_html := $(patsubst %.js,clean_%.js,$(sources)) clean_html := $(patsubst %.js,clean_%.js,$(sources))
export_doc := $(export_gif) $(export_js) $(export_html) $(export_html_en_us) $(export_html_sv_se) export_doc := $(export_gif) $(export_png) $(export_js) $(export_html) $(export_html_en_us) $(export_html_sv_se)
clean_ge := $(clean_gif) $(clean_html) clean_ge := $(clean_gif) $(clean_html)
.SUFFIXES: .SUFFIXES:
...@@ -121,6 +131,10 @@ $(doc_dir)/%.js : $(pwre_sroot)/doc/web/src/%.js ...@@ -121,6 +131,10 @@ $(doc_dir)/%.js : $(pwre_sroot)/doc/web/src/%.js
@ $(log_h_h) @ $(log_h_h)
@ $(cp) $(cpflags) $(source) $(target) @ $(cp) $(cpflags) $(source) $(target)
$(doc_dir)/%.png : $(pwre_sroot)/doc/web/src/%.png
@ $(log_h_h)
@ $(cp) $(cpflags) $(source) $(target)
$(doc_dir)/sv_se/%.js : $(pwre_sroot)/doc/web/src/%.js $(doc_dir)/sv_se/%.js : $(pwre_sroot)/doc/web/src/%.js
@ $(log_h_h) @ $(log_h_h)
@ $(cp) $(cpflags) $(source) $(target) @ $(cp) $(cpflags) $(source) $(target)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment