Page 1 of 1

Adding HTML report module

PostPosted: Wed Aug 08, 2012 12:14 pm
by shardison
I would like to add the HTML report module to my application but after reading the documentation I still do not understand how to get the files for the module. Thanks for any help

Re: Adding HTML report module

PostPosted: Wed Aug 08, 2012 1:19 pm
by shannah
One thing to note is that the HTML reports module is not compatible with Xataface 1.3.x. You'll need to be working off the trunk (version 2.0). You can check out the latest xataface at
http://weblite.ca/svn/dataface/core/trunk

You can check out the trunk using the subversion command:
svn co http://weblite.ca/svn/dataface/core/trunk xataface
(This would check it out in a directory named 'xataface' in the current working directory.

Once you have Xataface, you can install the htmlreports module by
1. Create a "modules" directory in your application.
2. Check out the htmlreports module into this directory. E.g. svn co http://weblite.ca/svn/dataface/modules/ ... orts/trunk htmlreports
3. Add the following to the [_modules] section of your conf.ini file:
modules_htmlreports=modules/htmlreports/htmlreports.php

-Steve

Re: Adding HTML report module

PostPosted: Thu Aug 09, 2012 11:03 am
by shardison
Thanks for the info.

Re: Adding HTML report module

PostPosted: Thu Nov 15, 2012 10:56 am
by entr04y
I've done the above, but I'm getting an error when trying to add a report "could not find script ckeditor.js" ckeditor does load in fields where i've set widget:type = ckeditor

I've pulled trunk for xataface 2 and htmlreports as of about 3 minutes ago, and I'm getting the same result.

conf.ini:

[_modules]
modules_g2=modules/g2/g2.php
modules_ckeditor=modules/ckeditor/ckeditor.php
modules_htmlreports=modules/htmlreports/htmlreports.php


# ls modules
ckeditor g2 htmlreports

any ideas?

thanks!

Re: Adding HTML report module

PostPosted: Thu Nov 15, 2012 10:59 am
by entr04y
Nevermind... just saw the post about the order of modules re: g2 module. Moved it to the end of the list and everything works now...