See http://github.com/josegonzalez/codebasehq-plugin for more details
See http://github.com/josegonzalez/stylish_errors for more details
See http://github.com/josegonzalez/inflection for more details
See http://github.com/josegonzalez/sanction for more details
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 characters
| <?php | |
| class SearchableHelper extends AppHelper { | |
| var $helpers = array('Html', 'Text'); | |
| function snippets($data) { | |
| $data = json_decode($data, true); | |
| $term = (isset($this->data['SearchIndex']['term'])) ? trim($this->data['SearchIndex']['term']) : ''; | |
| $snippets = ''; | |
| while (strlen($snippets) < 255 && $value = next($data)) { | |
| $snippets .= $this->Text->highlight($this->Text->excerpt($value, $term, 20), $term); |
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 characters
| b30d30e56991fe459c2292783185769bbe57f7da8f5b84d6934640263ec9b170258c8ff39556368ae50e5a629d657d4d0d7cf2976b0214c6abc9370711257d82 |
See http://github.com/josegonzalez/webservice_plugin for more details
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 characters
| <?php | |
| /** | |
| * Short description for file. | |
| * | |
| * This file is application-wide helper file. You can put all | |
| * application-wide helper-related methods here. | |
| * | |
| * PHP versions 4 and 5 | |
| * | |
| * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) |
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 characters
| module Jekyll | |
| class CategoryIndex < Page | |
| def initialize(site, base, dir, category) | |
| @site = site | |
| @base = base | |
| @dir = dir | |
| @name = 'index.html' | |
| self.process(@name) | |
| self.read_yaml(File.join(base, '_layouts'), 'category_index.html') |
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 characters
| [user] | |
| name = MY_NAME | |
| email = MY_EMAIL_ADDRESS | |
| [git-tmbundle] | |
| gitnub-path = /Applications/GitNub.app | |
| gitx-path = /Applications/GitX.app | |
| show-diff-check = yes | |
| [github] | |
| user = GITUB_USER | |
| token = GITHUB_TOKEN |
OlderNewer