I'm heavily using Harbour to create AJAX apps and this means that
prg's main task is to send xhtml and javascript  to the browser.

xhtml and javascript files often comes from page design tools and so
it's useful to keep them separate from prg code that's not an xml
document.

So prgs looks like:

function xyz()

   local cContent := ""

   #include "foo1.html"
   #include "foo1.js"
   #include "foo2.js"

   cContent += "<...><...></html>"

return cContent

and every file is sth like:

#pragma __cstream|cContent+=%s

[ .... ]

#pragma _endtext

which are not expected in "standard" xhtml or javascript and give
errors in tools.

I wonder if exist sth like #pragma __include "file" to have sth like:

function xyz()

   local cContent := ""

   #pragma __cstream|cContent+=%s
   #pragma __include "foo1.html"
   #pragma __include "foo1.js"
   #pragma __include "foo2.js"
   #pragma _endtext

   cContent += "<...><...></html>"

return cContent

or if exist a different way to do this.

best regards,
Lorenzo
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to