Last active
December 14, 2015 17:49
Revisions
-
webdevel revised this gist
Mar 10, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Helpful Links - http://wiki.eclipse.org/Eclipse_Project_Update_Sites - http://help.eclipse.org/ - http://www.eclipse.org/downloads/ - http://download.eclipse.org/eclipse/downloads/ - http://www.programcreek.com/develop-plug-ins-using-rcp/ - http://eclipse.org/m2e/download/ - http://www.eclipsezone.com/eps/10minute-rcp/ -
webdevel revised this gist
Mar 10, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Informal notes regarding Eclipse plugin development. Helpful Links ------------- - http://wiki.eclipse.org/ - http://wiki.eclipse.org/Eclipse_Project_Update_Sites - http://help.eclipse.org/ - http://www.eclipse.org/downloads/ - http://www.programcreek.com/develop-plug-ins-using-rcp/ -
webdevel revised this gist
Mar 10, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,3 +9,5 @@ Helpful Links - http://www.eclipse.org/downloads/ - http://www.programcreek.com/develop-plug-ins-using-rcp/ - http://eclipse.org/m2e/download/ - http://www.eclipsezone.com/eps/10minute-rcp/ - http://www.vogella.com/articles/EclipseRCP/article.html#plugin_versiondependencies -
webdevel revised this gist
Mar 10, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,3 +8,4 @@ Helpful Links - http://help.eclipse.org/ - http://www.eclipse.org/downloads/ - http://www.programcreek.com/develop-plug-ins-using-rcp/ - http://eclipse.org/m2e/download/ -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,4 +7,4 @@ Helpful Links - http://wiki.eclipse.org/ - http://help.eclipse.org/ - http://www.eclipse.org/downloads/ - http://www.programcreek.com/develop-plug-ins-using-rcp/ -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 0 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,13 +2,9 @@ Eclipse Development ------------------- Informal notes regarding Eclipse plugin development. Helpful Links ------------- - http://wiki.eclipse.org/ - http://help.eclipse.org/ - http://www.eclipse.org/downloads/ -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,12 +2,13 @@ Eclipse Development ------------------- Informal notes regarding Eclipse plugin development. -------- Helpful Links ------------- - http://wiki.eclipse.org/ - http://help.eclipse.org/ - http://www.eclipse.org/downloads/ -------- -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ Eclipse Development ------------------- Informal notes regarding Eclipse plugin development. --- Helpful Links ------------- - http://wiki.eclipse.org/ - http://help.eclipse.org/ -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 4 additions and 35 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,43 +2,12 @@ Eclipse Development =================== Informal notes regarding Eclipse plugin development. --- Helpful Links ============= - http://wiki.eclipse.org/ - http://help.eclipse.org/ --- -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 35 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,43 @@ Eclipse Development =================== Informal notes regarding Eclipse plugin development. *** Helpful Links ============= http://wiki.eclipse.org/ *** Code Test ========= ```php <?php /** * CodeTest * @filesource */ namespace Webwhammy\Code\Test; use Webwhammy\Code\TestInterface; use Webwhammy\Code\AbstractCodeTest; /** * Test Code in Markdown * @package Webwhammy\Code\Test */ class CodeTest extends AbstractCodeTest implements TestInterface { private $codeTest = 'markdown'; public function setCodeTest($codeTest) { $this->codeTest = $codeTest; } public function getCodeTest() { return $this->codeTest; } } ``` -
webdevel revised this gist
Mar 9, 2013 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,11 @@ Eclipse Development =================== Informal notes regarding Eclipse plugin development. ___ Helpful Links ============= http://wiki.eclipse.org/ ___ -
webdevel created this gist
Mar 9, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ Eclipse Development =================== ---