Pagination & legal numbering
A live paginated page view— real page boundaries, page numbers, and repeating headers/footers with {page} / {total} placeholders — plus multi-level legal numbering (1, 1.1, 1.1.1) for clause-numbered documents. Page view is purely presentational: the HTML you save is identical whether it is on or off.
Master Services Agreement
This Agreement is entered into by and between the parties identified below and governs the provision of the services described herein.
- Definitions
- “Agreement” means this Master Services Agreement together with every Statement of Work executed under it.
- “Parties” means the entities identified in the preamble.
- “Discloser” means the Party disclosing Confidential Information.
- “Recipient” means the Party receiving Confidential Information.
- “Services” means the work described in an applicable Statement of Work.
- Obligations of the Parties
- Each Party shall perform its obligations with reasonable skill and care.
- Recipient shall protect Confidential Information using no less than a reasonable standard of care.
- Neither Party shall subcontract without prior written consent.
- Term and Termination
- This Agreement commences on the Effective Date and continues until terminated.
- Either Party may terminate for material breach not cured within thirty (30) days of written notice.
Schedule 1 — Service Levels
The service levels set out in this Schedule apply to all Services delivered under this Agreement. Availability is measured monthly, excluding scheduled maintenance notified at least five (5) business days in advance.
Where a service level is not met, the remedies in clause 2 apply. Service credits are the sole and exclusive remedy for a failure to meet a service level, and are calculated against the fees payable for the affected month.
Availability is calculated as the total number of minutes in the applicable month less the number of minutes of unplanned downtime, divided by the total number of minutes in that month, expressed as a percentage and rounded to two decimal places.
Unplanned downtime excludes any period during which the Services are unavailable as a result of an act or omission of the Customer, a failure of the Customer’s own network or equipment, or a force majeure event.
The Supplier shall provide a written incident report within five (5) business days of any priority one incident, setting out the root cause, the remedial action taken, and the measures adopted to prevent recurrence.
Schedule 2 — Data Protection
Each Party shall comply with applicable data protection law in respect of any personal data processed under this Agreement, and shall implement appropriate technical and organisational measures against unauthorised or unlawful processing.
The Recipient shall notify the Discloser without undue delay upon becoming aware of any personal data breach affecting data processed under this Agreement.
The Supplier shall not transfer personal data outside the territory without first putting in place an appropriate transfer mechanism recognised under applicable data protection law.
Each Party shall maintain records of its processing activities sufficient to demonstrate compliance with this Schedule, and shall make those records available to the other Party on reasonable written request.
On expiry or termination of this Agreement the Supplier shall, at the Customer’s written election, return or securely delete all personal data processed on the Customer’s behalf, save to the extent retention is required by law.
Schedule 3 — Fees and Payment
Fees are payable within thirty (30) days of the date of a valid invoice. Invoices are issued monthly in arrears unless a Statement of Work provides otherwise.
All amounts are exclusive of value added tax and any other applicable sales or transaction taxes, which shall be added to invoices at the prevailing rate.
The Supplier may increase the fees once in any twelve (12) month period on not less than sixty (60) days’ written notice, provided the increase does not exceed the change in the applicable consumer price index over the preceding twelve months.
Where the Customer disputes an invoice in good faith, it shall pay the undisputed portion by the due date and the Parties shall use reasonable endeavours to resolve the disputed portion within thirty (30) days.
Schedule 4 — Governing Law
This Agreement and any dispute or claim arising out of or in connection with it or its subject matter is governed by and construed in accordance with the laws of the jurisdiction identified in the preamble.
The Parties irrevocably agree that the courts of that jurisdiction have exclusive jurisdiction to settle any dispute or claim arising out of or in connection with this Agreement.
Nothing in this clause limits either Party’s right to seek injunctive or other equitable relief in any court of competent jurisdiction to protect its intellectual property or Confidential Information.
Example code
<script src="/richtexteditor/rte.js"></script>
<script src="/richtexteditor/plugins/all_plugins.js"></script>
<script src="/richtexteditor/plugins/pagination.js"></script>
<script src="/richtexteditor/plugins/multilevellist.js"></script>
<div id="div_editor1">...</div>
<script>
var editor1 = new RichTextEditor("#div_editor1");
// --- paginated page view -------------------------------------------
editor1.setPageView(true);
editor1.setPageSetup({
format: "A4", // A4 | Letter | Legal | A3 | A5 | Tabloid
orientation: "portrait",
margins: { top: 1, right: 1, bottom: 1, left: 1 }, // inches
headerHtml: "Master Services Agreement",
footerHtml: "Page {page} of {total} · Confidential"
});
editor1.getPageCount(); // -> number of pages
// --- legal numbering (1, 1.1, 1.1.1) --------------------------------
// Acts on the ordered list containing the caret.
editor1.setLegalNumbering(true);
</script>