এক্সটেনশন:উইকিএডিটর

This page is a translated version of the page Extension:WikiEditor and the translation is 33% complete.
এই এক্সটেনশনটি মিডিয়াউইকি 1.18 ও তার উপরের সংস্করণের সাথে আসে। তাই আপনাকে এটি আবার ডাউনলোড করতে হবে না। তবে, আপনাকে এখনও অন্যান্য প্রদত্ত নির্দেশাবলী অনুসরণ করতে হবে।
মিডিয়াউইকি এক্সটেনশন ম্যানুয়াল
WikiEditor
মুক্তির অবস্থা: স্থিতিশীল
বিবরণ Provides an extendable wikitext editing interface and many feature-providing modules
লেখক(গণ)
সর্বশেষ সংস্করণ নিয়মিত আপডেট
MediaWiki >= 1.42.0
লাইসেন্স গ্নু জেনারেল পাবলিক লাইসেন্স ২.০ অথবা পরবর্তী
ডাউনলোড
README
উদাহরণ পরীক্ষা উইকিপিডিয়া
  • $wgWikiEditorRealtimePreview
  • $wgWikiEditorRealtimePreviewDebounce
  • $wgWikiEditorRealtimeDisableDuration
Quarterly downloads 638 (Ranked 7th)
Public wikis using 13,753 (Ranked 9th)
Translate the WikiEditor extension if it is available at translatewiki.net
Issues Open tasks · বাগ প্রতিবেদন

The WikiEditor extension provides an improved interface (primarily a toolbar) for editing wikitext. It is the wikitext editing interface that Wikipedia started using in 2010 for desktop users, and so it is sometimes called the 2010 wikitext editor.


ইনস্টল প্রক্রিয়া

  • ডাউনলোড করুন এবং আপনার extensions/ ফোল্ডারের WikiEditor নামক ডিরেক্টরিতে ফাইল(গুলি) নিন।
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
  • আপনার LocalSettings.php -এর নিচের অংশে নিম্নলিখিত কোড যোগ করুন:
    wfLoadExtension( 'WikiEditor' );
    
  •   করা হয়েছে – এক্সটেনশনটি সফলভাবে ইনস্টল করা হয়েছে কিনা তা যাচাই করতে আপনার উইকির Special:Version-এ যান।

কতিপয় ক্ষেত্রে, উইকিএডিটর ইনস্টলেশনের পরে আপনার ব্রাউজারে প্রদর্শিত নাও হতে পারে। আপনার ব্রাউজারের ক্যাশ সাফ করলে সমস্যার সমাধান হবে।

Note for IIS setup: By default, IIS doesn't understand .svg files. WikiEditor uses them to represents the icons. To fix this, you have to add the MIME type.

কনফিগারেশন

সরঞ্জামদণ্ড সক্রিয়/নিষ্ক্রিয় করা

No configuration is needed "out of the box". By default, when installed this extension will be available to all users, and logged-in users can disable it from their preferences via the "সম্পাদনা সরঞ্জামদণ্ড সক্রিয় করুন" option (under the "সম্পাদনা" tab).

If you wish all users to have it, and be unable to disable it, add it to $wgHiddenPrefs in your LocalSettings.php :

$wgHiddenPrefs[] = 'usebetatoolbar';
মিডিয়াউইকি সংস্করণ:
1.31

If you are using a version before REL1_31 and would want the toolbar to be default for users when they first join, add this line to your LocalSettings.php:

$wgDefaultUserOptions['usebetatoolbar'] = 1;

Realtime Preview

মিডিয়াউইকি সংস্করণ:
1.39

Enable the Realtime Preview feature with the following:

$wgWikiEditorRealtimePreview = true;

Signature button

The button for adding user signatures (four tildes) is available on talk pages and in namespaces specified in $wgExtraSignatureNamespaces .

ইতিহাস

The extension used to provide "Labs" features for "publication" and "preview" steps, but these were removed from REL1_31 onwards.

আরও দেখুন

  • RefToolbar 2.0, on-wiki JavaScript that adds a Cite template tools to WikiEditor's UI.