blob: 2bcf18d8ba0128ff0b92b962cb9ca129b39c9168 [file] [log] [blame]
package org.apache.maven.doxia.macro;
/*
* 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.
*/
import org.apache.maven.doxia.sink.Sink;
import org.apache.maven.doxia.sink.impl.SinkEventAttributeSet;
import org.codehaus.plexus.component.annotations.Component;
/**
* A simple macro that prints out the key and value of some supplied parameters.
*
* @version $Id$
*/
@Component( role = Macro.class, hint = "echo" )
public class EchoMacro
extends AbstractMacro
{
/** {@inheritDoc} */
public void execute( Sink sink, MacroRequest request )
{
sink.verbatim( SinkEventAttributeSet.BOXED );
sink.text( "echo" + EOL );
for ( String key : request.getParameters().keySet() )
{
// TODO: DOXIA-242: separate or define internal params
if ( "parser".equals( key ) || "sourceContent".equals( key ) )
{
continue;
}
sink.text( key + " ---> " + request.getParameter( key ) + EOL );
}
sink.verbatim_();
}
}