package page.com.jrsstray;

import org.wikiwebserver.handler.http.HTTPException;
import org.wikiwebserver.handler.http.HTTPHandler;
import org.wikiwebserver.handler.http.interfaces.HTTPResponder;

public class Contributions extends page.misc.Contributions implements HTTPResponder {
    
    public String getProductName() {
        return "JRSSTray";
    } 
    
    public String getProductDescription() {
        return "Contribution to JRSSTray";
    }     
    
    public void generate() throws HTTPException {
        super.generate();
        
        // Customise for this site
        addResourceRoot("/templates/com/jrsstray/");
        addCSSLink("jrsstray.css");
        setTitle("Contributions - JRSSTray");
    }

    public void init(HTTPHandler conn) throws HTTPException {
        super.init(conn);
    }
}
