1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.rendering.internal.parser.xhtml.wikimodel

File XWikiHeaderTagHandler.java

 

Coverage histogram

../../../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

2
6
1
1
51
18
2
0.33
6
1
2

Classes

Class Line # Actions
XWikiHeaderTagHandler 33 6 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 28 tests. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.rendering.internal.parser.xhtml.wikimodel;
21   
22    import org.xwiki.rendering.wikimodel.WikiParameters;
23    import org.xwiki.rendering.wikimodel.xhtml.handler.HeaderTagHandler;
24    import org.xwiki.rendering.wikimodel.xhtml.impl.TagContext;
25   
26    /**
27    * Override the default implementation of hte WikiModel XHTML parser for handling HTML headers. We need to do this in
28    * order to handle the <code>id</code> attribute that we generate in our XHTML rendered.
29    *
30    * @version $Id: 724f7db060e1acdfb21b9b2ca0d9b2f8ac3645eb $
31    * @since 1.6RC1
32    */
 
33    public class XWikiHeaderTagHandler extends HeaderTagHandler implements XWikiWikiModelHandler
34    {
 
35  133 toggle @Override
36    protected void begin(TagContext context)
37    {
38  133 int level = Integer.parseInt(context.getName().substring(1, 2));
39  133 sendEmptyLines(context);
40   
41    // TODO: If there's an ID attribute then check if it corresponds to the default header ID generated by the
42    // XWiki ID generator. If so remove it so that it's not displayed. We need to do this because the
43    // XWiki HTML renderer automatically generates an ID for headers.
44  133 WikiParameters params = context.getParams();
45  133 if (params.getParameter("id") != null) {
46  47 params = params.remove("id");
47    }
48   
49  133 context.getScannerContext().beginHeader(level, params);
50    }
51    }