Small tool to generate ladder diagrams for network protocols. obsoleted by mscgen.
Go to file
Harald Welte 5bad900708 new gen_ladder implementation, based on the GD perl module
This version generates PNG graphics based on the perl GD bindings and no
longer uses dot craphics.  This solves the long-standing problems that
existed with dot and 'bent arrows'

TODO:
	* re-add support for dashed arrows
	* re-add support for bi-directional arrows
2011-10-07 20:36:29 +02:00
GD new gen_ladder implementation, based on the GD perl module 2011-10-07 20:36:29 +02:00
.gitignore add .gitignore file to prevent us from committing postscript or dot files 2010-07-18 22:13:06 +02:00
Makefile new gen_ladder implementation, based on the GD perl module 2011-10-07 20:36:29 +02:00
OsmoLadder.pm new gen_ladder implementation, based on the GD perl module 2011-10-07 20:36:29 +02:00
README add a README file 2010-07-09 09:25:33 +02:00
gen_ladder.pl new gen_ladder implementation, based on the GD perl module 2011-10-07 20:36:29 +02:00
gprs_attach.lad add GPRS attach case 2010-07-09 12:30:58 +02:00
location_update.lad IMMEDIATE ASSIGN belongs to RR 2010-07-18 22:12:21 +02:00
map_client_server.lad add missing primitives 2010-07-18 22:12:10 +02:00
map_loc_upd.lad Actually end the MAP dialogue at the end of the location update 2010-07-20 18:02:21 +02:00
mo_sms.lad add ladder diagrams for MO and MT SMS 2010-11-21 18:46:36 +01:00
mt_sms.lad add ladder diagrams for MO and MT SMS 2010-11-21 18:46:36 +01:00
test.lad initial commit of tool to generate ladder diagrams 2010-07-09 09:20:42 +02:00

README

gen_ladder - tool to generate protocol ladder diagrams
(C) 2010 by Harald Welte <laforge@gnumonks.org>

This tool can be used to generate typical ladder diagrams as they are often
used in the description of networking protocols.

The input file is a ".lad" file, from which gen_ladder.pl generates a graphviz
file called ".dot", which in turn can be processed by the "dot" program to
generate a .ps (postscript) or .svg output file.

As an example, I have included a "test.lad" file, which you can process by
calling
	make test.ps
or
	make test.svg

The manual intermediate steps can be seen from the Makefile.