Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Как изменить в XML файле нужный параметр?
-
Подскажите пожалуйста, как изменить какой либо вложенный параметр с определенной фильтрацией внутри XML файла?
Например изменить параметр Value с 1 на 5, в секции с <Name>Кол-во потоков</Name>.
<?xml version="1.0" encoding="UTF-8"?> <BrowserAutomationStudioProject> <OutputVisible9>1</OutputVisible9> <ModelList> <Model> <Name>Кол-во потоков</Name> <Description en="Кол-во потоков" ru="Кол-во потоков"/> <SectionName en="Основные" ru="Основные"/> <VisibilityConditionValue></VisibilityConditionValue> <VisibilityConditionVariable></VisibilityConditionVariable> <Type>FixedInteger</Type> <IsAdvanced>0</IsAdvanced> <Visible>1</Visible> <Enabled>1</Enabled> <AllowedTypes>FixedInteger</AllowedTypes> <Value>1</Value> <MinValue>-99999999</MinValue> <MaxValue>99999999</MaxValue> </Model> <Defaults/> <Model> <Name>Сколько ссылок</Name> <Description en="Сколько ссылок" ru="Сколько ссылок"/> <SectionName en="Сбор ссылок" ru="Сбор ссылок"/> <VisibilityConditionValue>Автоматически</VisibilityConditionValue> <VisibilityConditionVariable>Откуда брать ссылки</VisibilityConditionVariable> <Type>FixedInteger</Type> <IsAdvanced>0</IsAdvanced> <Visible>1</Visible> <Enabled>1</Enabled> <AllowedTypes>FixedInteger</AllowedTypes> <Value>1400</Value> <MinValue>-99999999</MinValue> <MaxValue>99999999</MaxValue> </Model> <Defaults/> </ModelList> </BrowserAutomationStudioProject> -

-
-
@Anton said in Как изменить в XML файле нужный параметр?:
Подскажите пожалуйста, как изменить какой либо вложенный параметр с определенной фильтрацией внутри XML файла?
Например изменить параметр Value с 1 на 5, в секции с <Name>Кол-во потоков</Name>.
Тег <BrowserAutomationStudioProject> говорит о том, что это исходник BAS. Зачем вам в BAS менять код другого исходника?