]> git.lyx.org Git - features.git/blob - src/output_xhtml.cpp
Move the StartTag, EndTag, and CompTag classes into the html namespace.
[features.git] / src / output_xhtml.cpp
1 /**
2  * \file output_xhtml.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Richard Heck
7  * 
8  * This code is based upon output_docbook.cpp
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "output_xhtml.h"
16
17 #include "Buffer.h"
18 #include "buffer_funcs.h"
19 #include "BufferParams.h"
20 #include "Counters.h"
21 #include "Layout.h"
22 #include "OutputParams.h"
23 #include "Paragraph.h"
24 #include "ParagraphList.h"
25 #include "ParagraphParameters.h"
26 #include "sgml.h"
27 #include "Text.h"
28 #include "TextClass.h"
29
30 #include "support/convert.h"
31 #include "support/debug.h"
32 #include "support/lassert.h"
33 #include "support/lstrings.h"
34
35 #include <vector>
36
37 using namespace std;
38 using namespace lyx::support;
39
40 namespace lyx {
41
42 namespace html {
43
44 docstring escapeChar(char_type c)
45 {
46         docstring str;
47         switch (c) {
48         case ' ':
49                 str += " ";
50                 break;
51         case '&':
52                 str += "&amp;";
53                 break;
54         case '<':
55                 str += "&lt;";
56                 break;
57         case '>':
58                 str += "&gt;";
59                 break;
60         default:
61                 str += c;
62                 break;
63         }
64         return str;
65 }
66
67
68 // escape what needs escaping
69 docstring htmlize(docstring const & str) {
70         odocstringstream d;
71         docstring::const_iterator it = str.begin();
72         docstring::const_iterator en = str.end();
73         for (; it != en; ++it)
74                 d << escapeChar(*it);
75         return d.str();
76 }
77
78
79 string escapeChar(char c)
80 {
81         string str;
82         switch (c) {
83         case ' ':
84                 str += " ";
85                 break;
86         case '&':
87                 str += "&amp;";
88                 break;
89         case '<':
90                 str += "&lt;";
91                 break;
92         case '>':
93                 str += "&gt;";
94                 break;
95         default:
96                 str += c;
97                 break;
98         }
99         return str;
100 }
101
102
103 // escape what needs escaping
104 string htmlize(string const & str) {
105         ostringstream d;
106         string::const_iterator it = str.begin();
107         string::const_iterator en = str.end();
108         for (; it != en; ++it)
109                 d << escapeChar(*it);
110         return d.str();
111 }
112
113
114 string cleanAttr(string const & str)
115 {
116         string newname;
117         string::const_iterator it = str.begin();
118         string::const_iterator en = str.end();
119         for (; it != en; ++it)
120                 newname += isalnum(*it) ? *it : '_';
121         return newname; 
122 }
123
124
125 docstring cleanAttr(docstring const & str)
126 {
127         docstring newname;
128         docstring::const_iterator it = str.begin();
129         docstring::const_iterator en = str.end();
130         for (; it != en; ++it)
131                 if (isalnum(*it))
132                         newname += *it;
133                 else
134                         newname += '_';
135         return newname; 
136 }
137
138
139 bool isFontTag(string const & s)
140 {
141         return s == "em" || s == "strong"; // others?
142 }
143
144
145 docstring StartTag::asTag() const
146 {
147         string output = "<" + tag_;
148         if (!attr_.empty())
149                 output += " " + html::htmlize(attr_);
150         output += ">";
151         return from_utf8(output);
152 }
153
154
155 docstring StartTag::asEndTag() const
156 {
157         string output = "</" + tag_ + ">";
158         return from_utf8(output);
159 }
160
161
162 docstring EndTag::asEndTag() const
163 {
164         string output = "</" + tag_ + ">";
165         return from_utf8(output);
166 }
167
168
169 docstring CompTag::asTag() const
170 {
171         string output = "<" + tag_;
172         if (!attr_.empty())
173                 output += " " + html::htmlize(attr_);
174         output += " />";
175         return from_utf8(output);
176 }
177
178 } // namespace html
179
180
181
182 ////////////////////////////////////////////////////////////////
183 ///
184 /// XHTMLStream
185 ///
186 ////////////////////////////////////////////////////////////////
187
188 XHTMLStream::XHTMLStream(odocstream & os) 
189                 : os_(os), nextraw_(false)
190 {}
191
192
193 void XHTMLStream::cr() 
194 {
195         // tabs?
196         os_ << from_ascii("\n");
197 }
198
199
200 void XHTMLStream::writeError(std::string const & s)
201 {
202         LYXERR0(s);
203         os_ << from_utf8("<!-- Output Error: " + s + " -->");
204 }
205
206
207 bool XHTMLStream::closeFontTags()
208 {
209         if (tag_stack_.empty())
210                 return true;
211         // first, we close any open font tags we can close
212         html::StartTag curtag = tag_stack_.back();
213         while (html::isFontTag(curtag.tag_)) {
214                 os_ << curtag.asEndTag();
215                 tag_stack_.pop_back();
216                 if (tag_stack_.empty())
217                         // this probably shouldn't happen, since then the
218                         // font tags weren't in any other tag. but that
219                         // problem will likely be caught elsewhere.
220                         return true;
221                 curtag = tag_stack_.back();
222         }
223         // so we've hit a non-font tag. let's see if any of the
224         // remaining tags are font tags.
225         TagStack::const_iterator it = tag_stack_.begin();
226         TagStack::const_iterator en = tag_stack_.end();
227         bool noFontTags = true;
228         for (; it != en; ++it) {
229                 if (html::isFontTag(it->tag_)) {
230                         writeError("Font tag `" + it->tag_ + "' still open in closeFontTags().\n"
231                                 "This is likely not a problem, but you might want to check.");
232                         noFontTags = false;
233                 }
234         }
235         return noFontTags;
236 }
237
238
239 void XHTMLStream::clearTagDeque()
240 {
241         while (!pending_tags_.empty()) {
242                 html::StartTag const & tag = pending_tags_.front();
243                 // tabs?
244                 os_ << tag.asTag();
245                 tag_stack_.push_back(tag);
246                 pending_tags_.pop_front();
247         }
248 }
249
250
251 XHTMLStream & XHTMLStream::operator<<(docstring const & d)
252 {
253         clearTagDeque();
254         if (nextraw_) {
255                 os_ << d;
256                 nextraw_ = false;
257         } else
258                 os_ << html::htmlize(d);
259         return *this;
260 }
261
262
263 XHTMLStream & XHTMLStream::operator<<(const char * s)
264 {
265         clearTagDeque();
266         docstring const d = from_ascii(s);
267         if (nextraw_) {
268                 os_ << d;
269                 nextraw_ = false;
270         } else
271                 os_ << html::htmlize(d);
272         return *this;
273 }
274
275
276 XHTMLStream & XHTMLStream::operator<<(char_type c)
277 {
278         clearTagDeque();
279         if (nextraw_) {
280                 os_ << c;
281                 nextraw_ = false;
282         } else
283                 os_ << html::escapeChar(c);
284         return *this;
285 }
286
287
288 XHTMLStream & XHTMLStream::operator<<(int i)
289 {
290         clearTagDeque();
291         os_ << i;
292         nextraw_ = false;
293         return *this;
294 }
295
296
297 XHTMLStream & XHTMLStream::operator<<(NextRaw const &) 
298
299         nextraw_ = true; 
300         return *this;
301 }
302
303
304 XHTMLStream & XHTMLStream::operator<<(html::StartTag const & tag) 
305 {
306         if (tag.tag_.empty())
307                 return *this;
308         pending_tags_.push_back(tag);
309         if (tag.keepempty_)
310                 clearTagDeque();
311         return *this;
312 }
313
314
315 XHTMLStream & XHTMLStream::operator<<(html::CompTag const & tag) 
316 {
317         if (tag.tag_.empty())
318                 return *this;
319         clearTagDeque();
320         // tabs?
321         os_ << tag.asTag();
322         cr();
323         return *this;
324 }
325
326
327 bool XHTMLStream::isTagOpen(string const & stag)
328 {
329         TagStack::const_iterator sit = tag_stack_.begin();
330         TagStack::const_iterator const sen = tag_stack_.end();
331         for (; sit != sen; ++sit)
332                 // we could check for the
333                 if (sit->tag_ == stag) 
334                         return true;
335         return false;
336 }
337
338
339 // this is complicated, because we want to make sure that
340 // everything is properly nested. the code ought to make 
341 // sure of that, but we won't assert (yet) if we run into
342 // a problem. we'll just output error messages and try our
343 // best to make things work.
344 XHTMLStream & XHTMLStream::operator<<(html::EndTag const & etag)
345 {
346         if (etag.tag_.empty())
347                 return *this;
348
349         // make sure there are tags to be closed
350         if (tag_stack_.empty()) {
351                 writeError("Tried to close `" + etag.tag_
352                          + "' when no tags were open!");
353                 return *this;           
354         }
355
356         // first make sure we're not closing an empty tag
357         if (!pending_tags_.empty()) {
358                 html::StartTag const & stag = pending_tags_.back();
359                 if (etag.tag_ == stag.tag_)  {
360                         // we have <tag></tag>, so we discard it and remove it 
361                         // from the pending_tags_.
362                         pending_tags_.pop_back();
363                         return *this;
364                 }
365                 // there is a pending tag that isn't the one we are trying
366                 // to close. 
367                 // is this tag itself pending?
368                 // non-const iterators because we may call erase().
369                 TagDeque::iterator dit = pending_tags_.begin();
370                 TagDeque::iterator const den = pending_tags_.end();
371                 for (; dit != den; ++dit) {
372                         if (dit->tag_ == etag.tag_) {
373                                 // it was pending, so we just erase it
374                                 writeError("Tried to close pending tag `" + etag.tag_ 
375                                         + "' when other tags were pending. Last pending tag is `"
376                                         + pending_tags_.back().tag_ + "'. Tag discarded.");
377                                 pending_tags_.erase(dit);
378                                 return *this;
379                         }
380                 }
381                 // so etag isn't itself pending. is it even open?
382                 if (!isTagOpen(etag.tag_)) {
383                         writeError("Tried to close `" + etag.tag_ 
384                                  + "' when tag was not open. Tag discarded.");
385                         return *this;
386                 }
387                 // ok, so etag is open.
388                 // our strategy will be as below: we will do what we need to 
389                 // do to close this tag.
390                 string estr = "Closing tag `" + etag.tag_ 
391                         + "' when other tags are pending. Discarded pending tags:\n";
392                 for (dit = pending_tags_.begin(); dit != den; ++dit)
393                         estr += dit->tag_ + "\n";
394                 writeError(estr);
395                 // clear the pending tags...
396                 pending_tags_.clear();
397                 // ...and then just fall through.
398         }
399
400         // is the tag we are closing the last one we opened?
401         if (etag.tag_ == tag_stack_.back().tag_) {
402                 // output it...
403                 os_ << etag.asEndTag();
404                 // ...and forget about it
405                 tag_stack_.pop_back();
406                 return *this;
407         } 
408         
409         // we are trying to close a tag other than the one last opened. 
410         // let's first see if this particular tag is still open somehow.
411         if (!isTagOpen(etag.tag_)) {
412                 writeError("Tried to close `" + etag.tag_ 
413                         + "' when tag was not open. Tag discarded.");
414                 return *this;
415         }
416         
417         // so the tag was opened, but other tags have been opened since
418         // and not yet closed.
419         // if it's a font tag, though...
420         if (html::isFontTag(etag.tag_)) {
421                 // it won't be a problem if the other tags open since this one
422                 // are also font tags.
423                 TagStack::const_reverse_iterator rit = tag_stack_.rbegin();
424                 TagStack::const_reverse_iterator ren = tag_stack_.rend();
425                 for (; rit != ren; ++rit) {
426                         if (rit->tag_ == etag.tag_)
427                                 break;
428                         if (!html::isFontTag(rit->tag_)) {
429                                 // we'll just leave it and, presumably, have to close it later.
430                                 writeError("Unable to close font tag `" + etag.tag_ 
431                                         + "' due to open non-font tag `" + rit->tag_ + "'.");
432                                 return *this;
433                         }
434                 }
435                 
436                 // so we have e.g.:
437                 //    <em>this is <strong>bold
438                 // and are being asked to closed em. we want:
439                 //    <em>this is <strong>bold</strong></em><strong>
440                 // first, we close the intervening tags...
441                 html::StartTag curtag = tag_stack_.back();
442                 // ...remembering them in a stack.
443                 TagStack fontstack;
444                 while (curtag.tag_ != etag.tag_) {
445                         os_ << curtag.asEndTag();
446                         fontstack.push_back(curtag);
447                         tag_stack_.pop_back();
448                         curtag = tag_stack_.back();
449                 }
450                 // now close our tag...
451                 os_ << etag.asEndTag();
452                 tag_stack_.pop_back();
453
454                 // ...and restore the other tags.
455                 rit = fontstack.rbegin();
456                 ren = fontstack.rend();
457                 for (; rit != ren; ++rit)
458                         pending_tags_.push_back(*rit);
459                 return *this;
460         }
461         
462         // it wasn't a font tag.
463         // so other tags were opened before this one and not properly closed. 
464         // so we'll close them, too. that may cause other issues later, but it 
465         // at least guarantees proper nesting.
466         writeError("Closing tag `" + etag.tag_ 
467                 + "' when other tags are open, namely:");
468         html::StartTag curtag = tag_stack_.back();
469         while (curtag.tag_ != etag.tag_) {
470                 writeError(curtag.tag_);
471                 os_ << curtag.asEndTag();
472                 tag_stack_.pop_back();
473                 curtag = tag_stack_.back();
474         }
475         // curtag is now the one we actually want.
476         os_ << curtag.asEndTag();
477         tag_stack_.pop_back();
478         
479         return *this;
480 }
481
482 // End code for XHTMLStream
483
484 namespace {
485         
486 // convenience functions
487
488 inline void openTag(XHTMLStream & xs, Layout const & lay)
489 {
490         xs << html::StartTag(lay.htmltag(), lay.htmlattr());
491 }
492
493
494 inline void closeTag(XHTMLStream & xs, Layout const & lay)
495 {
496         xs << html::EndTag(lay.htmltag());
497 }
498
499
500 inline void openLabelTag(XHTMLStream & xs, Layout const & lay)
501 {
502         xs << html::StartTag(lay.htmllabeltag(), lay.htmllabelattr());
503 }
504
505
506 inline void closeLabelTag(XHTMLStream & xs, Layout const & lay)
507 {
508         xs << html::EndTag(lay.htmllabeltag());
509 }
510
511
512 inline void openItemTag(XHTMLStream & xs, Layout const & lay)
513 {
514         xs << html::StartTag(lay.htmlitemtag(), lay.htmlitemattr(), true);
515 }
516
517
518 inline void closeItemTag(XHTMLStream & xs, Layout const & lay)
519 {
520         xs << html::EndTag(lay.htmlitemtag());
521 }
522
523 // end of convenience functions
524
525 ParagraphList::const_iterator searchParagraphHtml(
526         ParagraphList::const_iterator p,
527         ParagraphList::const_iterator const & pend)
528 {
529         for (++p; p != pend && p->layout().latextype == LATEX_PARAGRAPH; ++p)
530                 ;
531
532         return p;
533 }
534
535
536 ParagraphList::const_iterator searchEnvironmentHtml(
537                 ParagraphList::const_iterator const pstart,
538                 ParagraphList::const_iterator const & pend)
539 {
540         ParagraphList::const_iterator p = pstart;
541         Layout const & bstyle = p->layout();
542         size_t const depth = p->params().depth();
543         for (++p; p != pend; ++p) {
544                 Layout const & style = p->layout();
545                 // It shouldn't happen that e.g. a section command occurs inside
546                 // a quotation environment, at a higher depth, but as of 6/2009,
547                 // it can happen. We pretend that it's just at lowest depth.
548                 if (style.latextype == LATEX_COMMAND)
549                         return p;
550                 // If depth is down, we're done
551                 if (p->params().depth() < depth)
552                         return p;
553                 // If depth is up, we're not done
554                 if (p->params().depth() > depth)
555                         continue;
556                 // Now we know we are at the same depth
557                 if (style.latextype == LATEX_PARAGRAPH
558                     || style.latexname() != bstyle.latexname())
559                         return p;
560         }
561         return pend;
562 }
563
564
565 ParagraphList::const_iterator makeParagraphs(Buffer const & buf,
566                                             XHTMLStream & xs,
567                                             OutputParams const & runparams,
568                                             Text const & text,
569                                             ParagraphList::const_iterator const & pbegin,
570                                             ParagraphList::const_iterator const & pend)
571 {
572         ParagraphList::const_iterator const begin = text.paragraphs().begin();
573         ParagraphList::const_iterator par = pbegin;
574         for (; par != pend; ++par) {
575                 Layout const & lay = par->layout();
576                 if (!lay.counter.empty())
577                         buf.params().documentClass().counters().step(lay.counter);
578                 // FIXME We should see if there's a label to be output and
579                 // do something with it.
580                 if (par != pbegin)
581                         xs.cr();
582
583                 // If we are already in a paragraph, and this is the first one, then we
584                 // do not want to open the paragraph tag.
585                 // we also do not want to open it if the current layout does not permit
586                 // multiple paragraphs.
587                 bool const opened = runparams.html_make_pars &&
588                         (par != pbegin || !runparams.html_in_par);
589                 if (opened)
590                         openTag(xs, lay);
591                 docstring const deferred = 
592                         par->simpleLyXHTMLOnePar(buf, xs, runparams, text.outerFont(distance(begin, par)));
593
594                 // We want to issue the closing tag if either:
595                 //   (i)  We opened it, and either html_in_par is false,
596                 //        or we're not in the last paragraph, anyway.
597                 //   (ii) We didn't open it and html_in_par is true, 
598                 //        but we are in the first par, and there is a next par.
599                 ParagraphList::const_iterator nextpar = par;
600                 nextpar++;
601                 bool const needclose = 
602                         (opened && (!runparams.html_in_par || nextpar != pend))
603                         || (!opened && runparams.html_in_par && par == pbegin && nextpar != pend);
604                 if (needclose) {
605                         closeTag(xs, lay);
606                         xs.cr();
607                 }
608                 if (!deferred.empty()) {
609                         xs << XHTMLStream::NextRaw() << deferred;
610                         xs.cr();
611                 }
612         }
613         return pend;
614 }
615
616
617 ParagraphList::const_iterator makeBibliography(Buffer const & buf,
618                                 XHTMLStream & xs,
619                                 OutputParams const & runparams,
620                                 Text const & text,
621                                 ParagraphList::const_iterator const & pbegin,
622                                 ParagraphList::const_iterator const & pend) 
623 {
624         xs << html::StartTag("h2", "class='bibliography'");
625         xs << pbegin->layout().labelstring(false);
626         xs << html::EndTag("h2");
627         xs.cr();
628         xs << html::StartTag("div", "class='bibliography'");
629         xs.cr();
630         makeParagraphs(buf, xs, runparams, text, pbegin, pend);
631         xs << html::EndTag("div");
632         return pend;
633 }
634
635
636 bool isNormalEnv(Layout const & lay)
637 {
638         return lay.latextype == LATEX_ENVIRONMENT
639             || lay.latextype == LATEX_BIB_ENVIRONMENT;
640 }
641
642         
643 ParagraphList::const_iterator makeEnvironmentHtml(Buffer const & buf,
644                                               XHTMLStream & xs,
645                                               OutputParams const & runparams,
646                                               Text const & text,
647                                               ParagraphList::const_iterator const & pbegin,
648                                               ParagraphList::const_iterator const & pend) 
649 {
650         ParagraphList::const_iterator const begin = text.paragraphs().begin();
651         ParagraphList::const_iterator par = pbegin;
652         Layout const & bstyle = par->layout();
653         depth_type const origdepth = pbegin->params().depth();
654
655         // open tag for this environment
656         openTag(xs, bstyle);
657         xs.cr();
658
659         // we will on occasion need to remember a layout from before.
660         Layout const * lastlay = 0;
661
662         while (par != pend) {
663                 Layout const & style = par->layout();
664                 // the counter only gets stepped if we're in some kind of list,
665                 // or if it's the first time through.
666                 // note that enum, etc, are handled automatically.
667                 // FIXME There may be a bug here about user defined enumeration
668                 // types. If so, then we'll need to take the counter and add "i",
669                 // "ii", etc, as with enum.
670                 Counters & cnts = buf.params().documentClass().counters();
671                 docstring const & cntr = style.counter;
672                 if (!style.counter.empty() 
673                     && (par == pbegin || !isNormalEnv(style)) 
674                                 && cnts.hasCounter(cntr)
675                 )
676                         cnts.step(cntr);
677                 ParagraphList::const_iterator send;
678                 // this will be positive, if we want to skip the initial word
679                 // (if it's been taken for the label).
680                 pos_type sep = 0;
681
682                 switch (style.latextype) {
683                 case LATEX_ENVIRONMENT:
684                 case LATEX_LIST_ENVIRONMENT:
685                 case LATEX_ITEM_ENVIRONMENT: {
686                         // There are two possiblities in this case. 
687                         // One is that we are still in the environment in which we 
688                         // started---which we will be if the depth is the same.
689                         if (par->params().depth() == origdepth) {
690                                 LASSERT(bstyle == style, /* */);
691                                 if (lastlay != 0) {
692                                         closeItemTag(xs, *lastlay);
693                                         lastlay = 0;
694                                 }
695                                 if (isNormalEnv(style)) {
696                                         // in this case, we print the label only for the first 
697                                         // paragraph (as in a theorem).
698                                         openItemTag(xs, style);
699                                         if (par == pbegin && style.htmllabeltag() != "NONE") {
700                                                 docstring const lbl = 
701                                                                 pbegin->expandLabel(style, buf.params(), false);
702                                                 if (!lbl.empty()) {
703                                                         openLabelTag(xs, style);
704                                                         xs << lbl;
705                                                         closeLabelTag(xs, style);
706                                                 }
707                                                 xs.cr();
708                                         }
709                                 }       else { // some kind of list
710                                         bool const labelfirst = style.htmllabelfirst();
711                                         if (!labelfirst)
712                                                 openItemTag(xs, style);
713                                         if (style.labeltype == LABEL_MANUAL
714                                             && style.htmllabeltag() != "NONE") {
715                                                 openLabelTag(xs, style);
716                                                 sep = par->firstWordLyXHTML(xs, runparams);
717                                                 closeLabelTag(xs, style);
718                                                 xs.cr();
719                                         }
720                                         else if (style.labeltype != LABEL_NO_LABEL
721                                                  && style.htmllabeltag() != "NONE") {
722                                                 openLabelTag(xs, style);
723                                                 xs << par->expandLabel(style, buf.params(), false);
724                                                 closeLabelTag(xs, style);
725                                                 xs.cr();
726                                         }
727                                         if (labelfirst)
728                                                 openItemTag(xs, style);
729                                 }
730                                 par->simpleLyXHTMLOnePar(buf, xs, runparams, 
731                                         text.outerFont(distance(begin, par)), sep);
732                                 ++par;
733                                 // We may not want to close the tag yet, in particular,
734                                 // if we're not at the end...
735                                 if (par != pend 
736                                         //  and are doing items...
737                                          && !isNormalEnv(style)
738                                          // and if the depth has changed...
739                                          && par->params().depth() != origdepth) {
740                                          // then we'll save this layout for later, and close it when
741                                          // we get another item.
742                                         lastlay = &style;
743                                 } else
744                                         closeItemTag(xs, style);
745                                 xs.cr();
746                         }
747                         // The other possibility is that the depth has increased, in which
748                         // case we need to recurse.
749                         else {
750                                 send = searchEnvironmentHtml(par, pend);
751                                 par = makeEnvironmentHtml(buf, xs, runparams, text, par, send);
752                         }
753                         break;
754                 }
755                 case LATEX_PARAGRAPH:
756                         send = searchParagraphHtml(par, pend);
757                         par = makeParagraphs(buf, xs, runparams, text, par, send);
758                         break;
759                 // Shouldn't happen
760                 case LATEX_BIB_ENVIRONMENT:
761                         send = par;
762                         ++send;
763                         par = makeParagraphs(buf, xs, runparams, text, par, send);
764                         break;
765                 // Shouldn't happen
766                 case LATEX_COMMAND:
767                         ++par;
768                         break;
769                 }
770         }
771
772         if (lastlay != 0)
773                 closeItemTag(xs, *lastlay);
774         closeTag(xs, bstyle);
775         xs.cr();
776         return pend;
777 }
778
779
780 void makeCommand(Buffer const & buf,
781                                           XHTMLStream & xs,
782                                           OutputParams const & runparams,
783                                           Text const & text,
784                                           ParagraphList::const_iterator const & pbegin)
785 {
786         Layout const & style = pbegin->layout();
787         if (!style.counter.empty())
788                 buf.params().documentClass().counters().step(style.counter);
789
790         openTag(xs, style);
791
792         // Label around sectioning number:
793         // FIXME Probably need to account for LABEL_MANUAL
794         if (style.labeltype != LABEL_NO_LABEL) {
795                 openLabelTag(xs, style);
796                 xs << pbegin->expandLabel(style, buf.params(), false);
797                 closeLabelTag(xs, style);
798                 // Otherwise the label might run together with the text
799                 xs << from_ascii(" ");
800         }
801
802         ParagraphList::const_iterator const begin = text.paragraphs().begin();
803         pbegin->simpleLyXHTMLOnePar(buf, xs, runparams,
804                         text.outerFont(distance(begin, pbegin)));
805         closeTag(xs, style);
806         xs.cr();
807 }
808
809 } // end anonymous namespace
810
811
812 void xhtmlParagraphs(Text const & text,
813                        Buffer const & buf,
814                        XHTMLStream & xs,
815                        OutputParams const & runparams)
816 {
817         ParagraphList const & paragraphs = text.paragraphs();
818         ParagraphList::const_iterator par = paragraphs.begin();
819         ParagraphList::const_iterator pend = paragraphs.end();
820
821         OutputParams ourparams = runparams;
822         while (par != pend) {
823                 Layout const & style = par->layout();
824                 ParagraphList::const_iterator lastpar = par;
825                 ParagraphList::const_iterator send;
826
827                 switch (style.latextype) {
828                 case LATEX_COMMAND: {
829                         // The files with which we are working never have more than
830                         // one paragraph in a command structure.
831                         // FIXME 
832                         // if (ourparams.html_in_par)
833                         //   fix it so we don't get sections inside standard, e.g.
834                         // note that we may then need to make runparams not const, so we
835                         // can communicate that back.
836                         // FIXME Maybe this fix should be in the routines themselves, in case
837                         // they are called from elsewhere.
838                         makeCommand(buf, xs, ourparams, text, par);
839                         ++par;
840                         break;
841                 }
842                 case LATEX_ENVIRONMENT:
843                 case LATEX_LIST_ENVIRONMENT:
844                 case LATEX_ITEM_ENVIRONMENT: {
845                         // FIXME Same fix here.
846                         send = searchEnvironmentHtml(par, pend);
847                         par = makeEnvironmentHtml(buf, xs, ourparams, text, par, send);
848                         break;
849                 }
850                 case LATEX_BIB_ENVIRONMENT: {
851                         // FIXME Same fix here.
852                         send = searchEnvironmentHtml(par, pend);
853                         par = makeBibliography(buf, xs, ourparams, text, par, send);
854                         break;
855                 }
856                 case LATEX_PARAGRAPH:
857                         send = searchParagraphHtml(par, pend);
858                         par = makeParagraphs(buf, xs, ourparams, text, par, send);
859                         break;
860                 }
861                 // FIXME??
862                 // makeEnvironment may process more than one paragraphs and bypass pend
863                 if (distance(lastpar, par) >= distance(lastpar, pend))
864                         break;
865         }
866 }
867
868
869 } // namespace lyx