Changes

Jump to navigation Jump to search
Səhifəni '/** * Core of the EditToolbar * From https://bg.wikipedia.org/wiki/МедияУики:Gadget-EditToolbar-core.js * Some functions and arrays are still bound to window f...' ilə yarat
/**
* Core of the EditToolbar
* From https://bg.wikipedia.org/wiki/МедияУики:Gadget-EditToolbar-core.js
* Some functions and arrays are still bound to window for backwards compatibility
*/

/**
* insert an edit toolbar before the textarea.
*/
window.putToolbar = function(rightNow) {
var toolbar = $('<div>', {'class': 'custom-toolbar'});
var putIt = function() {
var $advisorDiv = $("#advisorSuggestions");
var $monobookToolbar = $("#monobooktoolbar");
if ($monobookToolbar.length > 0) {
$monobookToolbar.before(toolbar);
} else if ($advisorDiv.length > 0) {
$advisorDiv.before(toolbar);
} else {
$("#editform").before(toolbar);
}
};
if ( window.rightNow ) {
putIt();
} else {
$(putIt);
}
return toolbar;
};

mw.libs.EditToolbar = {};
var self = mw.libs.EditToolbar;

mw.messages.set({
"et-addchar": "Вмъкване на знака „$1“",
"et-addpref": "Вмъкване на $1",
"et-ddmenutitle": "Оттук можете да вмъкнете празен шаблон",
"et-ajaxerror": "Шаблонът [[$1]] не можа да бъде зареден."
});

/* * * Drop down menus from Gadget-EditToolbar-menu-... for template insertion * * */

window.tpl = [];
window.atpl = [];
window.atplBasePath = "MediaWiki:Gadget-EditToolbar/";
window.showMenus = true;
window.showButtons = true;
/*
* Backward compatibility: load all tpl/atpl{i} that may have been defined in users' JS.
* Load at most 10 menus; also a safety check to prevent unexpected endless loops.
*/
function loadUserMenus( menuVarBaseName, globalMenuArray ) {
var menuVar;
var userMenu;
for ( var i = 1; i <= 10; i++ ) {
menuVar = menuVarBaseName + i;
eval("userMenu = typeof(" + menuVar + ") == 'object' ? " + menuVar + " : null");
// Only consecutively named menus are supported, as we exit on first undefined one.
if ( userMenu !== null ) {
globalMenuArray.push( userMenu );
}
}
}
loadUserMenus( "tpl", tpl );
loadUserMenus( "atpl", atpl );

/* * * Extra buttons for text insertion * * */

/** add some buttons and drop-down menus */
function setupCustomEditTools() {
if ( !$("#editform").length ) {
return;
}

mw.loader.using("ext.gadget.MwToolbar", function(){
var i;
var toolbar = putToolbar(true);
toolbar.addClass("buttonlinks");
if ( showMenus ) {
// drop-down menus inserting text put direct in the javascript
for ( i = 0; i < tpl.length; i++) {
appendDropDownMenu(toolbar, tpl[i], insertIntoWikiText, "ddmenu_tpl" + i);
}
// drop-down menus inserting content from wiki pages
for ( i = 0; i < atpl.length; i++) {
appendDropDownMenu(toolbar, atpl[i], loadPage, "ddmenu_atpl" + i);
}
}
if ( showButtons ) {
appendCustomButtons(toolbar);
}
});
}

mw.loader.using("user", function(){
setupCustomEditTools();
});

function appendCustomButtons(parent) {
var buts = $('<div>', { id: "custombuttons" });
for (var i in self.customInsButtons) {
var el = self.customInsButtons[i];
if (!el) {
continue;
}
var title, href, html;
if (el.length > 3) { // an Insert button
href = "javascript:mw.libs.toolbar.insertTags('"+el[0] +"','"+el[2]+"','"+ el[1]+"')";
title = el[4];
html = el[3];
} else { // a general button
href = "javascript:"+el[0];
title = el[2];
html = el[1];
}

if ( title.charAt(0) == "+" ) {
title = mw.msg("et-addpref", [title.substr(1)]);
}
appendCustomButton(buts, {
href: href,
title: title,
html: html
});
}
parent.append(buts);
}

function appendCustomButton(box, item) {
box.append($('<a>', item), ' ');
}

