├── images ├── LyFM.png ├── img_ico.png ├── pdf_ico.png ├── zip_ico.png ├── audio_ico.png ├── file_ico.png ├── text_ico.png ├── video_ico.png ├── alipay_pay.png └── folder_ico.png ├── edit_area ├── plugins │ ├── test │ │ ├── test2.js │ │ ├── css │ │ │ └── test.css │ │ ├── images │ │ │ └── test.gif │ │ ├── langs │ │ │ ├── zh.js │ │ │ ├── pl.js │ │ │ ├── cs.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── hr.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pt.js │ │ │ ├── de.js │ │ │ ├── eo.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── bg.js │ │ └── test.js │ └── charmap │ │ ├── images │ │ └── charmap.gif │ │ ├── langs │ │ ├── zh.js │ │ ├── eo.js │ │ ├── cs.js │ │ ├── dk.js │ │ ├── en.js │ │ ├── es.js │ │ ├── ja.js │ │ ├── mk.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── sk.js │ │ ├── de.js │ │ ├── hr.js │ │ ├── it.js │ │ ├── nl.js │ │ ├── fr.js │ │ ├── ru.js │ │ └── bg.js │ │ ├── popup.html │ │ ├── css │ │ └── charmap.css │ │ └── charmap.js ├── images │ ├── help.gif │ ├── load.gif │ ├── move.gif │ ├── redo.gif │ ├── save.gif │ ├── undo.gif │ ├── close.gif │ ├── opacity.png │ ├── search.gif │ ├── spacer.gif │ ├── highlight.gif │ ├── word_wrap.gif │ ├── fullscreen.gif │ ├── go_to_line.gif │ ├── newdocument.gif │ ├── processing.gif │ ├── autocompletion.gif │ ├── reset_highlight.gif │ ├── smooth_selection.gif │ └── statusbar_resize.gif ├── autocompletion.js ├── edit_area_full.gz ├── license_apache.txt ├── reg_syntax │ ├── robotstxt.js │ ├── brainfuck.js │ ├── html.js │ ├── xml.js │ ├── c.js │ ├── java.js │ ├── ruby.js │ ├── cpp.js │ ├── vb.js │ ├── basic.js │ ├── perl.js │ ├── sql.js │ ├── pas.js │ ├── js.js │ ├── css.js │ ├── tsql.js │ └── coldfusion.js ├── langs │ ├── zh.js │ ├── ja.js │ ├── pt.js │ ├── en.js │ ├── hr.js │ ├── nl.js │ ├── fi.js │ ├── pl.js │ ├── it.js │ ├── dk.js │ ├── cs.js │ ├── mk.js │ ├── sk.js │ ├── es.js │ ├── ru.js │ ├── de.js │ ├── eo.js │ ├── bg.js │ └── fr.js ├── license_bsd.txt ├── resize_area.js ├── template.html ├── keyboard.js ├── regexp.js └── search_replace.js ├── swf └── uploadify.swf ├── css ├── images │ ├── border.png │ ├── controls.png │ ├── loading.gif │ ├── overlay.png │ ├── ie6 │ │ ├── borderTopLeft.png │ │ ├── borderTopRight.png │ │ ├── borderBottomLeft.png │ │ ├── borderMiddleLeft.png │ │ ├── borderTopCenter.png │ │ ├── borderBottomCenter.png │ │ ├── borderBottomRight.png │ │ └── borderMiddleRight.png │ ├── loading_background.png │ └── uploadify-cancel.png ├── uploadify.css └── colorbox.css ├── nginx.conf ├── .htaccess ├── LySystem ├── LyCore │ ├── page │ │ ├── 404.php │ │ └── error.php │ ├── LyGet.php │ ├── LyPost.php │ ├── LyRequest.php │ ├── LyTime.php │ ├── library │ │ └── CLibMail.php │ ├── LyCookie.php │ ├── LyUrl.php │ ├── LySafe.php │ └── helper │ │ └── system.php ├── LyPage │ ├── About.php │ ├── Help.php │ ├── Welcome.php │ └── Login.php ├── LyLib │ ├── LibTemplate.php │ ├── LibFilter.php │ ├── LibLogin.php │ └── LibMenu.php └── LyView │ ├── menu.php │ ├── login.php │ ├── footer.php │ ├── header.php │ ├── about.php │ ├── help.php │ ├── api_list.php │ └── index.php ├── index.php ├── license.txt ├── config.php ├── README.md ├── js ├── LyUpload.js ├── LyCode.js ├── LyUpload2.js └── load.js └── .gitignore /images/LyFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/LyFM.png -------------------------------------------------------------------------------- /edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /images/img_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/img_ico.png -------------------------------------------------------------------------------- /images/pdf_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/pdf_ico.png -------------------------------------------------------------------------------- /images/zip_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/zip_ico.png -------------------------------------------------------------------------------- /swf/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/swf/uploadify.swf -------------------------------------------------------------------------------- /images/audio_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/audio_ico.png -------------------------------------------------------------------------------- /images/file_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/file_ico.png -------------------------------------------------------------------------------- /images/text_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/text_ico.png -------------------------------------------------------------------------------- /images/video_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/video_ico.png -------------------------------------------------------------------------------- /css/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/border.png -------------------------------------------------------------------------------- /css/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/controls.png -------------------------------------------------------------------------------- /css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/loading.gif -------------------------------------------------------------------------------- /css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/overlay.png -------------------------------------------------------------------------------- /images/alipay_pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/alipay_pay.png -------------------------------------------------------------------------------- /images/folder_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/images/folder_ico.png -------------------------------------------------------------------------------- /edit_area/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/help.gif -------------------------------------------------------------------------------- /edit_area/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/load.gif -------------------------------------------------------------------------------- /edit_area/images/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/move.gif -------------------------------------------------------------------------------- /edit_area/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/redo.gif -------------------------------------------------------------------------------- /edit_area/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/save.gif -------------------------------------------------------------------------------- /edit_area/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/undo.gif -------------------------------------------------------------------------------- /edit_area/plugins/test/css/test.css: -------------------------------------------------------------------------------- 1 | select#test_select{ 2 | background-color: #FF0000; 3 | } 4 | -------------------------------------------------------------------------------- /edit_area/autocompletion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/autocompletion.js -------------------------------------------------------------------------------- /edit_area/edit_area_full.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/edit_area_full.gz -------------------------------------------------------------------------------- /edit_area/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/close.gif -------------------------------------------------------------------------------- /edit_area/images/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/opacity.png -------------------------------------------------------------------------------- /edit_area/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/search.gif -------------------------------------------------------------------------------- /edit_area/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/spacer.gif -------------------------------------------------------------------------------- /edit_area/images/highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/highlight.gif -------------------------------------------------------------------------------- /edit_area/images/word_wrap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/word_wrap.gif -------------------------------------------------------------------------------- /css/images/ie6/borderTopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderTopLeft.png -------------------------------------------------------------------------------- /css/images/ie6/borderTopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderTopRight.png -------------------------------------------------------------------------------- /css/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/loading_background.png -------------------------------------------------------------------------------- /css/images/uploadify-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/uploadify-cancel.png -------------------------------------------------------------------------------- /edit_area/images/fullscreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/fullscreen.gif -------------------------------------------------------------------------------- /edit_area/images/go_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/go_to_line.gif -------------------------------------------------------------------------------- /edit_area/images/newdocument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/newdocument.gif -------------------------------------------------------------------------------- /edit_area/images/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/processing.gif -------------------------------------------------------------------------------- /css/images/ie6/borderBottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderBottomLeft.png -------------------------------------------------------------------------------- /css/images/ie6/borderMiddleLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderMiddleLeft.png -------------------------------------------------------------------------------- /css/images/ie6/borderTopCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderTopCenter.png -------------------------------------------------------------------------------- /edit_area/images/autocompletion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/autocompletion.gif -------------------------------------------------------------------------------- /css/images/ie6/borderBottomCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderBottomCenter.png -------------------------------------------------------------------------------- /css/images/ie6/borderBottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderBottomRight.png -------------------------------------------------------------------------------- /css/images/ie6/borderMiddleRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/css/images/ie6/borderMiddleRight.png -------------------------------------------------------------------------------- /edit_area/images/reset_highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/reset_highlight.gif -------------------------------------------------------------------------------- /edit_area/images/smooth_selection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/smooth_selection.gif -------------------------------------------------------------------------------- /edit_area/images/statusbar_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/images/statusbar_resize.gif -------------------------------------------------------------------------------- /edit_area/plugins/test/images/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/plugins/test/images/test.gif -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/zh.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("zh",{ 2 | test_select: "选择标签", 3 | test_but: "测试按钮" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/pl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pl",{ 2 | test_select: "wybierz tag", 3 | test_but: "test" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/cs.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("cs",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/dk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("dk",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/en.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("en",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/es.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("es",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/hr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("hr",{ 2 | test_select: "Odaberi tag", 3 | test_but: "Probna tipka" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/ja.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ja",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/mk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("mk",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/nl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("nl",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/pt.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pt",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/images/charmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/LyFM/HEAD/edit_area/plugins/charmap/images/charmap.gif -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/de.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("de",{ 2 | test_select: "Tag auswählen", 3 | test_but: "Test Button" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/eo.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("eo",{ 2 | test_select:"elekto de marko", 3 | test_but: "provo-butono" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/fr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("fr",{ 2 | test_select:"choix balise", 3 | test_but: "bouton de test" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/it.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("it",{ 2 | test_select: "seleziona tag", 3 | test_but: "pulsante di test" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/ru.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ru",{ 2 | test_select: "выбрать тэг", 3 | test_but: "тестировать кнопку" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/test/langs/sk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("sk",{ 2 | test_select: "vyber tag", 3 | test_but: "testovacie tlačidlo" 4 | }); 5 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/zh.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("zh",{ 2 | charmap_but: "软键盘", 3 | charmap_title: "软键盘", 4 | charmap_choose_block: "选择一个语言块", 5 | charmap_insert:"插入此字符" 6 | }); 7 | -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | location /file/ { 2 | if (!-f $request_filename){ 3 | rewrite (.*) /file/index.php; 4 | } 5 | } 6 | location ~* ^/file/LySystem/.*{ 7 | rewrite (.*) /file/index.php; 8 | } -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/eo.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("eo",{ 2 | charmap_but: "Ekranklavaro", 3 | charmap_title: "Ekranklavaro", 4 | charmap_choose_block: "Elekto de lingvo", 5 | charmap_insert:"enmeti tiun signaron" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/cs.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("cs",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/dk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("dk",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/en.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("en",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/es.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("es",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/ja.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ja",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/mk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("mkn",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/pl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pl",{ 2 | charmap_but: "Klawiatura ekranowa", 3 | charmap_title: "Klawiatura ekranowa", 4 | charmap_choose_block: "wybierz grupę znaków", 5 | charmap_insert:"wstaw ten znak" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/pt.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pt",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/sk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("sk",{ 2 | charmap_but: "Vizuálna klávesnica", 3 | charmap_title: "Vizuálna klávesnica", 4 | charmap_choose_block: "vyber jazykový blok", 5 | charmap_insert: "vlož tento znak" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/de.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("de",{ 2 | charmap_but: "Sonderzeichen", 3 | charmap_title: "Sonderzeichen", 4 | charmap_choose_block: "Bereich auswählen", 5 | charmap_insert: "dieses Zeichen einfügen" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/hr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("hr",{ 2 | charmap_but: "Virtualna tipkovnica", 3 | charmap_title: "Virtualna tipkovnica", 4 | charmap_choose_block: "Odaberi blok s jezikom", 5 | charmap_insert:"Ubaci taj znak" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/it.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("it",{ 2 | charmap_but: "Tastiera visuale", 3 | charmap_title: "Tastiera visuale", 4 | charmap_choose_block: "seleziona blocco", 5 | charmap_insert:"inserisci questo carattere" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/nl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("nl",{ 2 | charmap_but: "Visueel toetsenbord", 3 | charmap_title: "Visueel toetsenbord", 4 | charmap_choose_block: "Kies een taal blok", 5 | charmap_insert:"Voeg dit symbool in" 6 | }); 7 | -------------------------------------------------------------------------------- /edit_area/plugins/charmap/langs/fr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("fr",{ 2 | charmap_but: "Clavier visuel", 3 | charmap_title: "Clavier visuel", 4 | charmap_choose_block: "choix du language", 5 | charmap_insert:"insérer ce caractère" 6 | }); 7 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase /file/ 3 | RewriteCond %{REQUEST_FILENAME} !-f 4 | RewriteRule ^(.*)$ /file/index.php/$1 [L] 5 | 6 | #禁止访问系统目录和配置目录 7 | RewriteCond %{REQUEST_URI} ^(\/file\/LySystem\/).* [NC] 8 | RewriteRule ^(.*)$ /file/index.php [L] -------------------------------------------------------------------------------- /LySystem/LyCore/page/404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |