aboutsummaryrefslogtreecommitdiffstats
path: root/docbook/wsluarm.xml
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2011-01-06 20:29:05 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2011-01-06 20:29:05 +0000
commit8fd4bd90ae04cdac9e251a00426d13b0606c5458 (patch)
tree8270d25c94a3a9a2df52573aae5b8e47c5765cb8 /docbook/wsluarm.xml
parenta9761c53b7a754b07bf0424c67ebd614b813ced6 (diff)
Add URL to Lua website. Whitespace cleanup.
svn path=/trunk/; revision=35405
Diffstat (limited to 'docbook/wsluarm.xml')
-rw-r--r--docbook/wsluarm.xml23
1 files changed, 12 insertions, 11 deletions
diff --git a/docbook/wsluarm.xml b/docbook/wsluarm.xml
index b8654d27db..2ac2420773 100644
--- a/docbook/wsluarm.xml
+++ b/docbook/wsluarm.xml
@@ -3,12 +3,13 @@
<title>Lua Support in Wireshark</title>
<section id="wsluarm_intro">
<title>Introduction</title>
- <para>
- Wireshark has an embedded Lua interpreter. Lua is a powerful light-weight
+ <para>
+ Wireshark has an embedded Lua interpreter. Lua is a powerful light-weight
programming language designed for extending applications. Lua is designed
and implemented by a team at PUC-Rio, the Pontifical Catholic University
of Rio de Janeiro in Brazil. Lua was born and raised at Tecgraf, the
- Computer Graphics Technology Group of PUC-Rio, and is now housed at Lua.org.
+ Computer Graphics Technology Group of PUC-Rio, and is now housed at
+ <ulink url="http://www.lua.org">Lua.org</ulink>.
Both Tecgraf and Lua.org are laboratories of the Department of Computer Science.
</para>
<para>
@@ -58,7 +59,7 @@ do
local f_dir = ProtoField.uint8("multi.direction","Direction",base.DEC,{ [1] = "incoming", [0] = "outgoing"})
local f_text = ProtoField.string("multi.text","Text")
- p_multi.fields = { f_proto, f_dir, f_text }
+ p_multi.fields = { f_proto, f_dir, f_text }
local data_dis = Dissector.get("data")
@@ -103,7 +104,7 @@ do
wtap_encap_table:add(wtap.USER12,p_multi)
udp_encap_table:add(7555,p_multi)
end
- </programlisting>
+ </programlisting>
</section>
<section id="wslua_tap_example">
<title>Example of Listener written in Lua</title>
@@ -159,16 +160,16 @@ do
-- to be called when the user selects the Tools->Test->Packets menu
register_menu("Test/Packets", menuable_tap, MENU_TOOLS)
end
- </programlisting>
+ </programlisting>
</section>
<section id="wsluarm_modules">
<title>Wireshark's Lua API Reference Manual</title>
- <para>
- This Part of the User Guide describes the Wireshark specific functions in the embedded Lua.
+ <para>
+ This Part of the User Guide describes the Wireshark specific functions in the embedded Lua.
</para>
- &WsLuaDumper;
- &WsLuaField;
- &WsLuaGui;
+ &WsLuaDumper;
+ &WsLuaField;
+ &WsLuaGui;
&WsLuaListener;
&WsLuaPinfo;
&WsLuaProto;