Hi Chris,
I just grabbed the latest source from svn, (for both closure-library
and closure-templates)
Here is the 'example' code I'm using, which is still failing for me, I
included the deps.js file as suggested, as you can see there is no
extra code,
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
</head>
<body>
<div id="hello"></div>
<script src="../js/closure-library/closure/goog/base.js"
type="text/javascript"></script>
<script src="../js/closure-library/closure/goog/deps.js"
type="text/javascript"></script>
<script>
goog.require('goog.string.StringBuffer');
</script>
<script src="../js/closure-templates/soyutils_usegoog.js"
type="text/javascript"></script>
</body>
</html>
I still get this error
goog.require could not find: goog.soy
goog.requirebase.js:284
base.js:287Uncaught Error: goog.require could not find: goog.soy
Testing in Chrome, (dev channel)
Can you tell me if this works for you?
Thanks a lot
Julien
On Nov 4, 8:41 am, Chris Price <
pric...@gmail.com> wrote:
> Not really sure as I'm not familiar with the example, but here's a few
> things off the top of my head -
>
> Could it be you're missing deps.js?
>
> Not sure you have the latest copy of the library as base.js:287 is a
> comment -
http://code.google.com/p/closure-library/source/browse/trunk/closure/...
>
> Also from the code you pasted in nothing appears to be goog.require-ing
> goog.soy so I assume there's more to your example?