~ubuntu-branches/debian/sid/ledgersmb/sid

« back to all changes in this revision

Viewing changes to utils/cli/sample.lsmb

  • Committer: Package Import Robot
  • Author(s): Robert James Clay
  • Date: 2012-04-18 18:58:20 UTC
  • Revision ID: package-import@ubuntu.com-20120418185820-snrtpa696zhqm0z1
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Comments start with a pund sign
 
2
ENV:PGUSER = postgres # how to set an environment variable
 
3
login = demo  # How to set a form variable
 
4
password = demo  
 
5
LOGIN # Log in
 
6
MODULE LedgerSMB::CT  # Load a module
 
7
id = 10139
 
8
vc = customer
 
9
db = customer
 
10
CALL CT->create_links(user, form) # call a function
 
11
IF bcc4 # Conditional IF's can be nested
 
12
testing = hi
 
13
FI
 
14