00001 00012 #define GITK_LIB_C 00013 #define GITK_TRANS_EXPAND_C 00014 00015 #include "gitkincludes.h" 00016 00017 00024 xmlDocPtr gitk_dialog_trans_expand(xmlDocPtr const src) { 00025 xmlDocPtr res=NULL; 00026 00027 g_assert(src); 00028 gitk_log("before applying stylesheet (expand.xsl)"); 00029 00030 if(!(res=xsltApplyStylesheet(xsl_expand,src,NULL))) { 00031 gitk_err("failed to apply stylesheet (expand.xsl)"); 00032 } 00033 return(res); 00034 } 00035