Extension:EditSubpages/ar

Category:GPL licensed extensions/ar
الدليل المرجعي لامتدادات ميدياويكي
EditSubpages
حالة الإصدار مستقرCategory:Stable extensions/ar
تنفيذ صلاحيات المستخدم Category:User rights extensions/ar
بيان يسمح لإداري النظام بإلغاء قفل الصفحات أمام التعديل دون حساب مسجل
المؤلف/المؤلفون Ryan Schmidt and Prod
آخر إصدار 3.5.0
MediaWiki 1.25+Category:Extensions with manual MediaWiki version
PHP 5.3+
ترخيص رخصة جنو العمومية 2.0 فقط
التنزيل Category:Extensions in Wikimedia version control/ar
  • $wgEditSubpagesDefaultFlags
تنزيلات ربع سنوية 1 (Ranked 95th)
ترجم الامتداد EditSubpages لو كان متوفرا على translatewiki.net
Category:All extensions/ar

يقيد امتداد EditSubpages المستخدمين غير المسجلين من تعديل أغلب الصفحات. يمكن لإداري النظام (أو أي مجموعة تحمل تصريح 'editinterface') إضافة الصفحات إلى "MediaWiki:Unlockedpages" كي يسمح بتعديل الصفحات دون حساب مسجل.

الاستخدام

Add pages to be unlocked to MediaWiki:Unlockedpages in a bulleted list (they may be links). Any line that isn't part of a bulleted list is treated as a comment. Example:

* Unlocked page 1
# Comment. Note that declaring the namespace matters
* Help:Unlocked page 2
* Talk:Unlocked page 3
 This is a comment too :). Unlike page 1, which has both the subject and talk page unlocked, page 3 only has an unlocked talk page.
* Unlocked page 4/subpage
# this will only unlock subpages of this subpage, so page 4 itself uneditable by anons.

This will allow anonymous users (or any user lacking the 'edit' permission) to edit that page and all subpages of it (e.g. Unlocked page 1, Unlocked page 1/Subpage, etc.), as well as their respective talk pages. If you declare a talk page, it will not make the respective subject page editable. To prevent talk pages from being edited but allow the subject pages to be, simply protect the talk page.

This will also allow the anonymous users to create new pages that are sub-pages of the unlocked page.

نحو برمجي موسع

The extended syntax (also known as flags), allows you to control exactly how each unlocked page works. The way of utilizing this is as follows:

* Unlocked page|flags|alternate text (optional, useful if you are using links)
# ex:
* [[Somepage/sub/subpage|+b-t|unlocks base pages but does not unlock talk pages]]
* HELLO|+in-c
# The above unlocks HELLO, Hello, Help:Hello, User:HEllO, etc. but does not allow creation of new pages
قائمة الوسوم (* = مفعل افتراضيا)
الوسم بيان الوسم بيان
+s*Unlocks subpages of the page-sDoes not unlock subpages of the page
+bUnlocks basepages of the page-b*Does not unlock basepages of the page
+uApply these restrictions to both users and anons-u*Only apply these restrictions to anons
+c*Allow creation of new pages-cDo not allow creation of new pages
+t*Unlock the talk page as well-tDo not unlock the talk page as well
+e*Allow editing of unlocked pages-edo not allow editing of unlocked pages
+iCase insensitive-i*case sensitive
+nNamespace inspecific-n*Namespace specific
+rTreated as a regex fragment-r*Treated as a string
+wAllow wildcards * and ?-w*Does not allow wildcards
+w does not work with +r set.
* means "0 or more characters", ? means "0 or 1 characters"
Character classes are denoted with square brackets, such as [ae] to match a or e
Negate a character class with !, e.g. [!ae] to match everything except a or e
Literal *, ?, [, and ] must be escaped with \ (like \* and \?. \\ produces a literal backslash)

المحاذير

  • This extension goes down the list in order and stops when it reaches the first match. As such, it is impossible to have multiple conditions for a single page/group of pages.
  • The +r flag has an implicit ^ and $ before and after the fragment, respectively. This means if you want it only to match part of a title, you will need to use ".*title.*" and not just "title." (Former parses to /^.*title.*$/, latter to /^title$/)
  • The extension's require_once either needs to be after you configure $wgGroupPermissions on your LocalSettings.php file, or you need to make sure that '*' is allowed to 'edit', 'createpage', and 'createtalk', or the extension will not work as expected.
  • The +u flag applies to all logged-in users, no matter what groups they are in (aka sysops are not exempt). As such, it is possible to lock yourself out of the list of unlocked pages until you disable the extension.

التنصيب

  • نزّل الملف/الملفات وضعها في دليل يحمل اسم ‎EditSubpages داخل مجلد ‎extensions/‎ لديك.
    يجب على مطوري البرمجيات والمساهمين بالكود البرمجي تثبيت الامتداد من غت بدلا من ذلك، مستخدمين:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/EditSubpages
  • أضف الكود التالي في الجزء الأسفل من ملف LocalSettings.php :
    wfLoadExtension( 'EditSubpages' );
    
  • Configure at your convenience
  • Yes تم التنفيذ – اذهب إلى Special:Version على موقع الويكي لديك كي تتحقق من أن الامتداد قد ثبت بنجاح.

الإعداد

As of version 3.1, it is possible to modify what the default flags are via $wgEditSubpagesDefaultFlags. This can either be a string in the format +blah-blah, like MediaWiki:Unlockedpages, or in an array format where flags are the keys and the value is true if it should be set by default, and false if it should be unset by default.

سجل التغييرات

Version
3.5 Convert to use extension registration. Now requires MediaWiki 1.29+
3.4 Fix fatal error in certain page/flag combinations. Expand functionality of the wildcard flag (+w) to include character classes and negated character classes.
3.3 Move to new JSON i18n format. Now requires PHP 5.3+.
3.2 Fix EditSubpages so that it actually successfully unlocks pages.
3.1 Made flags parsing more flexible, so you can have stuff like "-blah" or "+a+s+d+f", fixed error when trying to view special pages on certain versions of MediaWiki. Added $wgEditSubpagesDefaultFlags variable.
3.0 Added flags feature for finer control over the behavior of unlocked pages.
2.2 Fixed bug that did not allow anonymous users to save unlocked pages.
2.1 Fixed author field in the extension credits.
2.0 Switched to using userCan hook. Fixed namespace issue. Fixed incompatibility with Extension:ConfirmAccount. Now works for versions of MediaWiki 1.6.0+
1.2.2 Fixed major bug that did not unlock Talk pages when they were explicitly declared. If you have any earlier version, please upgrade to this version for correct functionality!
1.2.1 Fixed major bug that prevented any pages from being unlocked. If you have version 1.2, upgrade to this version!
1.2 Used strpos instead of regex for faster processing and less memory usage. Bugfixes. Moved into Subversion
1.1 Added ability to use comments and talk pages are now unlocked as well.
1.0 Initial creation
Category:All extensions/ar Category:Extensions in Wikimedia version control/ar Category:Extensions included in Miraheze/ar Category:Extensions included in WikiForge/ar Category:Extensions with manual MediaWiki version Category:GPL licensed extensions/ar Category:GetUserPermissionsErrors extensions/ar Category:Stable extensions/ar Category:User rights extensions/ar