Thanks for the reply Massimiliano.
You were correct. That needed a change.
That brought up the myapp/default/inno interface.

But it looks like the inno.py has lot more issues.

Some files needed change

Source: "tcl\*"; DestDir: "{app}\tcl"; Flags: ignoreversion recursesubdirs 
createallsubdirs
Source: "applications\%(application)s\*controllers\*.pyc*";  DestDir: 
"{app}\applications\%(application)s\controllers"; Flags: ignoreversion 
recursesubdirs createallsubdirs

I think line 87 should have been lib-tcl
Source: "lib-tcl\*"; DestDir: "{app}\lib-tcl"; Flags: ignoreversion 
recursesubdirs createallsubdirs

line 96 should have been \controllers\*.py
Source: "applications\GroupXMLTree\controllers\*.py";  DestDir: 
"{app}\applications\GroupXMLTree\controllers"; Flags: ignoreversion 
recursesubdirs createallsubdirs

I think we should include both *.pyd and *.pyc from modules
Source: "applications\GroupXMLTree\modules\*.pyd";  DestDir: 
"{app}\applications\GroupXMLTree\modules"; Flags: ignoreversion 
recursesubdirs createallsubdirs
Source: "applications\GroupXMLTree\modules\*.pyc";  DestDir: 
"{app}\applications\GroupXMLTree\modules"; Flags: ignoreversion 
recursesubdirs createallsubdirs

After installation, we see gluon is not copied.
So Added this as well.
Source: "gluon\*"; DestDir: "{app}\gluon"; Flags: ignoreversion 
recursesubdirs createallsubdirs

Now Inno as Inno works fine.
But InnoAndHstart works fine as well.
But when we try to start the application, it errors stating "-t" is a wrong 
parameter.

I think there should be some work done on the inno.py script including 
hstart.
It would be kind of someone to correct the issues.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to