Modified: websites/production/turbine/content/fulcrum/fulcrum-quartz/cobertura/js/stringbuilder.js ============================================================================== --- websites/production/turbine/content/fulcrum/fulcrum-quartz/cobertura/js/stringbuilder.js (original) +++ websites/production/turbine/content/fulcrum/fulcrum-quartz/cobertura/js/stringbuilder.js Tue May 21 03:44:00 2019 @@ -1,79 +1,79 @@ -/*----------------------------------------------------------------------------\ -| String Builder 1.02 | -|-----------------------------------------------------------------------------| -| Created by Erik Arvidsson | -| (http://webfx.eae.net/contact.html#erik) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------------------------------------------| -| A class that allows more efficient building of strings than concatenation. | -|-----------------------------------------------------------------------------| -| Copyright (c) 1999 - 2002 Erik Arvidsson | -|-----------------------------------------------------------------------------| -| This software is provided "as is", without warranty of any kind, express or | -| implied, including but not limited to the warranties of merchantability, | -| fitness for a particular purpose and noninfringement. In no event shall the | -| authors or copyright holders be liable for any claim, damages or other | -| liability, whether in an action of contract, tort or otherwise, arising | -| from, out of or in connection with the software or the use or other | -| dealings in the software. | -| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | -| This software is available under the three different licenses mentioned | -| below. To use this software you must chose, and qualify, for one of those. | -| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | -| The WebFX Non-Commercial License http://webfx.eae.net/license.html | -| Permits anyone the right to use the software in a non-commercial context | -| free of charge. | -| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | -| The WebFX Commercial license http://webfx.eae.net/commercial.html | -| Permits the license holder the right to use the software in a commercial | -| context. Such license must be specifically obtained, however it's valid for | -| any number of implementations of the licensed software. | -| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | -| GPL - The GNU General Public License http://www.gnu.org/licenses/gpl.txt | -| Permits anyone the right to use and modify the software without limitations | -| as long as proper credits are given and the original and modified source | -| code are included. Requires that the final product, software derivate from | -| the original source or any software utilizing a GPL component, such as | -| this, is also licensed under the GPL license. | -|-----------------------------------------------------------------------------| -| 2000-10-02 | First version | -| 2000-10-05 | Added a cache of the string so that it does not need to be | -| | regenerated every time in toString | -| 2002-10-03 | Added minor improvement in the toString method | -|-----------------------------------------------------------------------------| -| Created 2000-10-02 | All changes are in the log above. | Updated 2002-10-03 | -\----------------------------------------------------------------------------*/ function StringBuilder(sString) { - - // public - this.length = 0; - - this.append = function (sString) { - // append argument - this.length += (this._parts[this._current++] = String(sString)).length; - - // reset cache - this._string = null; - return this; - }; - - this.toString = function () { - if (this._string != null) - return this._string; - - var s = this._parts.join(""); - this._parts = [s]; - this._current = 1; - this.length = s.length; - - return this._string = s; - }; - - // private - this._current = 0; - this._parts = []; - this._string = null; // used to cache the string - - // init - if (sString != null) - this.append(sString); -} +/*----------------------------------------------------------------------------\ +| String Builder 1.02 | +|-----------------------------------------------------------------------------| +| Created by Erik Arvidsson | +| (http://webfx.eae.net/contact.html#erik) | +| For WebFX (http://webfx.eae.net/) | +|-----------------------------------------------------------------------------| +| A class that allows more efficient building of strings than concatenation. | +|-----------------------------------------------------------------------------| +| Copyright (c) 1999 - 2002 Erik Arvidsson | +|-----------------------------------------------------------------------------| +| This software is provided "as is", without warranty of any kind, express or | +| implied, including but not limited to the warranties of merchantability, | +| fitness for a particular purpose and noninfringement. In no event shall the | +| authors or copyright holders be liable for any claim, damages or other | +| liability, whether in an action of contract, tort or otherwise, arising | +| from, out of or in connection with the software or the use or other | +| dealings in the software. | +| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | +| This software is available under the three different licenses mentioned | +| below. To use this software you must chose, and qualify, for one of those. | +| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | +| The WebFX Non-Commercial License http://webfx.eae.net/license.html | +| Permits anyone the right to use the software in a non-commercial context | +| free of charge. | +| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | +| The WebFX Commercial license http://webfx.eae.net/commercial.html | +| Permits the license holder the right to use the software in a commercial | +| context. Such license must be specifically obtained, however it's valid for | +| any number of implementations of the licensed software. | +| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | +| GPL - The GNU General Public License http://www.gnu.org/licenses/gpl.txt | +| Permits anyone the right to use and modify the software without limitations | +| as long as proper credits are given and the original and modified source | +| code are included. Requires that the final product, software derivate from | +| the original source or any software utilizing a GPL component, such as | +| this, is also licensed under the GPL license. | +|-----------------------------------------------------------------------------| +| 2000-10-02 | First version | +| 2000-10-05 | Added a cache of the string so that it does not need to be | +| | regenerated every time in toString | +| 2002-10-03 | Added minor improvement in the toString method | +|-----------------------------------------------------------------------------| +| Created 2000-10-02 | All changes are in the log above. | Updated 2002-10-03 | +\----------------------------------------------------------------------------*/ function StringBuilder(sString) { + + // public + this.length = 0; + + this.append = function (sString) { + // append argument + this.length += (this._parts[this._current++] = String(sString)).length; + + // reset cache + this._string = null; + return this; + }; + + this.toString = function () { + if (this._string != null) + return this._string; + + var s = this._parts.join(""); + this._parts = [s]; + this._current = 1; + this.length = s.length; + + return this._string = s; + }; + + // private + this._current = 0; + this._parts = []; + this._string = null; // used to cache the string + + // init + if (sString != null) + this.append(sString); +} \ No newline at end of file
Modified: websites/production/turbine/content/fulcrum/fulcrum-quartz/cobertura/org.apache.fulcrum.quartz.QuartzScheduler.html ============================================================================== --- websites/production/turbine/content/fulcrum/fulcrum-quartz/cobertura/org.apache.fulcrum.quartz.QuartzScheduler.html (original) +++ websites/production/turbine/content/fulcrum/fulcrum-quartz/cobertura/org.apache.fulcrum.quartz.QuartzScheduler.html Tue May 21 03:44:00 2019 @@ -18,45 +18,45 @@ <div class="separator"> </div> <table cellspacing="0" cellpadding="0" class="src"> <tr> <td class="numLine"> 1</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment">/*</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="keyword">package</span> org.apache.fulcrum.quartz;</pre></td></tr> <tr> <td class="numLine"> 2</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one</span></pre></td></tr> + <td class="src"><pre class="src"> </pre></td></tr> <tr> <td class="numLine"> 3</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * or more contributor license agreements. See the NOTICE file</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment">/*</span></pre></td></tr> <tr> <td class="numLine"> 4</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * distributed with this work for additional information</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one</span></pre></td></tr> <tr> <td class="numLine"> 5</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * regarding copyright ownership. The ASF licenses this file</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * or more contributor license agreements. See the NOTICE file</span></pre></td></tr> <tr> <td class="numLine"> 6</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * to you under the Apache License, Version 2.0 (the</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * distributed with this work for additional information</span></pre></td></tr> <tr> <td class="numLine"> 7</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * "License"); you may not use this file except in compliance</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * regarding copyright ownership. The ASF licenses this file</span></pre></td></tr> <tr> <td class="numLine"> 8</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * with the License. You may obtain a copy of the License at</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * to you under the Apache License, Version 2.0 (the</span></pre></td></tr> <tr> <td class="numLine"> 9</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> *</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * "License"); you may not use this file except in compliance</span></pre></td></tr> <tr> <td class="numLine"> 10</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * with the License. You may obtain a copy of the License at</span></pre></td></tr> <tr> <td class="numLine"> 11</td> <td class="nbHits"> </td> <td class="src"><pre class="src"> <span class="comment"> *</span></pre></td></tr> <tr> <td class="numLine"> 12</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * Unless required by applicable law or agreed to in writing,</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span></pre></td></tr> <tr> <td class="numLine"> 13</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * software distributed under the License is distributed on an</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> *</span></pre></td></tr> <tr> <td class="numLine"> 14</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * Unless required by applicable law or agreed to in writing,</span></pre></td></tr> <tr> <td class="numLine"> 15</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * KIND, either express or implied. See the License for the</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * software distributed under the License is distributed on an</span></pre></td></tr> <tr> <td class="numLine"> 16</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * specific language governing permissions and limitations</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</span></pre></td></tr> <tr> <td class="numLine"> 17</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * under the License.</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * KIND, either express or implied. See the License for the</span></pre></td></tr> <tr> <td class="numLine"> 18</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * specific language governing permissions and limitations</span></pre></td></tr> <tr> <td class="numLine"> 19</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> </pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * under the License.</span></pre></td></tr> <tr> <td class="numLine"> 20</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="keyword">package</span> org.apache.fulcrum.quartz;</pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr> <tr> <td class="numLine"> 21</td> <td class="nbHits"> </td> <td class="src"><pre class="src"> </pre></td></tr> <tr> <td class="numLine"> 22</td> <td class="nbHits"> </td> @@ -76,21 +76,27 @@ <tr> <td class="numLine"> 29</td> <td class="nbHits"> </td> <td class="src"><pre class="src"> {</pre></td></tr> <tr> <td class="numLine"> 30</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment">/** Avalon role - used to id the component within the manager */</span></pre></td></tr> <tr> <td class="numLine"> 31</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * Get the underlying Quartz scheduler.</span></pre></td></tr> + <td class="src"><pre class="src"> String ROLE = QuartzScheduler.<span class="keyword">class</span>.getName();</pre></td></tr> <tr> <td class="numLine"> 32</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> *</span></pre></td></tr> + <td class="src"><pre class="src"> </pre></td></tr> <tr> <td class="numLine"> 33</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> * @return the Quartz scheduler</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr> <tr> <td class="numLine"> 34</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> * Get the underlying Quartz scheduler.</span></pre></td></tr> <tr> <td class="numLine"> 35</td> <td class="nbHits"> </td> - <td class="src"><pre class="src"> Scheduler getScheduler();</pre></td></tr> + <td class="src"><pre class="src"> <span class="comment"> *</span></pre></td></tr> <tr> <td class="numLine"> 36</td> <td class="nbHits"> </td> + <td class="src"><pre class="src"> <span class="comment"> * @return the Quartz scheduler</span></pre></td></tr> +<tr> <td class="numLine"> 37</td> <td class="nbHits"> </td> + <td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr> +<tr> <td class="numLine"> 38</td> <td class="nbHits"> </td> + <td class="src"><pre class="src"> Scheduler getScheduler();</pre></td></tr> +<tr> <td class="numLine"> 39</td> <td class="nbHits"> </td> <td class="src"><pre class="src"> }</pre></td></tr> </table> -<div class="footer">Report generated by <a href="http://cobertura.sourceforge.net/" target="_top">Cobertura</a> 1.9 on 08.11.11 21:03.</div> +<div class="footer">Report generated by <a href="http://cobertura.sourceforge.net/" target="_top">Cobertura</a> 2.1.1 on 5/20/19 11:43 PM.</div> </body> -</html> +</html> \ No newline at end of file
