Author: fperrad
Date: Wed Jan 31 04:57:53 2007
New Revision: 16851

Modified:
   trunk/languages/lua/pmc/luaclosure.pmc
   trunk/languages/lua/pmc/luafunction.pmc
   trunk/languages/lua/t/assign.t
   trunk/languages/lua/t/basic.t
   trunk/languages/lua/t/closure.t
   trunk/languages/lua/t/constructor.t
   trunk/languages/lua/t/coroutine.t
   trunk/languages/lua/t/debug.t
   trunk/languages/lua/t/expr.t
   trunk/languages/lua/t/forlist.t
   trunk/languages/lua/t/fornum.t
   trunk/languages/lua/t/function.t
   trunk/languages/lua/t/if.t
   trunk/languages/lua/t/io.t
   trunk/languages/lua/t/lexico.t
   trunk/languages/lua/t/math.t
   trunk/languages/lua/t/metatable.t
   trunk/languages/lua/t/os.t
   trunk/languages/lua/t/repeat.t
   trunk/languages/lua/t/scope.t
   trunk/languages/lua/t/string.t
   trunk/languages/lua/t/table.t
   trunk/languages/lua/t/while.t

Log:
[Lua]
- add link in POD

Modified: trunk/languages/lua/pmc/luaclosure.pmc
==============================================================================
--- trunk/languages/lua/pmc/luaclosure.pmc      (original)
+++ trunk/languages/lua/pmc/luaclosure.pmc      Wed Jan 31 04:57:53 2007
@@ -4,7 +4,7 @@
 
 =head1 NAME
 
-classes/luaclosure.pmc - Lua Closure
+pmc/luaclosure.pmc - Lua Closure
 
 =head1 DESCRIPTION
 
@@ -12,6 +12,8 @@
 with the behaviour of the Lua C<Function> type.
 C<LuaClosure> is used by function written in Lua.
 
+See also: F<languages/lua/pmc/luafunction.pmc>
+
 =head2 Overloaded Methods
 
 =over 4

Modified: trunk/languages/lua/pmc/luafunction.pmc
==============================================================================
--- trunk/languages/lua/pmc/luafunction.pmc     (original)
+++ trunk/languages/lua/pmc/luafunction.pmc     Wed Jan 31 04:57:53 2007
@@ -4,7 +4,7 @@
 
 =head1 NAME
 
-classes/luafunction.pmc - Lua Function
+pmc/luafunction.pmc - Lua Function
 
 =head1 DESCRIPTION
 
@@ -13,6 +13,8 @@
 C<LuaFunction> is used by standard libraries
 written in PIR.
 
+See also: F<languages/lua/pmc/luaclosure.pmc>
+
 =head2 Overloaded Methods
 
 =over 4

Modified: trunk/languages/lua/t/assign.t
==============================================================================
--- trunk/languages/lua/t/assign.t      (original)
+++ trunk/languages/lua/t/assign.t      Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.4.3 "Assignment".
+See "Lua 5.1 Reference Manual", section 2.4.3 "Assignment",
+L<http://www.lua.org/manual/5.1/manual.html#2.4.3>.
 
 See "Programming in Lua", section 4.1 "Assignment".
 

