Anton Konovalov

Results 28 comments of Anton Konovalov
trafficstars

@grcool, @slava-nat На счёт "половины фильмов" - обратите внимание на этот раздел: https://github.com/REDNBLACK/J-Kinopoisk2IMDB#%D0%B4%D0%BE%D0%BF%D0%BE%D0%BB%D0%BD%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5 И на этот (описание поля Тип запроса): https://github.com/REDNBLACK/J-Kinopoisk2IMDB#%D0%BF%D0%BE%D0%B4%D1%80%D0%BE%D0%B1%D0%BD%D0%BE%D0%B5-%D0%BE%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B4%D0%BE%D1%81%D1%82%D1%83%D0%BF%D0%BD%D1%8B%D1%85-%D0%BE%D0%BF%D1%86%D0%B8%D0%B9

> Жесть я даже не понимаю как скачать test_data_file_exported_from_lists.xls https://raw.githubusercontent.com/REDNBLACK/J-Kinopoisk2IMDB/master/core/src/test/resources/parser/test_data_file_exported_from_lists.xls

@filthykyke попробуйте `Copy as cURL (bash)`, там формат ожидаемый для программы, инструкция писалась из под MacOS.

Попробуйте последнюю версию (1.2.9) Какая версия Java?

@segaltre пример файла с КП: [kinopoisk.ru-mm (1).xlsx](https://github.com/REDNBLACK/J-Kinopoisk2IMDB/files/5763096/kinopoisk.ru-mm.1.xlsx)

Is tui editor abandoned?

Looks like this comment is 10-years old and obsolete. So is there is no way to include out-of-body tags into the process? Pretty critical in my case.

``` Whitelist whiltelist = Whitelist.relaxed() .addTags("!DOCTYPE html", "html", "head", "body", "meta", "style") .addAttributes("meta", "charset"); String value = ".some {color: red}3alert('pwned')4"; Jsoup.clean(value, whitelist); // .some {color: red}34 ```

> Hello, I just made some modifications to the static method clean to solve the problem you mentioned. Here is my solution for your reference. > replace > > ```...