Modified: websites/production/turbine/content/fulcrum/fulcrum-quartz/index.html ============================================================================== --- websites/production/turbine/content/fulcrum/fulcrum-quartz/index.html (original) +++ websites/production/turbine/content/fulcrum/fulcrum-quartz/index.html Wed Aug 4 08:28:04 2021 @@ -1,217 +1,219 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.8.1 from src/site/xdoc/index.xml at 20 May 2019 --> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Fulcrum Quartz Service – Quartz Scheduler Component</title> - <style type="text/css" media="all"> - @import url("./css/maven-base.css"); - @import url("./css/maven-theme.css"); - @import url("./css/site.css"); - </style> - <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="author" content="Eric Pugh" /> - <meta name="author" content="Scott Eade" /> - <meta http-equiv="Content-Language" content="en" /> - - </head> - <body class="composite"> - <div id="banner"> -<a href="../../" id="bannerLeft" title="Apache Turbine"><img src="../../images/turbine-project.png" alt="Apache Turbine"/></a> - <div class="clear"> - <hr/> - </div> - </div> - <div id="breadcrumbs"> - <div class="xleft"> - <span id="publishDate">Last Published: 20 May 2019</span> - | <span id="projectVersion">Version: 1.1.1</span> - </div> - <div class="xright"><a href="http://www.apache.org" class="externalLink" title="Apache">Apache</a> | -<a href="../../" title="Turbine">Turbine</a> | -<a href="../" title="Fulcrum">Fulcrum</a> </div> - <div class="clear"> - <hr/> - </div> - </div> - <div id="leftColumn"> - <div id="navcolumn"> - <h5>Overview</h5> - <ul> - <li class="none"><strong>About</strong></li> - <li class="none"><a href="configuration.html" title="Configuration">Configuration</a></li> - <li class="none"><a href="cronsamples.html" title="Cron Samples">Cron Samples</a></li> - </ul> - <h5>Project Documentation</h5> - <ul> - <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a> - <ul> - <li class="none"><a href="dependencies.html" title="Dependencies">Dependencies</a></li> - <li class="none"><a href="dependency-info.html" title="Dependency Information">Dependency Information</a></li> - <li class="none"><a href="distribution-management.html" title="Distribution Management">Distribution Management</a></li> - <li class="none"><strong>About</strong></li> - <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li> - <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li> - <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li> - <li class="none"><a href="plugin-management.html" title="Plugin Management">Plugin Management</a></li> - <li class="none"><a href="plugins.html" title="Plugins">Plugins</a></li> - <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li> - <li class="none"><a href="summary.html" title="Summary">Summary</a></li> - <li class="none"><a href="team.html" title="Team">Team</a></li> - </ul></li> - <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li> - </ul> - <h5>Apache</h5> - <ul> - <li class="none"><a href="http://www.apache.org/" class="externalLink" title="Apache Website">Apache Website</a></li> - <li class="none"><a href="http://www.apache.org/licenses/" class="externalLink" title="License">License</a></li> - <li class="none"><a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works">How the ASF works</a></li> - <li class="none"><a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship">Sponsorship</a></li> - <li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks">Thanks</a></li> - <li class="none"><a href="http://www.apache.org/security/" class="externalLink" title="Security">Security</a></li> - </ul> - <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> - <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> - </a> - </div> - </div> - <div id="bodyColumn"> - <div id="contentBox"> - - - - - <div class="section"> -<h2><a name="Overview"></a>Overview</h2> - -<p> - This Service functions as a wrapper around the <a class="externalLink" href="http://www.quartz-scheduler.org/"> - Quartz Scheduler</a>. It is written for use in any Avalon compatible container. - </p> - - </div> - - -<div class="section"> -<h2><a name="Usage"></a>Usage</h2> - - -<p> - Scheduled jobs can be either created programmatically (using the Quartz API) or by - using an XML configuration based on the 'XMLSchedulingDataProcessorPlugin'. A - scheduled job consists of a class implementing the interface - <a class="externalLink" href="http://www.quartz-scheduler.org/api/2.0.0/org/quartz/Job.html">org.quartz.Job</a> - This requires just that one method be defined, execute(), whose - <a class="externalLink" href="http://www.quartz-scheduler.org/api/2.0.0/org/quartz/JobExecutionContext.html"> - org.quartz.JobExecutionContext</a> argument provides you with details of the - execution context when the task is triggered. - </p> - - -<div class="source"> -<pre> - -import org.quartz.Job; -import org.quartz.JobExecutionContext; -import org.quartz.JobExecutionException; - -public class SimpleJob implements Job -{ - public static boolean executed = false; - - public SimpleJob() - { - super(); - } - - public void execute(JobExecutionContext context) - throws JobExecutionException - { - executed = true; - } -} - </pre></div> - - -<p> - In order to invoke the SimpleJob we have to tell Quartz when to invoke - the 'execute' method. In this case we create a CRON trigger firing every - second to invoke SimpleJob#execute() on a newly created instance. Please - note that we define a set of parameters using the <job-data-map> - which are available using 'JobExecutionContext'. - </p> - - -<div class="source"> -<pre> - -<schedule> - <job> - <name>simpleJob</name> - <group>TURBINE</group> - <description>A simple job</description> - <job-class>org.apache.fulcrum.quartz.test.SimpleJob</job-class> - <job-data-map> - <entry> - <key>dressing-list</key> - <value>ketchup,mayo</value> - </entry> - <entry> - <key>burger-type</key> - <value>hotdog</value> - </entry> - </job-data-map> - </job> - <trigger> - <cron> - <!-- define a Cron trigger firing every second --> - <name>cronTrigger</name> - <group>TURBINE</group> - <job-name>simpleJob</job-name> - <job-group>TURBINE</job-group> - <cron-expression>* * * * * ?</cron-expression> - </cron> - </trigger> -</schedule> - - </pre></div> - </div> - - -<div class="section"> -<h2><a name="Implementation_Details"></a>Implementation Details</h2> - -<p> - The implementation registers a JobListener which intercepts the execution of - the job to set some Avalon infrastructure such 'Logger' and 'ServiceManager'. - This allows an simple invocation of an Avalon service within the job execution. - </p> - -<p> - On shutdown the service implementation ensures that all currently executed jobs - are finished. This avoids problems if a scheduled job tries to access already - disposed services. - </p> - -<p> - The service can be started without quartz configuration (relying on default - settings) and preconfigured triggers. - </p> - </div> - - - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright"> - Copyright © 2004–2019 <a href="https://www.apache.org/">The Apache Software Foundation</a>. -All rights reserved. </div> - <div class="clear"> - <hr/> - </div> - </div> - </body> +<!DOCTYPE html> +<!-- + | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src\site\xdoc/index.xml at 04 August 2021 + | Rendered using Apache Maven Fluido Skin 1.9 +--> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" /> + <meta name="author" content="Eric Pugh" /> + <meta name="author" content="Scott Eade" /> + <title>Fulcrum Quartz Service – Quartz Scheduler Component</title> + <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.min.css" /> + <link rel="stylesheet" href="./css/site.css" /> + <link rel="stylesheet" href="./css/print.css" media="print" /> + <script src="./js/apache-maven-fluido-1.9.min.js"></script> + </head> + <body class="topBarDisabled"> + <div class="container-fluid"> + <header> + <div id="banner"> + <div class="pull-left"><a href="../../" id="bannerLeft" title="Apache Turbine"><img src="../../images/turbine-project.png" alt="Apache Turbine"/></a></div> + <div class="pull-right"></div> + <div class="clear"><hr/></div> + </div> + + <div id="breadcrumbs"> + <ul class="breadcrumb"> + <li id="publishDate">Last Published: 04 August 2021<span class="divider">|</span> +</li> + <li id="projectVersion">Version: 1.1.2</li> + <li class="pull-right"><span class="divider">|</span> +<a href="../" title="Fulcrum">Fulcrum</a></li> + <li class="pull-right"><span class="divider">|</span> +<a href="../../" title="Turbine">Turbine</a></li> + <li class="pull-right"><a href="https://www.apache.org" class="externalLink" title="Apache">Apache</a></li> + </ul> + </div> + </header> + <div class="row-fluid"> + <header id="leftColumn" class="span2"> + <nav class="well sidebar-nav"> + <ul class="nav nav-list"> + <li class="nav-header">Overview</li> + <li class="active"><a href="#"><span class="none"></span>About</a></li> + <li><a href="configuration.html" title="Configuration"><span class="none"></span>Configuration</a></li> + <li><a href="cronsamples.html" title="Cron Samples"><span class="none"></span>Cron Samples</a></li> + <li class="nav-header">Project Documentation</li> + <li><a href="project-info.html" title="Project Information"><span class="icon-chevron-down"></span>Project Information</a> + <ul class="nav nav-list"> + <li><a href="dependencies.html" title="Dependencies"><span class="none"></span>Dependencies</a></li> + <li><a href="dependency-info.html" title="Dependency Information"><span class="none"></span>Dependency Information</a></li> + <li><a href="distribution-management.html" title="Distribution Management"><span class="none"></span>Distribution Management</a></li> + <li class="active"><a href="#"><span class="none"></span>About</a></li> + <li><a href="issue-management.html" title="Issue Management"><span class="none"></span>Issue Management</a></li> + <li><a href="licenses.html" title="Licenses"><span class="none"></span>Licenses</a></li> + <li><a href="mailing-lists.html" title="Mailing Lists"><span class="none"></span>Mailing Lists</a></li> + <li><a href="plugin-management.html" title="Plugin Management"><span class="none"></span>Plugin Management</a></li> + <li><a href="plugins.html" title="Plugins"><span class="none"></span>Plugins</a></li> + <li><a href="scm.html" title="Source Code Management"><span class="none"></span>Source Code Management</a></li> + <li><a href="summary.html" title="Summary"><span class="none"></span>Summary</a></li> + <li><a href="team.html" title="Team"><span class="none"></span>Team</a></li> + </ul></li> + <li><a href="project-reports.html" title="Project Reports"><span class="icon-chevron-right"></span>Project Reports</a></li> + <li class="nav-header">Apache</li> + <li><a href="https://www.apache.org/" class="externalLink" title="Apache Website"><span class="none"></span>Apache Website</a></li> + <li><a href="https://www.apache.org/licenses/" class="externalLink" title="License"><span class="none"></span>License</a></li> + <li><a href="https://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works"><span class="none"></span>How the ASF works</a></li> + <li><a href="https://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship"><span class="none"></span>Sponsorship</a></li> + <li><a href="https://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks"><span class="none"></span>Thanks</a></li> + <li><a href="https://www.apache.org/security/" class="externalLink" title="Security"><span class="none"></span>Security</a></li> + </ul> + </nav> + <div class="well sidebar-nav"> + <hr /> + <div id="poweredBy"> + <div class="clear"></div> + <div class="clear"></div> + <div class="clear"></div> +<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"><img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /></a> + </div> + </div> + </header> + <main id="bodyColumn" class="span10" > + + + + + <section> +<h2><a name="Overview"></a>Overview</h2> + +<p> + This Service functions as a wrapper around the <a class="externalLink" href="http://www.quartz-scheduler.org/"> + Quartz Scheduler</a>. It is written for use in any Avalon compatible container. + </p> + + </section> + + <section> +<h2><a name="Usage"></a>Usage</h2> + + +<p> + Scheduled jobs can be either created programmatically (using the Quartz API) or by + using an XML configuration based on the 'XMLSchedulingDataProcessorPlugin'. A + scheduled job consists of a class implementing the interface + <a class="externalLink" href="http://www.quartz-scheduler.org/api/2.0.0/org/quartz/Job.html">org.quartz.Job</a> + This requires just that one method be defined, execute(), whose + <a class="externalLink" href="http://www.quartz-scheduler.org/api/2.0.0/org/quartz/JobExecutionContext.html"> + org.quartz.JobExecutionContext</a> argument provides you with details of the + execution context when the task is triggered. + </p> + + +<div class="source"><pre class="prettyprint"> + +import org.quartz.Job; +import org.quartz.JobExecutionContext; +import org.quartz.JobExecutionException; + +public class SimpleJob implements Job +{ + public static boolean executed = false; + + public SimpleJob() + { + super(); + } + + public void execute(JobExecutionContext context) + throws JobExecutionException + { + executed = true; + } +} + </pre></div> + + +<p> + In order to invoke the SimpleJob we have to tell Quartz when to invoke + the 'execute' method. In this case we create a CRON trigger firing every + second to invoke SimpleJob#execute() on a newly created instance. Please + note that we define a set of parameters using the <job-data-map> + which are available using 'JobExecutionContext'. + </p> + + +<div class="source"><pre class="prettyprint"> + +<schedule> + <job> + <name>simpleJob</name> + <group>TURBINE</group> + <description>A simple job</description> + <job-class>org.apache.fulcrum.quartz.test.SimpleJob</job-class> + <job-data-map> + <entry> + <key>dressing-list</key> + <value>ketchup,mayo</value> + </entry> + <entry> + <key>burger-type</key> + <value>hotdog</value> + </entry> + </job-data-map> + </job> + <trigger> + <cron> + <!-- define a Cron trigger firing every second --> + <name>cronTrigger</name> + <group>TURBINE</group> + <job-name>simpleJob</job-name> + <job-group>TURBINE</job-group> + <cron-expression>* * * * * ?</cron-expression> + </cron> + </trigger> +</schedule> + + </pre></div> + </section> + + <section> +<h2><a name="Implementation_Details"></a>Implementation Details</h2> + +<p> + The implementation registers a JobListener which intercepts the execution of + the job to set some Avalon infrastructure such 'Logger' and 'ServiceManager'. + This allows an simple invocation of an Avalon service within the job execution. + </p> + +<p> + On shutdown the service implementation ensures that all currently executed jobs + are finished. This avoids problems if a scheduled job tries to access already + disposed services. + </p> + +<p> + The service can be started without quartz configuration (relying on default + settings) and preconfigured triggers. + </p> + </section> + + + </main> + </div> + </div> + <hr/> + <footer> + <div class="container-fluid"> + <div class="row-fluid"> + <p>© 2004–2021 +<a href="https://www.apache.org/">The Apache Software Foundation</a> +</p> + </div> + </div> + </footer> + </body> </html> \ No newline at end of file
Modified: websites/production/turbine/content/fulcrum/fulcrum-quartz/issue-management.html ============================================================================== --- websites/production/turbine/content/fulcrum/fulcrum-quartz/issue-management.html (original) +++ websites/production/turbine/content/fulcrum/fulcrum-quartz/issue-management.html Wed Aug 4 08:28:04 2021 @@ -1,100 +1,104 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:issue-management at 20 May 2019 --> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Fulcrum Quartz Service – Issue Management</title> - <style type="text/css" media="all"> - @import url("./css/maven-base.css"); - @import url("./css/maven-theme.css"); - @import url("./css/site.css"); - </style> - <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta http-equiv="Content-Language" content="en" /> - - </head> - <body class="composite"> - <div id="banner"> -<a href="../../" id="bannerLeft" title="Apache Turbine"><img src="../../images/turbine-project.png" alt="Apache Turbine"/></a> - <div class="clear"> - <hr/> - </div> - </div> - <div id="breadcrumbs"> - <div class="xleft"> - <span id="publishDate">Last Published: 20 May 2019</span> - | <span id="projectVersion">Version: 1.1.1</span> - </div> - <div class="xright"><a href="http://www.apache.org" class="externalLink" title="Apache">Apache</a> | -<a href="../../" title="Turbine">Turbine</a> | -<a href="../" title="Fulcrum">Fulcrum</a> </div> - <div class="clear"> - <hr/> - </div> - </div> - <div id="leftColumn"> - <div id="navcolumn"> - <h5>Overview</h5> - <ul> - <li class="none"><a href="index.html" title="About">About</a></li> - <li class="none"><a href="configuration.html" title="Configuration">Configuration</a></li> - <li class="none"><a href="cronsamples.html" title="Cron Samples">Cron Samples</a></li> - </ul> - <h5>Project Documentation</h5> - <ul> - <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a> - <ul> - <li class="none"><a href="dependencies.html" title="Dependencies">Dependencies</a></li> - <li class="none"><a href="dependency-info.html" title="Dependency Information">Dependency Information</a></li> - <li class="none"><a href="distribution-management.html" title="Distribution Management">Distribution Management</a></li> - <li class="none"><a href="index.html" title="About">About</a></li> - <li class="none"><strong>Issue Management</strong></li> - <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li> - <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li> - <li class="none"><a href="plugin-management.html" title="Plugin Management">Plugin Management</a></li> - <li class="none"><a href="plugins.html" title="Plugins">Plugins</a></li> - <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li> - <li class="none"><a href="summary.html" title="Summary">Summary</a></li> - <li class="none"><a href="team.html" title="Team">Team</a></li> - </ul></li> - <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li> - </ul> - <h5>Apache</h5> - <ul> - <li class="none"><a href="http://www.apache.org/" class="externalLink" title="Apache Website">Apache Website</a></li> - <li class="none"><a href="http://www.apache.org/licenses/" class="externalLink" title="License">License</a></li> - <li class="none"><a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works">How the ASF works</a></li> - <li class="none"><a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship">Sponsorship</a></li> - <li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks">Thanks</a></li> - <li class="none"><a href="http://www.apache.org/security/" class="externalLink" title="Security">Security</a></li> - </ul> - <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> - <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> - </a> - </div> - </div> - <div id="bodyColumn"> - <div id="contentBox"> -<div class="section"> -<h2><a name="Overview"></a>Overview</h2><a name="Overview"></a> -<p>This project uses <a class="externalLink" href="http://www.atlassian.com/software/jira">JIRA</a>.</p></div> -<div class="section"> -<h2><a name="Issue_Management"></a>Issue Management</h2><a name="Issue_Management"></a> -<p>Issues, bugs, and feature requests should be submitted to the following issue management system for this project.</p> -<div class="source"> -<pre><a class="externalLink" href="http://issues.apache.org/jira/browse/TRB">http://issues.apache.org/jira/browse/TRB</a></pre></div></div> - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright"> - Copyright © 2004–2019 <a href="https://www.apache.org/">The Apache Software Foundation</a>. -All rights reserved. </div> - <div class="clear"> - <hr/> - </div> - </div> - </body> +<!DOCTYPE html> +<!-- + | Generated by Apache Maven Doxia Site Renderer 1.9.2 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:issue-management at 04 August 2021 + | Rendered using Apache Maven Fluido Skin 1.9 +--> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" /> + <title>Fulcrum Quartz Service – Issue Management</title> + <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.min.css" /> + <link rel="stylesheet" href="./css/site.css" /> + <link rel="stylesheet" href="./css/print.css" media="print" /> + <script src="./js/apache-maven-fluido-1.9.min.js"></script> + </head> + <body class="topBarDisabled"> + <div class="container-fluid"> + <header> + <div id="banner"> + <div class="pull-left"><a href="../../" id="bannerLeft" title="Apache Turbine"><img src="../../images/turbine-project.png" alt="Apache Turbine"/></a></div> + <div class="pull-right"></div> + <div class="clear"><hr/></div> + </div> + + <div id="breadcrumbs"> + <ul class="breadcrumb"> + <li id="publishDate">Last Published: 04 August 2021<span class="divider">|</span> +</li> + <li id="projectVersion">Version: 1.1.2</li> + <li class="pull-right"><span class="divider">|</span> +<a href="../" title="Fulcrum">Fulcrum</a></li> + <li class="pull-right"><span class="divider">|</span> +<a href="../../" title="Turbine">Turbine</a></li> + <li class="pull-right"><a href="https://www.apache.org" class="externalLink" title="Apache">Apache</a></li> + </ul> + </div> + </header> + <div class="row-fluid"> + <header id="leftColumn" class="span2"> + <nav class="well sidebar-nav"> + <ul class="nav nav-list"> + <li class="nav-header">Overview</li> + <li><a href="index.html" title="About"><span class="none"></span>About</a></li> + <li><a href="configuration.html" title="Configuration"><span class="none"></span>Configuration</a></li> + <li><a href="cronsamples.html" title="Cron Samples"><span class="none"></span>Cron Samples</a></li> + <li class="nav-header">Project Documentation</li> + <li><a href="project-info.html" title="Project Information"><span class="icon-chevron-down"></span>Project Information</a> + <ul class="nav nav-list"> + <li><a href="dependencies.html" title="Dependencies"><span class="none"></span>Dependencies</a></li> + <li><a href="dependency-info.html" title="Dependency Information"><span class="none"></span>Dependency Information</a></li> + <li><a href="distribution-management.html" title="Distribution Management"><span class="none"></span>Distribution Management</a></li> + <li><a href="index.html" title="About"><span class="none"></span>About</a></li> + <li class="active"><a href="#"><span class="none"></span>Issue Management</a></li> + <li><a href="licenses.html" title="Licenses"><span class="none"></span>Licenses</a></li> + <li><a href="mailing-lists.html" title="Mailing Lists"><span class="none"></span>Mailing Lists</a></li> + <li><a href="plugin-management.html" title="Plugin Management"><span class="none"></span>Plugin Management</a></li> + <li><a href="plugins.html" title="Plugins"><span class="none"></span>Plugins</a></li> + <li><a href="scm.html" title="Source Code Management"><span class="none"></span>Source Code Management</a></li> + <li><a href="summary.html" title="Summary"><span class="none"></span>Summary</a></li> + <li><a href="team.html" title="Team"><span class="none"></span>Team</a></li> + </ul></li> + <li><a href="project-reports.html" title="Project Reports"><span class="icon-chevron-right"></span>Project Reports</a></li> + <li class="nav-header">Apache</li> + <li><a href="https://www.apache.org/" class="externalLink" title="Apache Website"><span class="none"></span>Apache Website</a></li> + <li><a href="https://www.apache.org/licenses/" class="externalLink" title="License"><span class="none"></span>License</a></li> + <li><a href="https://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works"><span class="none"></span>How the ASF works</a></li> + <li><a href="https://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship"><span class="none"></span>Sponsorship</a></li> + <li><a href="https://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks"><span class="none"></span>Thanks</a></li> + <li><a href="https://www.apache.org/security/" class="externalLink" title="Security"><span class="none"></span>Security</a></li> + </ul> + </nav> + <div class="well sidebar-nav"> + <hr /> + <div id="poweredBy"> + <div class="clear"></div> + <div class="clear"></div> + <div class="clear"></div> +<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"><img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /></a> + </div> + </div> + </header> + <main id="bodyColumn" class="span10" > +<section> +<h2><a name="Overview"></a>Overview</h2><a name="Overview"></a> +<p>This project uses <a class="externalLink" href="http://www.atlassian.com/software/jira">JIRA</a>.</p></section><section> +<h2><a name="Issue_Management"></a>Issue Management</h2><a name="Issue_Management"></a> +<p>Issues, bugs, and feature requests should be submitted to the following issue management system for this project.</p> +<div class="source"><pre class="prettyprint"><a class="externalLink" href="https://issues.apache.org/jira/browse/TRB">https://issues.apache.org/jira/browse/TRB</a></pre></div></section> + </main> + </div> + </div> + <hr/> + <footer> + <div class="container-fluid"> + <div class="row-fluid"> + <p>© 2004–2021 +<a href="https://www.apache.org/">The Apache Software Foundation</a> +</p> + </div> + </div> + </footer> + </body> </html> \ No newline at end of file Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/index.html ============================================================================== --- websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/index.html (added) +++ websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/index.html Wed Aug 4 08:28:04 2021 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="jacoco-resources/report.gif" type="image/gif"/><title>Fulcrum Quartz</title><script type="text/javascript" src="jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="jacoco-sessions.html" class="el_session">Sessions</a></span><span class="el_report">Fulcrum Quartz</span></div><h1>Fulcrum Quartz</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)"> Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td></tr></tfoot><tbody/></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.6.202009150832</span></div></body></html> \ No newline at end of file Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/branchfc.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/branchfc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/branchnc.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/branchnc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/branchpc.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/branchpc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/bundle.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/bundle.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/class.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/class.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/down.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/down.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/greenbar.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/greenbar.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/group.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/group.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/method.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/method.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/package.gif ============================================================================== Binary file - no diff available. Propchange: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/package.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/prettify.css ============================================================================== --- websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/prettify.css (added) +++ websites/production/turbine/content/fulcrum/fulcrum-quartz/jacoco-aggregate/jacoco-resources/prettify.css Wed Aug 4 08:28:04 2021 @@ -0,0 +1,13 @@ +/* Pretty printing styles. Used with prettify.js. */ + +.str { color: #2A00FF; } +.kwd { color: #7F0055; font-weight:bold; } +.com { color: #3F5FBF; } +.typ { color: #606; } +.lit { color: #066; } +.pun { color: #660; } +.pln { color: #000; } +.tag { color: #008; } +.atn { color: #606; } +.atv { color: #080; } +.dec { color: #606; } \ No newline at end of file