/** generates a drop-down menu */
function appendDropDownMenu(parent, content, callback, id) {
var box = $('<select>', {
id: id,
title: mw.msg("et-ddmenutitle")
}).on('change', function() {
if (this.value != "-") {
callback(this.value);
this.selectedIndex = 0;
}
return;
});
if ( appendOptions(box, content) > 1 ) {
parent.append(box);
}
}

function appendOptions(box, opts) {
var count = 0;
for (var i in opts) {
if (opts[i] == "") {
continue; // skip emtpy entries
}
if (typeof opts[i] == "object") {
var g = $('<optgroup>', {label: i});
for (var k in opts[i]) {
$('<option>', { value: opts[i][k], text: k }).appendTo(g);
}
box.append(g);
} else {
$('<option>', { value: opts[i], text: i }).appendTo(box);
}
count++;
}
return count;
}

/* * * * * * * * * * Ajax functions * * * * * * * * * */

function loadPage(page) {
showLoadIndicator();
var pageUrl = mw.util.getUrl(page, { action: 'raw', templates: 'expand' });
$.get(pageUrl)
.done(insertIntoWikiText)
.fail(function() {
alert(mw.msg('et-ajaxerror', [page]));
}).always(function() {
hideLoadIndicator();
});
}

function insertIntoWikiText(content) {
// delete text marked for no inclusion + <pre> and <nowiki>
var re = /<!--noinclude-->.*<!--\/noinclude-->|<\/?pre>|<\/?nowiki>/g;
content = content.replace(re, "");
// replace escaped tags
var specials = ['pre', 'nowiki'];
for (var i in specials) {
re = new RegExp("\\[(\/?)"+ specials[i] +"\\]", "g");
content = content.replace(re, "<$1"+ specials[i] +">");
}

// we can have >>|sample text|<< or >>|<< or just simple text
var parts = null;
var left, right, def = '';
content = escapeNl(content);
if ( ( parts = content.match(/(.*)>>\|(.*)\|<<(.*)/) ) ) {
left = parts[1];
def = parts[2];
right = parts[3];
} else { // no sample text: split at caret’s position
parts = content.split('>>|<<');
left = parts[0];
delete(parts[0]);
right = parts.join('');
}
mw.libs.toolbar.insertTags(unescapeNl(left), unescapeNl(right), unescapeNl(def));
}

function escapeNl(s) {
return s.replace(/\n/g, "\x01");
}
function unescapeNl(s) {
return s.replace(/\x01/g, "\n");
}

var $loadIndicator;
function showLoadIndicator() {
if (!$loadIndicator) {
$loadIndicator = $('<div class="mw-ajax-loader"/>')
.css({
position: 'absolute',
top: $('#wpTextbox1').offset().top + 10,
left: '50%'
})
.hide()
.appendTo('body');
}
$loadIndicator.fadeIn();
}
function hideLoadIndicator() {
if ($loadIndicator) {
$loadIndicator.hide();
}
}

/* * * * * * * * * * Misc buttons * * * * * * * * * */

// if the cursor is within a wikilink or immediately after it,
// or if text is selected within the link, or including only one link, this function
// returns the index of the first [ and the index of the following ]] + 2,
// as well as the whole link text starting with [[ and ending with the closing ]]
self.findFocusedLink = function (text, selStart, selEnd) {
var start = text.lastIndexOf('[[', selEnd - 1);
if (start == -1 || text.slice(start + 2).match(/^(File|Image|Файл|Картинка)/i)) return null;

var end = text.indexOf(']]', selStart - (selStart == selEnd ? 2 : 1)) + 2;
if (end == -1 || start > end) return null;

if (text.slice(start+2, end-2).match(/\[\[|\]\]/)) return null;

return {start: start, end: end, sel: text.slice(start, end)};
};

