This is something I've been working on since 2011. It's a hard project to sell to people. People have tended to associate it with things like coldfusion, but it's origins are more from MVC Python frameworks.
The use of XML has discouraged some developers. One commenter said it would be like 'a free colonoscopy'.
It feels a lot like web2py to me, but with less Python and more XML. I really love web2py, in particular for 'one man band' style projects. That live debugger is pretty cool. How do you think Moya compares to web2py?
Congrats for having built a fairly complete tool with a unique approach to it, that I kinda dig. Also, good work on putting together the example apps, they're extremely useful to understand how the platform works.
I was a big fan of XSLT myself and I know how much shit talking people do about XML.
And I think that's the big shortcoming of this platform, people wouldn't even consider it for a split of a second after seeing the first <tag />. To be honest, while this looks very promising, I think it's a few years late.
Slightly more contentious is Moya Code which is a high level language expressed in XML. But it does mean that code and data can be mixed in a fairly effortless way. As a language, Moya Code is actually quite similar to Python. Not surprising since I'm a Python guy.
Here is a loop to print the numbers 1 to 10 in Python and Moya Code:
for i in range(1,11):
print(i)
<for src="1...10" dst="i">
<echo>${i}</echo>
</for>
More characters to type in XML, but it is quite familiar.
The extra characters are offset somewhat by the fact that moya tags are very high-level. Imagine if your code to render a page was factored out so that at the top level was barely a dozen function calls and conditions. That's what views in Moya Code tend towards.
Moya's expressions also cut down on lines of code. The following gets the current price of Bitcoin from a web service:
Less contentious is the template language, which straightforward to use, and uses the same expressions as Moya Code. There's no need to use a different syntax there. The most complex template for the Moya builtins is probably the threaded comments (https://github.com/moyaproject/moya/blob/master/moya/libs/co...). I don't think that's too bad.
I could go on, at great length. I've only waited 4 years to talk about it.
This is something I've been working on since 2011. It's a hard project to sell to people. People have tended to associate it with things like coldfusion, but it's origins are more from MVC Python frameworks.
The use of XML has discouraged some developers. One commenter said it would be like 'a free colonoscopy'.
Be gentle.