~ubuntu-branches/ubuntu/natty/lua-gtk/natty

« back to all changes in this revision

Viewing changes to doc/en/voidptr1.dot

  • Committer: Bazaar Package Importer
  • Author(s): Enrico Tassi
  • Date: 2009-05-17 18:16:21 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090517181621-9kmdd82nxg54jsio
* new upstream snapshot comprising many more GNOME libraries:
    Gtk, GDK, GLib, Pango, Atk, Libxml2, Cairo, Clutter, Gtkhtml, 
    GtkSourceView, Gio, Gtkspell and GConf. 
* new upstream release includes a new configure script written in Lua,
  no more bashisms there (Closes: #507205)
* renamed binary packages to liblua5.1-gnome-*
* updated standards-version to 3.8.1, no changes needed
* patch to load .so.* version of libraries and not .so (that was requiring
  -dev packages) (Closes: #522087)
* removed redundant Architecture line from the source stanza of control
  (Closes: #498120)
* updated copyright file, Wolfgang Oertl holds it for 2009 too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# show the relationship between Lua Wrapper, Void* Wrapper and Lua Value.
 
3
 
 
4
digraph voidptr {
 
5
  graph [ concentrate=true, ratio=auto ];
 
6
  node [ fontsize=10, shape=box, fontname=vera, style=filled ];
 
7
  edge [ fontsize=9, fontname=vera ];
 
8
 
 
9
  wrapper [ label="Lua Wrapper" ];
 
10
  voidptr [ label="Void* Wrapper" ];
 
11
  value [ label="Lua Value" ];
 
12
 
 
13
  wrapper -> voidptr [ label="  pointer" ];
 
14
  voidptr -> value [ label="  ref" ];
 
15
}
 
16