self.linkWithAddrAndLabel = function () {
// en:Wikipedia:Page_name#Invalid_page_names :
var wikiLinkIllegalChars = /[\[\]{}<>|\u0000-\u001f\u007f\ufffd]/;

var indexOfWithDefault = function (str, searchStr, defaultVal, from) {
var index = str.indexOf(searchStr, (from || 0));
return (index > -1 ? index : defaultVal);
};

var $ta = $('#wpTextbox1');
var caretPos = $ta.textSelection( 'getCaretPosition', {startAndEnd: true} );
var text = $ta.val().replace(/\r/g, ''); // old IE returns new lines as \r\n
var sel, start, end;
var linkObj = self.findFocusedLink(text, caretPos[0], caretPos[1]);

if (linkObj) {
start = linkObj.start;
end = linkObj.end;
sel = linkObj.sel;
}
else {
start = caretPos[0];
end = caretPos[1];
sel = text.slice(caretPos[0], caretPos[1]);
}

if (linkObj) { // if cursor before 1st space in address -> move before 1st space in link label
var indexOfBar = sel.indexOf('|');
if (indexOfBar > -1) {
var indexOf1stSpace = indexOfWithDefault(sel, ' ', indexOfBar);
if (caretPos[0] == caretPos[1] && caretPos[0] == start + indexOf1stSpace) {
var firstSpaceInLabel = indexOfWithDefault(sel, ' ', sel.length - 2, indexOfBar);
var newPos = start + firstSpaceInLabel;
$ta.focus().textSelection('setSelection', {start: newPos, end: newPos});
return;
}
}
}

var selTrimmed = sel.replace(/^ *(\[\[)? *| *(\]\])? *$/g, '').replace(/_+| +/g, ' ');
var linkAddr = selTrimmed.replace(/\u00a0|&nbsp;/g, ' '); // not necessary

if (wikiLinkIllegalChars.test(linkAddr)) { $ta.focus(); return; }

var spacesLeft = (sel.match(/^ +[^ ]/) || [' '])[0].slice(0, -1); // none if only spaces in string
var spacesRight = (sel.match(/ +$/) || [''])[0];
var firstSpaceIndex = indexOfWithDefault(linkAddr, ' ', linkAddr.length);
var newCaretPos = start + spacesLeft.length + 2 + firstSpaceIndex;
var wScrollTop = $(window).scrollTop(); // Chromium scrolls the page and textarea
var taScrollTop = $ta.scrollTop();
$ta.val( text.slice(0, start)
+ spacesLeft + '[[' + linkAddr + '|' + selTrimmed + ']]' + spacesRight
+ text.slice(end)
).focus().textSelection('setSelection', {start: newCaretPos, end: newCaretPos}).scrollTop(taScrollTop);
$(window).scrollTop(wScrollTop);
};

self.graveAccent = function () {
var $ta = $('#wpTextbox1');
var val = $ta.val().replace(/\r/g, ''); // old IE returns new lines as \r\n
var caretPos = $ta.textSelection( 'getCaretPosition', {startAndEnd: true} );
var prevCharPos = caretPos[1] - 1;
if (prevCharPos < 0) {$ta.focus(); return;}
var prevChar = val[prevCharPos];
if (prevChar == 'и' || prevChar == 'й') result = 'ѝ';
else result = prevChar + '&#768;'
val = val.slice(0, prevCharPos) + result + val.slice(prevCharPos + 1);
var newCarretPos = prevCharPos + result.length;
var wScrollTop = $(window).scrollTop(); // Chromium scrolls the page and textarea
var taScrollTop = $ta.scrollTop();
$ta.val(val).focus().textSelection('setSelection', {start: newCarretPos, end: newCarretPos}).scrollTop(taScrollTop);
$(window).scrollTop(wScrollTop);
}

