Jump to content

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

From mediawiki.org
This page is a translated version of the page Extension:WikiEditor and the translation is 27% complete.
মিডিয়াউইকি এক্সটেনশন ম্যানুয়াল
WikiEditor
মুক্তির অবস্থা: স্থিতিশীল
বিবরণ Provides an extendable wikitext editing interface and many feature-providing modules
লেখক(গণ)
সর্বশেষ সংস্করণ নিয়মিত আপডেট
MediaWiki >= 1.46
লাইসেন্স গ্নু জেনারেল পাবলিক লাইসেন্স ২.০ অথবা পরবর্তী
ডাউনলোড
README
উদাহরণ পরীক্ষা উইকিপিডিয়া
  • $wgWikiEditorRealtimePreviewDebounce
  • $wgWikiEditorRealtimePreview
  • $wgWikiEditorRealtimeDisableDuration
ট্রানশলেটউইকি.নেট-এ উপলভ্য থাকলে WikiEditor বর্ধনাংশটি অনুবাদ করুন
Issues উন্মুক্ত কাজ · বাগ প্রতিবেদন

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.

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

This extension comes with MediaWiki 1.18 and later, so you do not need to download it. The remaining configuration instructions must still be followed.
  • ডাউনলোড করুন এবং আপনার 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' );
    
  • Yes করা হয়েছে – এক্সটেনশনটি সফলভাবে ইনস্টল করা হয়েছে কিনা তা যাচাই করতে আপনার উইকির Special:Version-এ যান।

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

Note for IIS setup: By default, IIS doesn't understand .svg files. WikiEditor uses them to represent 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 file:

$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

This configuration parameter defaults to true starting with version 1.41.0 of MediaWiki.
মিডিয়াউইকি সংস্করণ:
1.41

Realtime Preview is enabled by default. Disable the Realtime Preview feature with the following:

$wgWikiEditorRealtimePreview = false;
মিডিয়াউইকি সংস্করণ:
1.39 – 1.40

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 .

আরও দেখুন

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