/* * [Qf.java] * * Summary: QF: build indexes to the mindprod glossaries. * * Copyright: (c) 1996-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 2.2 2007-04-27 use enum for each embellishment letter. use CSS for single icons. * 2.3 2014-04-05 generate shorter embedded indexes * 2.4 2016-06-04 now use Configuration instead of command line */ package com.mindprod.qf; /** * QF: build indexes to the mindprod glossaries. * * @author Roedy Green, Canadian Mind Products * @version 2.4 2016-06-04 now use Configuration instead of command line * @since 1996 */ public final class Qf { private static final int FIRST_COPYRIGHT_YEAR = 1996; /** * undisplayed copyright notice */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String EMBEDDED_COPYRIGHT = "Copyright: (c) 1996-2017 Roedy Green, Canadian Mind Products, http://mindprod.com"; @SuppressWarnings( { "UnusedDeclaration" } ) private static final String RELEASE_DATE = "2016-06-04"; /** * embedded version string. */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String VERSION_STRING = "2.4"; /** * Main method * * @param args not used */ public static void main( String[] args ) { IndexWebsite.main( args ); } }