[BACK]Return to xml.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/xml.c between version 1.17 and 1.19

version 1.17, 2008/12/06 21:10:31 version 1.19, 2008/12/07 23:44:19
Line 34  static ssize_t  xml_begintag(struct md_mbuf *, void *,
Line 34  static ssize_t  xml_begintag(struct md_mbuf *, void *,
                                 const struct md_args *,                                  const struct md_args *,
                                 enum md_ns, int,                                  enum md_ns, int,
                                 const int *, const char **);                                  const int *, const char **);
   static  ssize_t         xml_beginstring(struct md_mbuf *,
                                   const struct md_args *,
                                   const char *, size_t);
   static  ssize_t         xml_endstring(struct md_mbuf *,
                                   const struct md_args *,
                                   const char *, size_t);
 static  int             xml_begin(struct md_mbuf *,  static  int             xml_begin(struct md_mbuf *,
                                 const struct md_args *,                                  const struct md_args *,
                                 const struct tm *,                                  const struct tm *,
Line 125  xml_begin(struct md_mbuf *mbuf, const struct md_args *
Line 131  xml_begin(struct md_mbuf *mbuf, const struct md_args *
                                 "encoding=\"UTF-8\"?>\n", NULL))                                  "encoding=\"UTF-8\"?>\n", NULL))
                 return(0);                  return(0);
         return(ml_puts(mbuf, "<mdoc xmlns:block=\"block\" "          return(ml_puts(mbuf, "<mdoc xmlns:block=\"block\" "
                                 "xmlns:special=\"special\" "                                  "xmlns:body=\"body\" "
                                   "xmlns:head=\"head\" "
                                 "xmlns:inline=\"inline\">", NULL));                                  "xmlns:inline=\"inline\">", NULL));
 }  }
   
Line 141  xml_end(struct md_mbuf *mbuf, const struct md_args *ar
Line 148  xml_end(struct md_mbuf *mbuf, const struct md_args *ar
   
 /* ARGSUSED */  /* ARGSUSED */
 static ssize_t  static ssize_t
   xml_beginstring(struct md_mbuf *mbuf,
                   const struct md_args *args,
                   const char *buf, size_t sz)
   {
   
           return(0);
   }
   
   
   /* ARGSUSED */
   static ssize_t
   xml_endstring(struct md_mbuf *mbuf,
                   const struct md_args *args,
                   const char *buf, size_t sz)
   {
   
           return(0);
   }
   
   
   /* ARGSUSED */
   static ssize_t
 xml_begintag(struct md_mbuf *mbuf, void *data,  xml_begintag(struct md_mbuf *mbuf, void *data,
                 const struct md_args *args, enum md_ns ns,                  const struct md_args *args, enum md_ns ns,
                 int tok, const int *argc, const char **argv)                  int tok, const int *argc, const char **argv)
Line 211  md_init_xml(const struct md_args *args,
Line 240  md_init_xml(const struct md_args *args,
         cbs.ml_endtag = xml_endtag;          cbs.ml_endtag = xml_endtag;
         cbs.ml_begin = xml_begin;          cbs.ml_begin = xml_begin;
         cbs.ml_end = xml_end;          cbs.ml_end = xml_end;
           cbs.ml_beginstring = xml_beginstring;
           cbs.ml_endstring = xml_endstring;
   
         return(mlg_alloc(args, rbuf, mbuf, &cbs));          return(mlg_alloc(args, rbuf, mbuf, &cbs));
 }  }

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.19

CVSweb