self.mkList = function (numbered) {
function linesMatchRE(ls, re) {
return ls[0].match(re) !== null && ls[1].match(re) !== null && re;
}

var $ta = $('#wpTextbox1');
var sel = $ta.focus().textSelection('getSelection');
var lines = sel.replace(/<br\/?>/gi, '\n').replace(/^[ \t•]+|[ \t]+$/mg, '')
.replace(/(\r?\n)+/g, '\n').split('\n');
var numLineRE = /^\d+\. */;
var numSignLineRE = /^# */;
var asteriskLineRE = /^\* */;
var removeRE;
var rmFirstLn = lines.length > 1 && lines[0] === '';
var rmLastLn = lines.length > 1 && lines[lines.length - 1] === '';

if (rmFirstLn) lines.shift(); // don't add * or # to first line if it's blank
if (rmLastLn) lines.pop(); // same for last line
if (lines.length > 1) // which regex to apply to rm chars from start of each line:
removeRE = linesMatchRE(lines, numLineRE)
|| (numbered && linesMatchRE(lines, asteriskLineRE)) // if adding # and ln start w/ *, rm *
|| (!numbered && linesMatchRE(lines, numSignLineRE))
if (!removeRE) removeRE = /^ +/;

for (var l, noSpace, i = lines.length - 1; i >= 0; i--) {
l = lines[i];
l = l.replace(removeRE, '');
noSpace = l.match(/^[*#]/) || sel === '';
lines[i] = (numbered ? '#' : '*') + (noSpace ? '' : ' ') + l;
}
if (rmFirstLn) lines.unshift('');
if (rmLastLn) lines.push('');
$ta.focus().textSelection('encapsulateSelection', {pre: lines.join('\n'), peri: '', post: '', replace: true});
}

/* * * * * * * * * * Wikificator functions * * * * * * * * * */

var txt; // текста, който ще се обработва от Уикификатора

// BEGIN код от [[:ru:MediaWiki:Summary]], вижте [[:ru:MediaWiki:Wikificator.js]], [[:ru:Википедия:Викификатор]]
self.obrabotka = function(bds) {
check_regexp();//Проверяем поддерживаются ли рег. выражения
document.editform.wpTextbox1.focus();
var txtarea = document.editform.wpTextbox1;
if(document.selection && !is_gecko)/* IE*/ {
txt = " "+document.selection.createRange().text;
if (txt == " ") {all_text(bds);} //Если ничего не выделено
else{
zamena(bds);
txt = txt.substr (1, txt.length-1);
document.selection.createRange().text = txt;
}
} else if (txtarea.selectionStart || txtarea.selectionStart == '0') {
var startPos = txtarea.selectionStart;
var endPos = txtarea.selectionEnd;
var scrollTop=txtarea.scrollTop;
txt = " "+(txtarea.value).substring(startPos, endPos);
if (txt == " ") {all_text(bds);} //Если ничего не выделено
else{
zamena(bds);
txt = txt.substr (1, txt.length-1);
txtarea.value = txtarea.value.substring(0, startPos) + txt + txtarea.value.substring(endPos, txtarea.value.length);
txtarea.focus();
}
} else if (confirm("Уикификатор ще обработи ЦЕЛИЯ текст в статията. Да продължи ли?")) {
all_text(bds); // Прочие браузеры
}
}


function all_text(bds) { //Обрабатываем текст целиком
txt = " "+document.editform.wpTextbox1.value;
zamena(bds);
txt = txt.substr (1, txt.length-1);
document.editform.wpTextbox1.value=txt;
}


function check_regexp() { //Проверяем поддерживаются ли рег. выражения
if ("код".replace(/д/g, "т") != "кот"){
alert("Уикификатор не може да работи с вашия браузър");exit;
}
var b_ver=navigator.appVersion.substr(0, 1);
if (navigator.appName=="Netscape"&&b_ver<5){
alert("Уикификатор не може да работи с браузър Netscape 4.x или по-стари версии");exit;
}
}

function zamena(bds) {
if (bds) { zamena_5ko(); return; }

// Заменяем теги <b>, <strong> и <i>, <em> на ''' и ''
txt = txt.replace(/\<\/?(b|strong)\>/g, "\'\'\'");
txt = txt.replace(/\<\/?(i|em)\>/g, "\'\'");

// Замяна на всяко "ù" с "и&#768;"
txt = txt.replace(/ù/g, "и&#768;");

//Исключаем из обработки всё, что находится между тегами <nowiki> и </nowiki>
i_nowiki=0;
a_nowiki=txt.match(/\<nowiki\>(.+)\<\/nowiki\>/g)
r_nowiki=/\<nowiki\>(.+)\<\/nowiki\>/;
while (r_nowiki.test(txt))
{
i_nowiki++;
txt = txt.replace(r_nowiki, "\x03"+i_nowiki+"\x04");
}

//Исключаем из обработки всё, что находится между тегами <math> и </math>
i_math=0;
a_math=txt.match(/\<math\>(.+)\<\/math\>/g)
r_math=/\<math\>(.+)\<\/math\>/;
while (r_math.test(txt))
{
i_math++;
txt = txt.replace(r_math, "\x05"+i_math+"\x06");
}

//Исключаем из обработки строки, начинающиеся с пробела
f_space=txt.substr (0, 1);
txt = txt.substr (1, txt.length-1);
i_space=0;
a_space=txt.match(/^( )(.+)$/mg)
r_space=/^( )(.+)$/m;
while (r_space.test(txt))
{
i_space++;
txt = txt.replace(r_space, "\x07"+i_space+"\x08");
}
txt=f_space+txt;

//Исключаем всё между [[ и ]]
i_links=0;
a_links=txt.match(/(\[\[)(.*?)(\]\])/g)
r_links=/(\[\[)(.*?)(\]\])/;
while (r_links.test(txt))
{
i_links++;
txt = txt.replace(r_links, "\x15"+i_links+"\x16");
}

//Исключаем из обработки весь текст в кавычках после знака "="
i_equal=0;
a_equal=txt.match(/(=)(\s?)(\")(.*?)(\")/g)
r_equal=/(=)(\s?)(\")(.*?)(\")/;
while (r_equal.test(txt))
{
i_equal++;
txt = txt.replace(r_equal, "\x11"+i_equal+"\x14");
}

//Заменяем обычными кавычками сочетания << и >>.
txt = txt.replace(/(\<|\>|\&[lg]t;)\1/g, "\"");

//Исключаем из обработки прочие HTML-теги ("<" и ">")
i=0;
a=txt.match(/<([^>]*)>/g)
r=/<([^>]*)>/;
while (r.test(txt))
{
i++;
txt = txt.replace(r, "\x01"+i+"\x02");
}

//Заменяем правильные символы на неверные, чтобы ничего не пропустить
txt = txt.replace(/–/g, "-");
txt = txt.replace(/(«|»|“|”|„|\&((la|ra|bd|ld)quo|#132|#147|#148|quot);)/g, "\"");

// Заменяем "...", &hellip; и &#133; на многоточие
txt = txt.replace(/(\.{3}|\&(hellip|#133);)/g, '…');

// Обработчик знака градуса и "+-"
txt = txt.replace(/(\+[--])/g, "±");
txt=txt.replace(/([\s\>\(\*\"]|^)\-([0-9\.\,]+)\s?\^?\s?([FC])(?=[\s\"\.\,;\<]|$)/g, "$1-$2\u00A0\u00B0$3");
txt=txt.replace(/([\s\>\(\*\"]|^)\+([0-9\.\,]+)\s?\^?\s?([FC])(?=[\s\.\,;\<\"]|$)/g, "$1+$2\u00A0\u00B0$3");
txt=txt.replace(/([\s\>\(\*\"]|^)\±([0-9\.\,]+)\s?\^?\s?([FC])(?=[\s\.\,;\<\"]|$)/g, "$1±$2\u00A0\u00B0$3");
txt=txt.replace(/\&deg;/g, "\u00B0");

// Обработчик минуса
txt=txt.replace(/([sup\>|sub\>|\s])(-)(\d)/g, "$1-$3");
txt = txt.replace(/(\d )(-)( \d)/g, "$1-$3");

// Заменяем кавычки
//(") с „“
txt = txt.replace(/([\x01-(\s\|\"])(\")([^\"]{0,})([^\s\"(])(\")/g, "$1„\$3\$4“");
// Кавычки внутри кавычек
if (/"/.test(txt))
{
txt = txt.replace(/([\x01(\s\"])(\")([^\"]{0,})([^\s\"(])(\")/g, "\$1„\$3\$4“");
while (/(„)([^“]*)(„)/.test(txt))
txt = txt.replace(/(„)([^“]*)(„)([^“]*)(“)/g, "\$1\$2«\$4»");
}

// Заменяем " - " на тире
txt = txt.replace(/(&nbsp;|\s)-{1,2} /g,'$1\u2013 ');
txt = txt.replace (/^- /g,"\u2013 ");
txt = txt.replace(/(\d)--(\d)/g, "$1–$2");
txt = txt.replace(/(^|\s)(\d{4})-(\d{4})($|\s|\.|,)/mg, "$1$2–$3$4");
txt = txt.replace(/(^|\s)([IVXLCDM]+)-([IVXLCDM]+)($|\s|\.|,)/img, "$1$2–$3$4");
txt = txt.replace(/-- /g, "— ");

// Спец-значки ©, ®, ™, § и €.
txt = txt.replace(/(\((c|с)\)|\&copy;)/gi, "©");
txt = txt.replace(/(\(r\)|\&reg;)/gi, "®");
txt = txt.replace(/(\((tm|тм)\)|\&trade;)/gi, "™");
txt = txt.replace(/(\(p\)|\&sect;)/gi, "\u00A7");
txt = txt.replace (/\&euro;/gi, "€");

// Вставляем пропущенные и убираем лишние пробелы
txt=txt.replace(/([А-Я]\.)([А-Я]\.)([А-Я][а-я])/g, "$1 $2 $3");
txt=txt.replace(/([А-Я]\.)([А-Я]\.)/g, "$1 $2");
txt=txt.replace(/^([#\*])([\*#]*)([\[\"\(\„\w\dа-яё])/mg, "$1$2 $3");
txt=txt.replace(/^(=+)([^\s^=])([^=]+)([^\s^=])(=+)/mg, "$1 $2$3$4 $5");
txt=txt.replace(/([а-я])(\.)([А-Я])/g, "$1$2 $3");
txt = txt.replace(/([а-яa-z\)\»\“\"\]])(\s*)(\,)([а-яa-z\(\«\„\"\[])/g, "$1$3 $4");
txt = txt.replace(/([а-яa-z\)\»\“\"\]])(\s)([\,\;])(\s)([а-яa-z\(\«\„\"\[])/g, "$1$3 $5");
txt = txt.replace(/(\d)(\s)([%‰])/g, "$1$3");

//Возвращаем обратно строки, начинающиеся с пробела.
i_space=0;
r_space=/\x07([0-9]*)\x08/;
while (r_space.test(txt))
{
i_space++;
txt = txt.replace(r_space, a_space[i_space-1]);
}

//Возвращаем обратно всё, что было между тегами "math".
i_math=0;
r_math=/\x05([0-9]*)\x06/;
while (r_math.test(txt))
{
i_math++;
txt = txt.replace(r_math, a_math[i_math-1]);
}

//Возвращаем обратно всё, что было между тегами "nowiki".
i_nowiki=0;
r_nowiki=/\x03([0-9]*)\x04/;
while (r_nowiki.test(txt))
{
i_nowiki++;
txt = txt.replace(r_nowiki, a_nowiki[i_nowiki-1]);
}

//Возвращаем обратно HTML-теги ("<" и ">")
i=0;
r=/\x01([0-9]*)\x02/;
while (r.test(txt))
{
i++;
txt = txt.replace(r, a[i-1]);
}

//Возвращаем обратно текст между [[ и ]]
i_links=0;
r_links=/\x15([0-9]*)\x16/;
while (r_links.test(txt))
{
i_links++;
txt = txt.replace(r_links, a_links[i_links-1]);
}

//Возвращаем обратно текст в кавычках после знака "="
i_equal=0;
r_equal=/\x11([0-9]*)\x14/;
while (r_equal.test(txt))
{
i_equal++;
txt = txt.replace(r_equal, a_equal[i_equal-1]);
}
}

// END код от [[:ru:MediaWiki:Summary]]


function zamena_5ko() {
//Исключаем из обработки всё ("<" и ">") &#x463;&#1586; bgmaps и др.
var r=/(?:(\b([0-1]?[0-9]|2[0-4])\.(?:00|30)\b)|(?:\<nowiki\>.+?\<\/nowiki\>)|(\<math\>.+?\<\/math\>)|(&#x?[0-9a-f]+;)|(<([^>]*)>)|(=\s?'.*?')|(=\s?".*?")|(\[\[[^\[\]]+\]\])|((bgmaps|sat)=.*$)|(\[[a-z]+:\/\/[^\]]+\])|\b[a-z0-9\._-]+@[a-z0-9\.-]+)/gmi;
// Руснаците са хитри, ама ние сме по-хитри:
var a_petko=txt.match(r);
txt = txt.replace(r, "\x03\x04\x05");

r=/\d+,\d+,\d[\d,]*/g;
var a_zlatko = txt.match(r); var i=0;
while (r.test(txt)) { txt = txt.replace(r, a_zlatko[i++].replace(/,/g, '')); }

// Разделяне:
r=/([=-]?[^,\.\w][1-9]\d*)(\d{3}\b)/gm;
while(1)
{
var old = txt;
txt=txt.replace(r, "$1 $2");
if(old == txt) break;
}

// Разделител на хилядите:
r=/(\d) (\d\d\d(?:\D|$))/gm;
while(1)
{
var old = txt;
txt=txt.replace(r, "$1\u00a0$2");
if(old == txt) break;
}

// Десетична точка:
r=/(\d)\.(\d+(?:[-\D\n\r]|$))/gm;
txt=txt.replace(r, "$1,$2");

// Край.
// Ако е четирицифрено, се пише слято:
r=/(\b\d)\u00a0(\d\d\d(?:[^\d&]|$))/gm;
txt=txt.replace(r, "$1$2");

// Всичко обратно:
i=0;
r=/\x03\x04\x05/;
while (r.test(txt))
{
txt = txt.replace(r, a_petko[i++]);
}
}
// vim: set ts=8 sts=8 sw=8 noet:

Naviqasiya menyusu