[Maven] Maven Plugin development

Java/Maven 2015. 8. 1. 19:46

링크: http://maven.apache.org/plugin-developers/index.html

posted by 뚱2

링크: https://www.jetbrains.com/idea/help/typescript-support.html

posted by 뚱2

링크: https://confluence.jetbrains.com/display/IDEADEV/Getting+Started+with+Plugin+Development

posted by 뚱2

링크: https://github.com/requirejs/text


posted by 뚱2

링크: https://github.com/blueimp/jQuery-File-Upload

문서: https://github.com/blueimp/jQuery-File-Upload/wiki

'JavaScript > jQuery' 카테고리의 다른 글

[jQuery] jQuery form validation  (0) 2014.06.05
[jQuery] jquery-validation document  (0) 2014.05.07
[jQuery] jQuery Form validator  (0) 2013.11.18
[jQuery] jQuery.serializeObject 만들기  (0) 2013.10.15
[jQuery] DataTables (table plug-in)  (0) 2013.01.02
posted by 뚱2

링크: http://mrkdev.tistory.com/5


CheckStyle-IDEA를 빼고는 다 사용해 봤는데 모두 정말 유용한 Plugin 이다.

posted by 뚱2
링크 : http://formvalidator.net/index.html



posted by 뚱2

링크 : https://code.google.com/p/zen-coding/downloads/list 


소스가 Deprecated 되었네요.

혹 IntelliJ IDEA에서 Zencoding 사용할수 있는 다른 플러그인 있으면 알려주세요.



PS. 2013-11-05 추가

현재 IntelliJ 버전이 12.1.6 인데 여기에 젠코딩 플러그인이 자체 내장되어 있습니다.

그냥 사용하시면 됩니다.

'IDE/Tool > IntelliJ IDEA' 카테고리의 다른 글

[IntelliJ IDEA] IntelliJ 시작하기  (0) 2013.07.01
[IntelliJ IDEA] Tutorial  (0) 2013.06.20
[IntelliJ IDEA] Short Cut  (0) 2013.05.09
[IntelliJ IDEA] VCS 연결하기 (SVN)  (0) 2013.01.05
[IntelliJ IDEA] Eclipse FAQ  (0) 2013.01.02
posted by 뚱2

링크 : http://www.datatables.net/ 

링크 : http://www.datatables.net/release-datatables/examples/basic_init/zero_config.html 

posted by 뚱2

[Eclipse] Plug-In 개발

IDE/Tool/Eclipse 2012. 10. 25. 12:38
posted by 뚱2

[jQuery] PlugIn 만들기

JavaScript/jQuery 2012. 8. 8. 23:20

링크 : http://docs.jquery.com/Plugins/Authoring 

posted by 뚱2

링크 : http://malsup.com/jquery/block/ 


전 ajax 통신중 대용량 비동기 통신을 할때만 걸어놨습니다.


// 기본 셋팅

$.ajaxSetup({

    type        : 'POST',

    async       : false,

    cache       : false,

    contentType : 'application/json; charset=utf-8',

    dataType    : 'json',

    error       : function(xhr,e) {

        $.unblockUI();

        if (xhr.status == 0) {

            alert('You are offline!!\n Please Check Your Network.');

        }

        else if (xhr.status == 404) {

            alert('Requested URL not found.');

        }

        else if (xhr.status == 500) {

            alert('Internel Server Error.\n');

        }

        else if (e == 'parsererror') {

            alert('Error.\nParsing JSON Request failed.');

        }

        else if (e == 'timeout') {

            alert('Request Time out.');

        }

        else {

            alert('Unknow Error.\n'+xhr.responseText);

        }

    },

    beforeSend : function(xhr, setting) {

        if ( setting && setting.async == true ) {

            $.blockUI();

        }

    },

    complete   : function(xhr, e) {

        $.unblockUI();

    }

});//$.ajaxSetup({


posted by 뚱2

링크 : http://java.decompiler.free.fr/?q=jdeclipse 

수동설치 : http://feeeel.tistory.com/33 


 

 

 

 

 

jdeclipse_update_site.zip


 

jd-gui-0.3.3.windows.zip

'IDE/Tool > Eclipse' 카테고리의 다른 글

[Eclipse] SVN Console 표시  (0) 2012.06.29
[Eclipse] .svn 폴더 삭제  (0) 2012.06.27
[Eclipse] Team Synchronizing 화면전환 Disable  (0) 2012.06.22
[Eclipse] Subversion 계정 변경  (0) 2012.06.22
[Eclipse] JavaScript Errors/Warnings  (0) 2012.06.21
posted by 뚱2

[jQuery] Plugin Validation

JavaScript/jQuery 2012. 6. 18. 09:59

다운로드 : http://bassistance.de/jquery-plugins/jquery-plugin-validation/


링크 : http://mytory.co.kr/archives/195 

posted by 뚱2

'JavaScript > dynaTree' 카테고리의 다른 글

[dynatree] TREE TO TREE DRAG AND DROP 예제  (0) 2012.02.21
[dynatree] dynatree node option  (0) 2012.02.09
[dynatree] Option 옵션  (0) 2012.02.09
posted by 뚱2
posted by 뚱2
posted by 뚱2