NIFI-280 - removing apache license from generated HTML

This commit is contained in:
danbress 2015-02-02 21:01:57 -05:00
parent 0fa553ac02
commit f269861d9d
2 changed files with 2 additions and 34 deletions

View File

@ -25,14 +25,13 @@ import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.nifi.annotation.documentation.CapabilityDescription;
import org.apache.nifi.annotation.documentation.Tags;
import org.apache.nifi.components.AllowableValue;
import org.apache.nifi.components.ConfigurableComponent;
import org.apache.nifi.components.PropertyDescriptor;
import org.apache.nifi.documentation.DocumentationWriter;
import org.apache.nifi.annotation.documentation.CapabilityDescription;
import org.apache.nifi.annotation.documentation.Tags;
/**
* Generates HTML documentation for a ConfigurableComponent. This class is used
@ -48,22 +47,6 @@ public class HtmlDocumentationWriter implements DocumentationWriter {
*/
public static final String ADDITIONAL_DETAILS_HTML = "additionalDetails.html";
/**
* The apache licence to apply to the top of the generated html
*/
private static final String apacheLicense;
static {
String value = null;
try {
value = IOUtils.toString(ClassLoader.getSystemResourceAsStream("apache.license"));
} catch (IOException e) {
e.printStackTrace();
}
apacheLicense = value;
}
@Override
public void write(final ConfigurableComponent configurableComponent, final OutputStream streamToWriteTo,
final boolean includesAdditionalDocumentation) throws IOException {
@ -95,9 +78,6 @@ public class HtmlDocumentationWriter implements DocumentationWriter {
*/
protected void writeHead(final ConfigurableComponent configurableComponent, final XMLStreamWriter xmlStreamWriter)
throws XMLStreamException {
// write the apache license
xmlStreamWriter.writeComment(apacheLicense);
xmlStreamWriter.writeStartElement("head");
xmlStreamWriter.writeStartElement("meta");
xmlStreamWriter.writeAttribute("charset", "utf-8");

View File

@ -1,12 +0,0 @@
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.