Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-04-12 07:16:27 +0300
committerMorris Jobke <hey@morrisjobke.de>2017-04-12 07:16:27 +0300
commit1729e4471f41e560f78f6b7269bcdb73e24602d5 (patch)
treed9850ee89a893efd8f746c4bbc71b8c9eae9a55b /apps/user_ldap/js
parent6bd1c50dc32ccc208723ef08af72b8bfe99b58bb (diff)
Update comments to Nextcloud
* based on PR by @Ardinis * see #4311 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r--apps/user_ldap/js/wizard/configModel.js14
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorBaseDN.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorFilterUser.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorGeneric.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorGroupCount.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorPort.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardTabAdvanced.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardTabExpert.js2
-rw-r--r--apps/user_ldap/js/wizard/wizardTabGeneric.js2
15 files changed, 21 insertions, 21 deletions
diff --git a/apps/user_ldap/js/wizard/configModel.js b/apps/user_ldap/js/wizard/configModel.js
index 3732409c3e1..d99392660c8 100644
--- a/apps/user_ldap/js/wizard/configModel.js
+++ b/apps/user_ldap/js/wizard/configModel.js
@@ -10,11 +10,11 @@ OCA = OCA || {};
/**
* @classdesc this class represents a server configuration. It communicates
- * with the ownCloud server to ensure to always have the up to date LDAP
+ * with the Nextcloud server to ensure to always have the up to date LDAP
* configuration. It sends various events that views can listen to and
* provides methods so they can modify the configuration based upon user
* input. This model is also extended by so-called "detectors" who let the
- * ownCloud server try to auto-detect settings and manipulate the
+ * Nextcloud server try to auto-detect settings and manipulate the
* configuration as well.
*
* @constructor
@@ -108,7 +108,7 @@ OCA = OCA || {};
*/
/**
- * calls an AJAX endpoint at ownCloud. This method should be called by
+ * calls an AJAX endpoint at Nextcloud. This method should be called by
* detectors only!
*
* @param {string} [params] - as return by OC.buildQueryString
@@ -121,7 +121,7 @@ OCA = OCA || {};
},
/**
- * calls an AJAX endpoint at ownCloud. This method should be called by
+ * calls an AJAX endpoint at Nextcloud. This method should be called by
* detectors only!
*
* @param {string} destination - the desired end point
@@ -148,7 +148,7 @@ OCA = OCA || {};
/**
* modifies a configuration key. If a provided configuration key does
* not exist or the provided value equals the current setting, false is
- * returned. Otherwise ownCloud server will be called to save the new
+ * returned. Otherwise Nextcloud server will be called to save the new
* value, an event will notify when this is done. True is returned when
* the request is sent, however it does not mean whether saving was
* successful or not.
@@ -195,7 +195,7 @@ OCA = OCA || {};
/**
* updates the model's configuration data. This should be called only,
- * when a new configuration value was received from the ownCloud server.
+ * when a new configuration value was received from the Nextcloud server.
* This is typically done by detectors, but never by views.
*
* Cancels with false if old and new values already match.
@@ -314,7 +314,7 @@ OCA = OCA || {};
},
/**
- * starts a configuration test on the ownCloud server
+ * starts a configuration test on the Nextcloud server
*/
requestConfigurationTest: function() {
var url = OC.generateUrl('apps/user_ldap/ajax/testConfiguration.php');
diff --git a/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js b/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js
index f0272351749..fd43b032ad5 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc an Attributes Detector. It executes the auto-detection of
- * available attributes by the ownCloud server, if requirements are met.
+ * available attributes by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js b/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js
index 70b9923e58d..f81d342b692 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Base DN Detector. It executes the auto-detection of the base
- * DN by the ownCloud server, if requirements are met.
+ * DN by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js b/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js
index cca889839e4..f56550a919e 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js b/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js
index e796b81e0eb..7012847193b 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js b/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js
index d34e244a1f5..3cd2935bd87 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorGeneric.js b/apps/user_ldap/js/wizard/wizardDetectorGeneric.js
index fd80018943e..2126828c197 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorGeneric.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorGeneric.js
@@ -90,7 +90,7 @@ OCA = OCA || {};
},
/**
- * processes the result of the ownCloud server
+ * processes the result of the Nextcloud server
*
* @param {OCA.LDAP.Wizard.ConfigModel} model
* @param {WizardDetectorGeneric} detector
diff --git a/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js b/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js
index 12d7df7514b..d2f3dd978c5 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorPort.js b/apps/user_ldap/js/wizard/wizardDetectorPort.js
index ba075189667..50b1a1b4746 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorPort.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorPort.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js b/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js
index 37e41f42a64..8a1da617aa0 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js b/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js
index df0b0a2200a..e371dbf0f63 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js b/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js
index 1308c182909..aed99539384 100644
--- a/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js
+++ b/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js
@@ -11,7 +11,7 @@ OCA = OCA || {};
/**
* @classdesc a Port Detector. It executes the auto-detection of the port
- * by the ownCloud server, if requirements are met.
+ * by the Nextcloud server, if requirements are met.
*
* @constructor
*/
diff --git a/apps/user_ldap/js/wizard/wizardTabAdvanced.js b/apps/user_ldap/js/wizard/wizardTabAdvanced.js
index d0922bbff32..7d8d0b70269 100644
--- a/apps/user_ldap/js/wizard/wizardTabAdvanced.js
+++ b/apps/user_ldap/js/wizard/wizardTabAdvanced.js
@@ -332,7 +332,7 @@ OCA = OCA || {};
},
/**
- * sets the attribute for the ownCloud user specific home folder location
+ * sets the attribute for the Nextcloud user specific home folder location
*
* @param {string} attribute
*/
diff --git a/apps/user_ldap/js/wizard/wizardTabExpert.js b/apps/user_ldap/js/wizard/wizardTabExpert.js
index 7cfd49ba0f6..634d30212ac 100644
--- a/apps/user_ldap/js/wizard/wizardTabExpert.js
+++ b/apps/user_ldap/js/wizard/wizardTabExpert.js
@@ -65,7 +65,7 @@ OCA = OCA || {};
},
/**
- * sets the attribute to be used to create an ownCloud ID (username)
+ * sets the attribute to be used to create an Nextcloud ID (username)
*
* @param {string} attribute
*/
diff --git a/apps/user_ldap/js/wizard/wizardTabGeneric.js b/apps/user_ldap/js/wizard/wizardTabGeneric.js
index 4415172a18c..98e26d303b5 100644
--- a/apps/user_ldap/js/wizard/wizardTabGeneric.js
+++ b/apps/user_ldap/js/wizard/wizardTabGeneric.js
@@ -73,7 +73,7 @@ OCA = OCA || {};
/**
* the method can be used to display a different error/information
- * message than provided by the ownCloud server response. The concrete
+ * message than provided by the Nextcloud server response. The concrete
* Tab View may optionally implement it. Returning an empty string will
* avoid any notification.
*