I have a somewhat odd scenario. I have written an extension to http://code.google.com/p/svg-edit/. Their HTML/JS project is cleverly demonstrated on the Wiki by linking directly to the trunk of their svn.
My project at http://code.google.com/p/cwm-drawtool/ currently requires the trunk of svg-edit. I have a subfolder, populated via svn:externals, that links to their trunk. If I checkout my project locally, I can use HTML like this: <script type="text/javascript" src="svgedit/svg-editor.js"></script> However, I would also like to serve up a demo of my project from the trunk of the SVN on Google Code Hosting, but the above link fails because the files don't actually exist. The following would probably work: <script type="text/javascript" src="http://svg-edit.googlecode.com/svn/ trunk/editor/svg-editor.js"></script> but I have reasons for avoiding this, the biggest being that I have been updating and committing changes to the svg-edit trunk during this development and it was nice to have the commits just work (pushing to two separate SVNs). Obviously, once there is a stable release of svg-edit, I can just download that directly, but I thought I would toss this challenge out there: Is there any way I can have both a locally checked out version and the Google Hosted version work in the first HTML example above? Thanks! Jake -- You received this message because you are subscribed to the Google Groups "Project Hosting on Google Code" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-code-hosting?hl=en.

