Author: user user

Converting non-standard Subversion repository to git

I have a repository whose layout is like this: trunk/ projectA projectB branches/ projectA-1.0 projectB-1.0 tags/ projectA-1.0.1 projectB-1.0.1 I want to convert them to separate git repositories with the trunk/projectA as the top-level directory and all it’s branches as git branches. Whenever I try to specify a git svn init like git svn init -T […]

Change font in XML using XSLT

I’m new to XSLT. I’m trying to change the font size of a specific text in XML file using XSLT. For eg- I have the CDCatalog.xml file with following data. <?xml version=”1.0″ encoding=”ISO-8859-1″ ?> <?xml-stylesheet type=”text/xsl” href=”cdcat.xsl”?> <catalog> <cd> <title>Empire Burlesque</title> <artist><SmallText>Bob Dylan</SmallText><LineBreak/>*</artist> <country>USA</country> <company>Columbia</company> <price>10.90</price> <year>1985</year> </cd> </catalog> and the cdCat.XSL file is- <?xml […]