Frameworks DTD files

I hope this doesn't come across as a moan as its meant to be more of a general question to the community. But with all the main frameworks out there running on XML config files, where are the official DTD's hosted for these? I know there are several around hosted in odd locations (no disrespect), but I was just looking to put together a definitive list of the locations.

I know you can get them via subversion etc but shouldn't/couldn't they be hosted on the respective sites??

Posted: 26-Feb-2007

View: 4023

Permalink: here

Comments


#1 johnb
26/Feb/07 5:26 PM

Fusebox's also come with the core files, so if you've got the cores, you've got the DTDs.

#2 Barney
26/Feb/07 5:39 PM

ColdSpring actually uses the same DTD as Java's Spring project. You can reference it like the snippet below:

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dt...;

#3 Kurt Wiersma
26/Feb/07 7:32 PM

ColdSpring adds a 'name' attribute to the 'constructor-arg' element, so it's not QUITE the same, but pretty close. I prefer using a Spring plugin for Eclipse for editing my ColdSpring config files, and just know that that syntax error can be ignored.

#4 Barney
26/Feb/07 8:28 PM