Skip to content

Commit d5dca4e

Browse files
committed
chore: included adaptions for current settings
1 parent 2793519 commit d5dca4e

File tree

48 files changed

+51
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+51
-51
lines changed

ep_align/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const eejs = require('ep_etherpad-lite/node/eejs/');
44
const Changeset = require('ep_etherpad-lite/static/js/Changeset');
5-
const settings = require('ep_etherpad-lite/node/utils/Settings');
5+
import settings from 'ep_etherpad-lite/node/utils/Settings'
66

77
exports.eejsBlock_editbarMenuLeft = (hookName, args, cb) => {
88
if (args.renderContext.isReadOnly) return cb();

ep_align/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"type": "git",
2020
"url": "https://github.com/ether/ether-plugins.git"
2121
},
22-
"version": "0.3.100",
22+
"version": "next",
2323
"funding": {
2424
"type": "individual",
2525
"url": "https://etherpad.org/"

ep_author_follow/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818
const eejs = require('ep_etherpad-lite/node/eejs/');
19-
const settings = require('ep_etherpad-lite/node/utils/Settings');
19+
import settings from 'ep_etherpad-lite/node/utils/Settings'
2020

2121
exports.clientVars = (hook, context, callback) => {
2222
if (!settings.ep_author_follow) settings.ep_author_follow = {};

ep_author_follow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ep_author_follow",
3-
"version": "0.1.46",
3+
"version": "next",
44
"description": "Follow an Authors contributions to a Pad",
55
"author": "John McLear <[email protected]>",
66
"contributors": [],

ep_author_hover/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
const eejs = require('ep_etherpad-lite/node/eejs/');
4-
const settings = require('ep_etherpad-lite/node/utils/Settings');
4+
import settings from 'ep_etherpad-lite/node/utils/Settings'
55

66
exports.eejsBlock_mySettings = (hookName, args, cb) => {
77
let checkedState = 'checked';

ep_author_hover/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"name": "ep_author_hover",
88
"description": "Adds author names to span titles (shows on hover), works as authors change their name. Hover includes author color and fast switching between author spans. Hat tip to Martyn York for the initial work on this.",
9-
"version": "1.0.2",
9+
"version": "next",
1010
"repository": {
1111
"type": "git",
1212
"url": "https://github.com/ether/ether-plugins.git"

ep_comments_page/apiUtils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict';
22

3-
const absolutePaths = require('ep_etherpad-lite/node/utils/AbsolutePaths');
3+
import * as absolutePaths from 'ep_etherpad-lite/node/utils/AbsolutePaths';
44
const fs = require('fs');
55
const padManager = require('ep_etherpad-lite/node/db/PadManager');
6-
const settings = require('ep_etherpad-lite/node/utils/Settings');
6+
import settings from 'ep_etherpad-lite/node/utils/Settings'
77

88
// ensure we have an apiKey
99
let apiKey = '';

ep_comments_page/exportHTML.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const $ = require('cheerio').load('');
44
const commentManager = require('./commentManager');
5-
const settings = require('ep_etherpad-lite/node/utils/Settings');
5+
import settings from 'ep_etherpad-lite/node/utils/Settings'
66

77
// Iterate over pad attributes to find only the comment ones
88
const findAllCommentUsedOn = (pad) => {

ep_comments_page/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const AttributePool = require('ep_etherpad-lite/static/js/AttributePool');
44
const Changeset = require('ep_etherpad-lite/static/js/Changeset');
55
const eejs = require('ep_etherpad-lite/node/eejs/');
6-
const settings = require('ep_etherpad-lite/node/utils/Settings');
6+
import settings from 'ep_etherpad-lite/node/utils/Settings'
77
const {Formidable} = require('formidable');
88
const commentManager = require('./commentManager');
99
const apiUtils = require('./apiUtils');

ep_comments_page/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "Adds comments on sidebar and link it to the text. For no-skin use ep_page_view.",
33
"name": "ep_comments_page",
4-
"version": "1.0.39",
4+
"version": "next",
55
"author": {
66
"name": "Nicolas Lescop",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)