├── .gitignore ├── .vscode └── settings.json ├── Embedded Tweets | Twitter Developers.webloc ├── _sublime └── neasden.sublime-project ├── audio └── 329_5.mp3 ├── index.php ├── library ├── fotorama │ ├── fotorama.css │ └── fotorama.js ├── highlight │ ├── highlight.css │ └── highlight.js ├── jouele │ ├── i │ │ ├── jouele-buffering.gif │ │ ├── jouele-download.png │ │ ├── jouele-paused.png │ │ ├── jouele-playing.png │ │ └── jouele-unavailable.png │ ├── jouele.css │ ├── jouele.js │ ├── jplayer.swf │ └── jquery.jplayer.min.js ├── jquery │ └── jquery.js └── scaleimage │ └── scaleimage.js ├── neasden ├── config.php ├── extensions │ ├── audio.php │ ├── fotorama.php │ ├── hr.php │ ├── list.php │ ├── picture.php │ ├── table.php │ ├── vimeo.php │ └── youtube.php ├── languages │ ├── en.php │ ├── fr.php │ └── ru.php └── neasden.php ├── pictures ├── 3rd-right-left-right.jpg ├── 7250.jpg ├── DSC_0164.JPG ├── astra-chistoprudov.jpg ├── scaled │ ├── astra-chistoprudov.jpg │ └── wdj-free-ss.jpg └── wdj-free-ss.jpg ├── style.css ├── tests ├── test-1.txt ├── test-10.txt ├── test-11.txt ├── test-12.txt ├── test-13.txt ├── test-14.txt ├── test-15.txt ├── test-16-metromap.txt ├── test-17-htmlcomments.txt ├── test-18-code.txt ├── test-19.txt ├── test-2.txt ├── test-20.txt ├── test-21.txt ├── test-22.txt ├── test-23.txt ├── test-24.txt ├── test-25.txt ├── test-26.txt ├── test-27.txt ├── test-28.txt ├── test-29.txt ├── test-3.txt ├── test-30-kogut.txt ├── test-31.txt ├── test-32.txt ├── test-33.txt ├── test-34.txt ├── test-35.txt ├── test-36.txt ├── test-37.txt ├── test-38.txt ├── test-39.txt ├── test-4.txt ├── test-40.txt ├── test-41.txt ├── test-42.txt ├── test-5.txt ├── test-6.txt ├── test-7.txt ├── test-8.txt └── test-9.txt └── user └── neasden └── extensions └── fotorama.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Embedded Tweets | Twitter Developers.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/Embedded Tweets | Twitter Developers.webloc -------------------------------------------------------------------------------- /_sublime/neasden.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/_sublime/neasden.sublime-project -------------------------------------------------------------------------------- /audio/329_5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/audio/329_5.mp3 -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/index.php -------------------------------------------------------------------------------- /library/fotorama/fotorama.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/fotorama/fotorama.css -------------------------------------------------------------------------------- /library/fotorama/fotorama.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/fotorama/fotorama.js -------------------------------------------------------------------------------- /library/highlight/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/highlight/highlight.css -------------------------------------------------------------------------------- /library/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/highlight/highlight.js -------------------------------------------------------------------------------- /library/jouele/i/jouele-buffering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/i/jouele-buffering.gif -------------------------------------------------------------------------------- /library/jouele/i/jouele-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/i/jouele-download.png -------------------------------------------------------------------------------- /library/jouele/i/jouele-paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/i/jouele-paused.png -------------------------------------------------------------------------------- /library/jouele/i/jouele-playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/i/jouele-playing.png -------------------------------------------------------------------------------- /library/jouele/i/jouele-unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/i/jouele-unavailable.png -------------------------------------------------------------------------------- /library/jouele/jouele.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/jouele.css -------------------------------------------------------------------------------- /library/jouele/jouele.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/jouele.js -------------------------------------------------------------------------------- /library/jouele/jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/jplayer.swf -------------------------------------------------------------------------------- /library/jouele/jquery.jplayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jouele/jquery.jplayer.min.js -------------------------------------------------------------------------------- /library/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/jquery/jquery.js -------------------------------------------------------------------------------- /library/scaleimage/scaleimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/library/scaleimage/scaleimage.js -------------------------------------------------------------------------------- /neasden/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/config.php -------------------------------------------------------------------------------- /neasden/extensions/audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/audio.php -------------------------------------------------------------------------------- /neasden/extensions/fotorama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/fotorama.php -------------------------------------------------------------------------------- /neasden/extensions/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/hr.php -------------------------------------------------------------------------------- /neasden/extensions/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/list.php -------------------------------------------------------------------------------- /neasden/extensions/picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/picture.php -------------------------------------------------------------------------------- /neasden/extensions/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/table.php -------------------------------------------------------------------------------- /neasden/extensions/vimeo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/vimeo.php -------------------------------------------------------------------------------- /neasden/extensions/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/extensions/youtube.php -------------------------------------------------------------------------------- /neasden/languages/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/languages/en.php -------------------------------------------------------------------------------- /neasden/languages/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/languages/fr.php -------------------------------------------------------------------------------- /neasden/languages/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/languages/ru.php -------------------------------------------------------------------------------- /neasden/neasden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/neasden/neasden.php -------------------------------------------------------------------------------- /pictures/3rd-right-left-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/3rd-right-left-right.jpg -------------------------------------------------------------------------------- /pictures/7250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/7250.jpg -------------------------------------------------------------------------------- /pictures/DSC_0164.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/DSC_0164.JPG -------------------------------------------------------------------------------- /pictures/astra-chistoprudov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/astra-chistoprudov.jpg -------------------------------------------------------------------------------- /pictures/scaled/astra-chistoprudov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/scaled/astra-chistoprudov.jpg -------------------------------------------------------------------------------- /pictures/scaled/wdj-free-ss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/scaled/wdj-free-ss.jpg -------------------------------------------------------------------------------- /pictures/wdj-free-ss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/pictures/wdj-free-ss.jpg -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/style.css -------------------------------------------------------------------------------- /tests/test-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-1.txt -------------------------------------------------------------------------------- /tests/test-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-10.txt -------------------------------------------------------------------------------- /tests/test-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-11.txt -------------------------------------------------------------------------------- /tests/test-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-12.txt -------------------------------------------------------------------------------- /tests/test-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-13.txt -------------------------------------------------------------------------------- /tests/test-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-14.txt -------------------------------------------------------------------------------- /tests/test-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-15.txt -------------------------------------------------------------------------------- /tests/test-16-metromap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-16-metromap.txt -------------------------------------------------------------------------------- /tests/test-17-htmlcomments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-17-htmlcomments.txt -------------------------------------------------------------------------------- /tests/test-18-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-18-code.txt -------------------------------------------------------------------------------- /tests/test-19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-19.txt -------------------------------------------------------------------------------- /tests/test-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-2.txt -------------------------------------------------------------------------------- /tests/test-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-20.txt -------------------------------------------------------------------------------- /tests/test-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-21.txt -------------------------------------------------------------------------------- /tests/test-22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-22.txt -------------------------------------------------------------------------------- /tests/test-23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-23.txt -------------------------------------------------------------------------------- /tests/test-24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-24.txt -------------------------------------------------------------------------------- /tests/test-25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-25.txt -------------------------------------------------------------------------------- /tests/test-26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-26.txt -------------------------------------------------------------------------------- /tests/test-27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-27.txt -------------------------------------------------------------------------------- /tests/test-28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-28.txt -------------------------------------------------------------------------------- /tests/test-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-29.txt -------------------------------------------------------------------------------- /tests/test-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-3.txt -------------------------------------------------------------------------------- /tests/test-30-kogut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-30-kogut.txt -------------------------------------------------------------------------------- /tests/test-31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-31.txt -------------------------------------------------------------------------------- /tests/test-32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-32.txt -------------------------------------------------------------------------------- /tests/test-33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-33.txt -------------------------------------------------------------------------------- /tests/test-34.txt: -------------------------------------------------------------------------------- 1 | Ивану: 2 | 3 |
.
4 | 5 | Многие -------------------------------------------------------------------------------- /tests/test-35.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /tests/test-36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-36.txt -------------------------------------------------------------------------------- /tests/test-37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-37.txt -------------------------------------------------------------------------------- /tests/test-38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-38.txt -------------------------------------------------------------------------------- /tests/test-39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-39.txt -------------------------------------------------------------------------------- /tests/test-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-4.txt -------------------------------------------------------------------------------- /tests/test-40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-40.txt -------------------------------------------------------------------------------- /tests/test-41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-41.txt -------------------------------------------------------------------------------- /tests/test-42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-42.txt -------------------------------------------------------------------------------- /tests/test-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-5.txt -------------------------------------------------------------------------------- /tests/test-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-6.txt -------------------------------------------------------------------------------- /tests/test-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-7.txt -------------------------------------------------------------------------------- /tests/test-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-8.txt -------------------------------------------------------------------------------- /tests/test-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/tests/test-9.txt -------------------------------------------------------------------------------- /user/neasden/extensions/fotorama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyabirman/Neasden/HEAD/user/neasden/extensions/fotorama.php --------------------------------------------------------------------------------