Modified: trunk/languages/lua/t/basic.t
==============================================================================
--- trunk/languages/lua/t/basic.t       (original)
+++ trunk/languages/lua/t/basic.t       Wed Jan 31 04:57:53 2007
@@ -15,7 +15,8 @@
 Tests Lua Basic Library
 (implemented in F<languages/lua/lib/luabasic.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.1 "Basic Functions".
+See "Lua 5.1 Reference Manual", section 5.1 "Basic Functions",
+L<http://www.lua.org/manual/5.1/manual.html#5.1>.
 
 =cut
 

Modified: trunk/languages/lua/t/closure.t
==============================================================================
--- trunk/languages/lua/t/closure.t     (original)
+++ trunk/languages/lua/t/closure.t     Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.6 "Visibility Rules".
+See "Lua 5.1 Reference Manual", section 2.6 "Visibility Rules",
+L<http://www.lua.org/manual/5.1/manual.html#2.6>.
 
 See "Programming in Lua", section 6.1 "Closures".
 

Modified: trunk/languages/lua/t/constructor.t
==============================================================================
--- trunk/languages/lua/t/constructor.t (original)
+++ trunk/languages/lua/t/constructor.t Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.5.7 "Table Constructors".
+See "Lua 5.1 Reference Manual", section 2.5.7 "Table Constructors",
+L<http://www.lua.org/manual/5.1/manual.html#2.5.7>.
 
 See "Programming in Lua", section 3.6 "Table Constructors".
 

Modified: trunk/languages/lua/t/coroutine.t
==============================================================================
--- trunk/languages/lua/t/coroutine.t   (original)
+++ trunk/languages/lua/t/coroutine.t   Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.11 "Coroutines".
+See "Lua 5.1 Reference Manual", section 2.11 "Coroutines",
+L<http://www.lua.org/manual/5.1/manual.html#2.11>.
 
 See "Programming in Lua", section 9 "Coroutines".
 

Modified: trunk/languages/lua/t/debug.t
==============================================================================
--- trunk/languages/lua/t/debug.t       (original)
+++ trunk/languages/lua/t/debug.t       Wed Jan 31 04:57:53 2007
@@ -15,7 +15,8 @@
 Tests Lua Debug Library
 (implemented in F<languages/lua/lib/luadebug.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.9 "The Debug Library".
+See "Lua 5.1 Reference Manual", section 5.9 "The Debug Library",
+L<http://www.lua.org/manual/5.1/manual.html#5.9>.
 
 See "Programming in Lua", section 23 "The Debug Library".
 

Modified: trunk/languages/lua/t/expr.t
==============================================================================
--- trunk/languages/lua/t/expr.t        (original)
+++ trunk/languages/lua/t/expr.t        Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.5 "Expressions".
+See "Lua 5.1 Reference Manual", section 2.5 "Expressions",
+L<http://www.lua.org/manual/5.1/manual.html#2.5>.
 
 See "Programming in Lua", section 3 "Expressions".
 

Modified: trunk/languages/lua/t/forlist.t
==============================================================================
--- trunk/languages/lua/t/forlist.t     (original)
+++ trunk/languages/lua/t/forlist.t     Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.4.5 "For Statement".
+See "Lua 5.1 Reference Manual", section 2.4.5 "For Statement",
+L<http://www.lua.org/manual/5.1/manual.html#2.4.5>.
 
 See "Programming in Lua", section 4.3 "Control Structures".
 

Modified: trunk/languages/lua/t/fornum.t
==============================================================================
--- trunk/languages/lua/t/fornum.t      (original)
+++ trunk/languages/lua/t/fornum.t      Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.4.5 "For Statement".
+See "Lua 5.1 Reference Manual", section 2.4.5 "For Statement",
+L<http://www.lua.org/manual/5.1/manual.html#2.4.5>.
 
 See "Programming in Lua", section 4.3 "Control Structures".
 

Modified: trunk/languages/lua/t/function.t
==============================================================================
--- trunk/languages/lua/t/function.t    (original)
+++ trunk/languages/lua/t/function.t    Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.5.9 "Function Definitions".
+See "Lua 5.1 Reference Manual", section 2.5.9 "Function Definitions",
+L<http://www.lua.org/manual/5.1/manual.html#2.5.9>.
 
 See "Programming in Lua", section 5 "Functions".
 

Modified: trunk/languages/lua/t/if.t
==============================================================================
--- trunk/languages/lua/t/if.t  (original)
+++ trunk/languages/lua/t/if.t  Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.4.4 "Control Structures".
+See "Lua 5.1 Reference Manual", section 2.4.4 "Control Structures",
+L<http://www.lua.org/manual/5.1/manual.html#2.4.4>.
 
 See "Programming in Lua", section 4.3 "Control Structures".
 

Modified: trunk/languages/lua/t/io.t
==============================================================================
--- trunk/languages/lua/t/io.t  (original)
+++ trunk/languages/lua/t/io.t  Wed Jan 31 04:57:53 2007
@@ -15,7 +15,8 @@
 Tests Lua Input/Output Library
 (implemented in F<languages/lua/lib/luaio.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.7 "Input and Output Facilities".
+See "Lua 5.1 Reference Manual", section 5.7 "Input and Output Facilities",
+L<http://www.lua.org/manual/5.1/manual.html#5.7>.
 
 See "Programming in Lua", section 21 "The I/O Library".
 

Modified: trunk/languages/lua/t/lexico.t
==============================================================================
--- trunk/languages/lua/t/lexico.t      (original)
+++ trunk/languages/lua/t/lexico.t      Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.1 "Lexical Conventions".
+See "Lua 5.1 Reference Manual", section 2.1 "Lexical Conventions",
+L<http://www.lua.org/manual/5.1/manual.html#2.1>.
 
 =cut
 

Modified: trunk/languages/lua/t/math.t
==============================================================================
--- trunk/languages/lua/t/math.t        (original)
+++ trunk/languages/lua/t/math.t        Wed Jan 31 04:57:53 2007
@@ -16,7 +16,8 @@
 Tests Lua Mathematic Library
 (implemented in F<languages/lua/lib/luamath.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.6 "Mathematical Functions".
+See "Lua 5.1 Reference Manual", section 5.6 "Mathematical Functions",
+L<http://www.lua.org/manual/5.1/manual.html#5.6>.
 
 See "Programming in Lua", section 18 "The Mathematical Library".
 

Modified: trunk/languages/lua/t/metatable.t
==============================================================================
--- trunk/languages/lua/t/metatable.t   (original)
+++ trunk/languages/lua/t/metatable.t   Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.8 "Metatables".
+See "Lua 5.1 Reference Manual", section 2.8 "Metatables",
+L<http://www.lua.org/manual/5.1/manual.html#2.8>.
 
 See "Programming in Lua", section 13 "Metatables and Metamethods".
 

Modified: trunk/languages/lua/t/os.t
==============================================================================
--- trunk/languages/lua/t/os.t  (original)
+++ trunk/languages/lua/t/os.t  Wed Jan 31 04:57:53 2007
@@ -15,7 +15,8 @@
 Tests Lua Operating System Library
 (implemented in F<languages/lua/lib/luaos.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.8 "Operating System Facilities".
+See "Lua 5.1 Reference Manual", section 5.8 "Operating System Facilities",
+L<http://www.lua.org/manual/5.1/manual.html#5.8>.
 
 See "Programming in Lua", section 22 "The Operating System Library".
 

Modified: trunk/languages/lua/t/repeat.t
==============================================================================
--- trunk/languages/lua/t/repeat.t      (original)
+++ trunk/languages/lua/t/repeat.t      Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.4.4 "Control Structures".
+See "Lua 5.1 Reference Manual", section 2.4.4 "Control Structures",
+L<http://www.lua.org/manual/5.1/manual.html#2.4.4>.
 
 See "Programming in Lua", section 4.3 "Control Structures".
 

Modified: trunk/languages/lua/t/scope.t
==============================================================================
--- trunk/languages/lua/t/scope.t       (original)
+++ trunk/languages/lua/t/scope.t       Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.6 "Visibility Rules".
+See "Lua 5.1 Reference Manual", section 2.6 "Visibility Rules",
+L<http://www.lua.org/manual/5.1/manual.html#2.6>.
 
 See "Programming in Lua", section 4.2 "Local Variables and Blocks".
 

Modified: trunk/languages/lua/t/string.t
==============================================================================
--- trunk/languages/lua/t/string.t      (original)
+++ trunk/languages/lua/t/string.t      Wed Jan 31 04:57:53 2007
@@ -15,7 +15,8 @@
 Tests Lua String Library
 (implemented in F<languages/lua/lib/luastring.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.4 "String Manipulation".
+See "Lua 5.1 Reference Manual", section 5.4 "String Manipulation",
+L<http://www.lua.org/manual/5.1/manual.html#5.4>.
 
 See "Programming in Lua", section 20 "The String Library".
 

Modified: trunk/languages/lua/t/table.t
==============================================================================
--- trunk/languages/lua/t/table.t       (original)
+++ trunk/languages/lua/t/table.t       Wed Jan 31 04:57:53 2007
@@ -15,7 +15,8 @@
 Tests Lua Table Library
 (implemented in F<languages/lua/lib/luatable.pir>).
 
-See "Lua 5.1 Reference Manual", section 5.5 "Table Manipulation".
+See "Lua 5.1 Reference Manual", section 5.5 "Table Manipulation",
+L<http://www.lua.org/manual/5.1/manual.html#5.5>.
 
 See "Programming in Lua", section 19 "The Table Library".
 

Modified: trunk/languages/lua/t/while.t
==============================================================================
--- trunk/languages/lua/t/while.t       (original)
+++ trunk/languages/lua/t/while.t       Wed Jan 31 04:57:53 2007
@@ -12,7 +12,8 @@
 
 =head1 DESCRIPTION
 
-See "Lua 5.1 Reference Manual", section 2.4.4 "Control Structures".
+See "Lua 5.1 Reference Manual", section 2.4.4 "Control Structures",
+L<http://www.lua.org/manual/5.1/manual.html#2.4.4>.
 
 See "Programming in Lua", section 4.3 "Control Structures".
 

Reply via email to