├── .gitignore ├── .nvmrc ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config ├── default.js ├── index.php └── replace.js ├── grunt ├── aliases.yaml ├── grunt-autoprefixer.js ├── grunt-contrib-clean.js ├── grunt-contrib-copy.js ├── grunt-contrib-cssmin.js ├── grunt-contrib-jshint.js ├── grunt-contrib-watch.js ├── grunt-curl.js ├── grunt-jscs.js ├── grunt-phplint.js ├── grunt-phpunit.js ├── grunt-rename.js ├── grunt-sass-lint.js ├── grunt-sass.js ├── grunt-shell.js ├── grunt-text-replace.js └── index.php ├── index.php ├── package.json ├── src ├── admin │ ├── css │ │ ├── admin.css │ │ └── admin.min.css │ ├── index.php │ └── sass │ │ ├── admin.scss │ │ ├── index.php │ │ └── partials │ │ ├── _shortcode-notice.scss │ │ ├── _variables.scss │ │ └── index.php ├── classes │ ├── class-wp-gist-enqueue-styles.php │ ├── class-wp-gist-shortcode-notice.php │ ├── class-wp-gist-shortcode.php │ ├── class-wp-gist.php │ └── index.php ├── index.php ├── initialize.php └── site │ ├── css │ ├── style.css │ └── style.min.css │ ├── index.php │ └── sass │ ├── index.php │ ├── partials │ ├── _gist.scss │ └── index.php │ └── style.scss ├── tests └── index.php ├── uninstall.php └── wp-gist.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .DS_Store 3 | .idea 4 | bower_components 5 | config/runtime.json 6 | curl_downloads 7 | dist 8 | node_modules 9 | vendor -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 0.10 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | ## Local Development Environment 4 | 5 | WP Gist, both the plugin and the website, is built using [Ruby](https://www.ruby-lang.org/en/) (needed for Sass compilation), [Node.js](http://nodejs.org/) & [NPM](https://www.npmjs.org/), [Bower](http://bower.io/), [Grunt](http://gruntjs.com/), [Sass](http://sass-lang.com/), and [Jekyll](http://jekyllrb.com/). 6 | 7 | If you wish to contribute to the project, you'll need to install these components. 8 | 9 | ### Install Ruby 10 | 11 | Mac: 12 | 13 | 1. Mac's already come with Ruby installed, so there is nothing for you to do! 14 | 15 | Windows: 16 | 17 | 1. Install [Ruby Installer](http://www.rubyinstaller.org/). 18 | 19 | ### Install NPM 20 | 21 | Mac: 22 | 23 | 1. Install [Homebrew](http://brew.sh/) by running the following command: `ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"` 24 | 2. Install Node.js and NPM by running the following command: `brew install node` 25 | 26 | Windows: 27 | 28 | 1. Head to the Node.js Download page 29 | 2. Click on "Windows Installer" to begin downloading 30 | 3. Run installer to install Node.js and NPM 31 | 32 | ### Install Bower 33 | 34 | Run the following command: `npm install -g bower` 35 | 36 | ### Install Grunt 37 | 38 | Run the following command: `npm install -g grunt-cli` 39 | 40 | ### Install Sass 41 | 42 | Run the following command: `gem install sass` 43 | 44 | ### Install Jekyll 45 | 46 | Run the following command: `gem install jekyll` 47 | 48 | ## Plugin Development 49 | 50 | After everything above is installed, You need to: 51 | 52 | 1. Fork and clone the WP Gist repository 53 | 2. Navigate to the local WP Gist directory via command line 54 | 3. Run the following commands to build the environment 55 | * `npm install` 56 | * `grunt` 57 | 58 | This will download the project dependencies and build the project. 59 | 60 | A full list of Grunt tasks are available in the `grunt/tasks.js` file within the project. You'll use the `grunt` and `grunt build` commands most often. 61 | 62 | When committing your changes, please make a pull request to the `master` branch, unless otherwise specified. 63 | 64 | ## GitHub Pages Development 65 | 66 | 1. Navigate to the local WP Gist directory via command line 67 | 2. Make sure the `gh-pages` branch is checked out 68 | 3. Run the `jekyll serve --watch` command to start Jekyll and have it watch for changes, which will auto regenerate pages 69 | 4. Go to [http://localhost:4000/](http://localhost:4000/) in your browser to see the WP Gist GitHub Page 70 | 5. Use `⌃C` (Mac) or `Ctrl+C` (Windows) to stop the local server. 71 | 72 | When committing your changes, please make a pull request to the `gh-pages` branch. 73 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | 3 | 'use strict'; 4 | 5 | require('load-grunt-config')(grunt, { 6 | loadGruntTasks: { 7 | pattern: [ 8 | 'grunt-*' 9 | ] 10 | } 11 | }); 12 | 13 | grunt.loadTasks('grunt'); 14 | 15 | }; 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WP Gist 2 | 3 | ## Description 4 | 5 | WP Gist adds support for [GitHub Gist](https://gist.github.com/) embeds in [WordPress](http://wordpress.org/). 6 | 7 | ## Documentation & Installation 8 | 9 | Please visit the [WP Gist](http://manovotny.github.io/wp-gist/) website for a full description of features and installation. 10 | 11 | ## Contributing 12 | 13 | Please read the [contribution guidelines](CONTRIBUTING.md) to get started. 14 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "manovotny/wp-gist", 3 | "version": "3.1.0", 4 | "description": "Adds support for GitHub Gist embeds in WordPress.", 5 | "type": "library", 6 | "homepage": "https://github.com/manovotny/wp-gist", 7 | "authors": [ 8 | { 9 | "name": "Michael Novotny", 10 | "email": "manovotny@gmail.com", 11 | "homepage": "http://manovotny.com", 12 | "role": "Developer" 13 | } 14 | ], 15 | "license": "GPL-3.0+", 16 | "keywords": [ 17 | "code", 18 | "gist", 19 | "github", 20 | "wordpress" 21 | ], 22 | "require": { 23 | "manovotny/wp-enqueue-util": "~1.1" 24 | }, 25 | "require-dev": { 26 | "manovotny/wp-phpunit-helpers": "~1.0", 27 | "phpunit/phpunit": "4.1.*" 28 | }, 29 | "autoload": { 30 | "classmap": [ 31 | "src" 32 | ], 33 | "files": [ 34 | "wp-gist.php" 35 | ] 36 | }, 37 | "autoload-dev": { 38 | "classmap": [ 39 | "vendor/phpunit", 40 | "vendor/sebastian", 41 | "vendor/symfony" 42 | ] 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", 5 | "This file is @generated automatically" 6 | ], 7 | "hash": "f5e5e31891cc0841f9150318a50b25e9", 8 | "content-hash": "59c4ddcfbc1ae39911dee6d549d925d7", 9 | "packages": [ 10 | { 11 | "name": "manovotny/wp-enqueue-util", 12 | "version": "1.3.1", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/manovotny/wp-enqueue-util.git", 16 | "reference": "2d59935238634c1274e08f465dc59dd65adf2c1f" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/manovotny/wp-enqueue-util/zipball/2d59935238634c1274e08f465dc59dd65adf2c1f", 21 | "reference": "2d59935238634c1274e08f465dc59dd65adf2c1f", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "manovotny/wp-url-util": "~2.0" 26 | }, 27 | "require-dev": { 28 | "manovotny/wp-phpunit-helpers": "~1.0", 29 | "phpunit/phpunit": "4.1.*" 30 | }, 31 | "type": "library", 32 | "autoload": { 33 | "classmap": [ 34 | "src" 35 | ], 36 | "files": [ 37 | "wp-enqueue-util.php" 38 | ] 39 | }, 40 | "notification-url": "https://packagist.org/downloads/", 41 | "license": [ 42 | "GPL-3.0+" 43 | ], 44 | "authors": [ 45 | { 46 | "name": "Michael Novotny", 47 | "email": "manovotny@gmail.com", 48 | "homepage": "http://manovotny.com", 49 | "role": "Developer" 50 | } 51 | ], 52 | "description": "A convenient enqueuing utility for WordPress.", 53 | "keywords": [ 54 | "css", 55 | "enqueue", 56 | "javascript", 57 | "scripts", 58 | "wordpress" 59 | ], 60 | "time": "2014-12-28 05:44:52" 61 | }, 62 | { 63 | "name": "manovotny/wp-url-util", 64 | "version": "2.0.0", 65 | "source": { 66 | "type": "git", 67 | "url": "https://github.com/manovotny/wp-url-util.git", 68 | "reference": "3d656e849bb77e14003fbdd65dfa64d8b1b184cd" 69 | }, 70 | "dist": { 71 | "type": "zip", 72 | "url": "https://api.github.com/repos/manovotny/wp-url-util/zipball/3d656e849bb77e14003fbdd65dfa64d8b1b184cd", 73 | "reference": "3d656e849bb77e14003fbdd65dfa64d8b1b184cd", 74 | "shasum": "" 75 | }, 76 | "require-dev": { 77 | "manovotny/wp-phpunit-helpers": "~1.0", 78 | "phpunit/phpunit": "4.1.*" 79 | }, 80 | "type": "library", 81 | "autoload": { 82 | "classmap": [ 83 | "src" 84 | ], 85 | "files": [ 86 | "wp-url-util.php" 87 | ] 88 | }, 89 | "notification-url": "https://packagist.org/downloads/", 90 | "license": [ 91 | "GPL-3.0+" 92 | ], 93 | "authors": [ 94 | { 95 | "name": "Michael Novotny", 96 | "email": "manovotny@gmail.com", 97 | "homepage": "http://manovotny.com", 98 | "role": "Developer" 99 | } 100 | ], 101 | "description": "A url utility for WordPress.", 102 | "homepage": "https://github.com/manovotny/wp-url-util", 103 | "keywords": [ 104 | "url", 105 | "utility", 106 | "wordpress" 107 | ], 108 | "time": "2014-12-12 17:59:35" 109 | } 110 | ], 111 | "packages-dev": [ 112 | { 113 | "name": "manovotny/wp-phpunit-helpers", 114 | "version": "1.4.2", 115 | "source": { 116 | "type": "git", 117 | "url": "https://github.com/manovotny/wp-phpunit-helpers.git", 118 | "reference": "935a04e14f31e0f0c6bd63b04ded9e791cd49947" 119 | }, 120 | "dist": { 121 | "type": "zip", 122 | "url": "https://api.github.com/repos/manovotny/wp-phpunit-helpers/zipball/935a04e14f31e0f0c6bd63b04ded9e791cd49947", 123 | "reference": "935a04e14f31e0f0c6bd63b04ded9e791cd49947", 124 | "shasum": "" 125 | }, 126 | "require-dev": { 127 | "phpunit/phpunit": "4.1.*" 128 | }, 129 | "type": "library", 130 | "autoload": { 131 | "classmap": [ 132 | "src" 133 | ], 134 | "files": [ 135 | "wp-phpunit-helpers.php" 136 | ] 137 | }, 138 | "notification-url": "https://packagist.org/downloads/", 139 | "license": [ 140 | "GPL-3.0+" 141 | ], 142 | "authors": [ 143 | { 144 | "name": "Michael Novotny", 145 | "email": "manovotny@gmail.com", 146 | "homepage": "http://manovotny.com", 147 | "role": "Developer" 148 | } 149 | ], 150 | "description": "Simple PHPUnit helpers for testing WordPress.", 151 | "homepage": "https://github.com/manovotny/wp-phpunit-helpers", 152 | "keywords": [ 153 | "phpunit", 154 | "test", 155 | "tests", 156 | "wordpress" 157 | ], 158 | "time": "2014-12-12 06:15:15" 159 | }, 160 | { 161 | "name": "phpunit/php-code-coverage", 162 | "version": "2.2.4", 163 | "source": { 164 | "type": "git", 165 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 166 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979" 167 | }, 168 | "dist": { 169 | "type": "zip", 170 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979", 171 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979", 172 | "shasum": "" 173 | }, 174 | "require": { 175 | "php": ">=5.3.3", 176 | "phpunit/php-file-iterator": "~1.3", 177 | "phpunit/php-text-template": "~1.2", 178 | "phpunit/php-token-stream": "~1.3", 179 | "sebastian/environment": "^1.3.2", 180 | "sebastian/version": "~1.0" 181 | }, 182 | "require-dev": { 183 | "ext-xdebug": ">=2.1.4", 184 | "phpunit/phpunit": "~4" 185 | }, 186 | "suggest": { 187 | "ext-dom": "*", 188 | "ext-xdebug": ">=2.2.1", 189 | "ext-xmlwriter": "*" 190 | }, 191 | "type": "library", 192 | "extra": { 193 | "branch-alias": { 194 | "dev-master": "2.2.x-dev" 195 | } 196 | }, 197 | "autoload": { 198 | "classmap": [ 199 | "src/" 200 | ] 201 | }, 202 | "notification-url": "https://packagist.org/downloads/", 203 | "license": [ 204 | "BSD-3-Clause" 205 | ], 206 | "authors": [ 207 | { 208 | "name": "Sebastian Bergmann", 209 | "email": "sb@sebastian-bergmann.de", 210 | "role": "lead" 211 | } 212 | ], 213 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 214 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 215 | "keywords": [ 216 | "coverage", 217 | "testing", 218 | "xunit" 219 | ], 220 | "time": "2015-10-06 15:47:00" 221 | }, 222 | { 223 | "name": "phpunit/php-file-iterator", 224 | "version": "1.3.4", 225 | "source": { 226 | "type": "git", 227 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 228 | "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb" 229 | }, 230 | "dist": { 231 | "type": "zip", 232 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/acd690379117b042d1c8af1fafd61bde001bf6bb", 233 | "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb", 234 | "shasum": "" 235 | }, 236 | "require": { 237 | "php": ">=5.3.3" 238 | }, 239 | "type": "library", 240 | "autoload": { 241 | "classmap": [ 242 | "File/" 243 | ] 244 | }, 245 | "notification-url": "https://packagist.org/downloads/", 246 | "include-path": [ 247 | "" 248 | ], 249 | "license": [ 250 | "BSD-3-Clause" 251 | ], 252 | "authors": [ 253 | { 254 | "name": "Sebastian Bergmann", 255 | "email": "sb@sebastian-bergmann.de", 256 | "role": "lead" 257 | } 258 | ], 259 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 260 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 261 | "keywords": [ 262 | "filesystem", 263 | "iterator" 264 | ], 265 | "time": "2013-10-10 15:34:57" 266 | }, 267 | { 268 | "name": "phpunit/php-text-template", 269 | "version": "1.2.1", 270 | "source": { 271 | "type": "git", 272 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 273 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 274 | }, 275 | "dist": { 276 | "type": "zip", 277 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 278 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 279 | "shasum": "" 280 | }, 281 | "require": { 282 | "php": ">=5.3.3" 283 | }, 284 | "type": "library", 285 | "autoload": { 286 | "classmap": [ 287 | "src/" 288 | ] 289 | }, 290 | "notification-url": "https://packagist.org/downloads/", 291 | "license": [ 292 | "BSD-3-Clause" 293 | ], 294 | "authors": [ 295 | { 296 | "name": "Sebastian Bergmann", 297 | "email": "sebastian@phpunit.de", 298 | "role": "lead" 299 | } 300 | ], 301 | "description": "Simple template engine.", 302 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 303 | "keywords": [ 304 | "template" 305 | ], 306 | "time": "2015-06-21 13:50:34" 307 | }, 308 | { 309 | "name": "phpunit/php-timer", 310 | "version": "1.0.7", 311 | "source": { 312 | "type": "git", 313 | "url": "https://github.com/sebastianbergmann/php-timer.git", 314 | "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b" 315 | }, 316 | "dist": { 317 | "type": "zip", 318 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b", 319 | "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b", 320 | "shasum": "" 321 | }, 322 | "require": { 323 | "php": ">=5.3.3" 324 | }, 325 | "type": "library", 326 | "autoload": { 327 | "classmap": [ 328 | "src/" 329 | ] 330 | }, 331 | "notification-url": "https://packagist.org/downloads/", 332 | "license": [ 333 | "BSD-3-Clause" 334 | ], 335 | "authors": [ 336 | { 337 | "name": "Sebastian Bergmann", 338 | "email": "sb@sebastian-bergmann.de", 339 | "role": "lead" 340 | } 341 | ], 342 | "description": "Utility class for timing", 343 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 344 | "keywords": [ 345 | "timer" 346 | ], 347 | "time": "2015-06-21 08:01:12" 348 | }, 349 | { 350 | "name": "phpunit/php-token-stream", 351 | "version": "1.4.8", 352 | "source": { 353 | "type": "git", 354 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 355 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da" 356 | }, 357 | "dist": { 358 | "type": "zip", 359 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 360 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 361 | "shasum": "" 362 | }, 363 | "require": { 364 | "ext-tokenizer": "*", 365 | "php": ">=5.3.3" 366 | }, 367 | "require-dev": { 368 | "phpunit/phpunit": "~4.2" 369 | }, 370 | "type": "library", 371 | "extra": { 372 | "branch-alias": { 373 | "dev-master": "1.4-dev" 374 | } 375 | }, 376 | "autoload": { 377 | "classmap": [ 378 | "src/" 379 | ] 380 | }, 381 | "notification-url": "https://packagist.org/downloads/", 382 | "license": [ 383 | "BSD-3-Clause" 384 | ], 385 | "authors": [ 386 | { 387 | "name": "Sebastian Bergmann", 388 | "email": "sebastian@phpunit.de" 389 | } 390 | ], 391 | "description": "Wrapper around PHP's tokenizer extension.", 392 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 393 | "keywords": [ 394 | "tokenizer" 395 | ], 396 | "time": "2015-09-15 10:49:45" 397 | }, 398 | { 399 | "name": "phpunit/phpunit", 400 | "version": "4.1.6", 401 | "source": { 402 | "type": "git", 403 | "url": "https://github.com/sebastianbergmann/phpunit.git", 404 | "reference": "241116219bb7e3b8111a36ffd8f37546888738d6" 405 | }, 406 | "dist": { 407 | "type": "zip", 408 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/241116219bb7e3b8111a36ffd8f37546888738d6", 409 | "reference": "241116219bb7e3b8111a36ffd8f37546888738d6", 410 | "shasum": "" 411 | }, 412 | "require": { 413 | "ext-dom": "*", 414 | "ext-json": "*", 415 | "ext-pcre": "*", 416 | "ext-reflection": "*", 417 | "ext-spl": "*", 418 | "php": ">=5.3.3", 419 | "phpunit/php-code-coverage": "~2.0", 420 | "phpunit/php-file-iterator": "~1.3.1", 421 | "phpunit/php-text-template": "~1.2", 422 | "phpunit/php-timer": "~1.0.2", 423 | "phpunit/phpunit-mock-objects": "2.1.5", 424 | "sebastian/comparator": "~1.0", 425 | "sebastian/diff": "~1.1", 426 | "sebastian/environment": "~1.0", 427 | "sebastian/exporter": "~1.0", 428 | "sebastian/version": "~1.0", 429 | "symfony/yaml": "~2.0" 430 | }, 431 | "suggest": { 432 | "phpunit/php-invoker": "~1.1" 433 | }, 434 | "bin": [ 435 | "phpunit" 436 | ], 437 | "type": "library", 438 | "extra": { 439 | "branch-alias": { 440 | "dev-master": "4.1.x-dev" 441 | } 442 | }, 443 | "autoload": { 444 | "classmap": [ 445 | "src/" 446 | ] 447 | }, 448 | "notification-url": "https://packagist.org/downloads/", 449 | "include-path": [ 450 | "", 451 | "../../symfony/yaml/" 452 | ], 453 | "license": [ 454 | "BSD-3-Clause" 455 | ], 456 | "authors": [ 457 | { 458 | "name": "Sebastian Bergmann", 459 | "email": "sebastian@phpunit.de", 460 | "role": "lead" 461 | } 462 | ], 463 | "description": "The PHP Unit Testing framework.", 464 | "homepage": "http://www.phpunit.de/", 465 | "keywords": [ 466 | "phpunit", 467 | "testing", 468 | "xunit" 469 | ], 470 | "time": "2014-08-17 08:07:02" 471 | }, 472 | { 473 | "name": "phpunit/phpunit-mock-objects", 474 | "version": "2.1.5", 475 | "source": { 476 | "type": "git", 477 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", 478 | "reference": "7878b9c41edb3afab92b85edf5f0981014a2713a" 479 | }, 480 | "dist": { 481 | "type": "zip", 482 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/7878b9c41edb3afab92b85edf5f0981014a2713a", 483 | "reference": "7878b9c41edb3afab92b85edf5f0981014a2713a", 484 | "shasum": "" 485 | }, 486 | "require": { 487 | "php": ">=5.3.3", 488 | "phpunit/php-text-template": "~1.2" 489 | }, 490 | "require-dev": { 491 | "phpunit/phpunit": "~4.1" 492 | }, 493 | "suggest": { 494 | "ext-soap": "*" 495 | }, 496 | "type": "library", 497 | "extra": { 498 | "branch-alias": { 499 | "dev-master": "2.1.x-dev" 500 | } 501 | }, 502 | "autoload": { 503 | "classmap": [ 504 | "src/" 505 | ] 506 | }, 507 | "notification-url": "https://packagist.org/downloads/", 508 | "include-path": [ 509 | "" 510 | ], 511 | "license": [ 512 | "BSD-3-Clause" 513 | ], 514 | "authors": [ 515 | { 516 | "name": "Sebastian Bergmann", 517 | "email": "sb@sebastian-bergmann.de", 518 | "role": "lead" 519 | } 520 | ], 521 | "description": "Mock Object library for PHPUnit", 522 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 523 | "keywords": [ 524 | "mock", 525 | "xunit" 526 | ], 527 | "time": "2014-06-12 07:22:15" 528 | }, 529 | { 530 | "name": "sebastian/comparator", 531 | "version": "1.2.0", 532 | "source": { 533 | "type": "git", 534 | "url": "https://github.com/sebastianbergmann/comparator.git", 535 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22" 536 | }, 537 | "dist": { 538 | "type": "zip", 539 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22", 540 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22", 541 | "shasum": "" 542 | }, 543 | "require": { 544 | "php": ">=5.3.3", 545 | "sebastian/diff": "~1.2", 546 | "sebastian/exporter": "~1.2" 547 | }, 548 | "require-dev": { 549 | "phpunit/phpunit": "~4.4" 550 | }, 551 | "type": "library", 552 | "extra": { 553 | "branch-alias": { 554 | "dev-master": "1.2.x-dev" 555 | } 556 | }, 557 | "autoload": { 558 | "classmap": [ 559 | "src/" 560 | ] 561 | }, 562 | "notification-url": "https://packagist.org/downloads/", 563 | "license": [ 564 | "BSD-3-Clause" 565 | ], 566 | "authors": [ 567 | { 568 | "name": "Jeff Welch", 569 | "email": "whatthejeff@gmail.com" 570 | }, 571 | { 572 | "name": "Volker Dusch", 573 | "email": "github@wallbash.com" 574 | }, 575 | { 576 | "name": "Bernhard Schussek", 577 | "email": "bschussek@2bepublished.at" 578 | }, 579 | { 580 | "name": "Sebastian Bergmann", 581 | "email": "sebastian@phpunit.de" 582 | } 583 | ], 584 | "description": "Provides the functionality to compare PHP values for equality", 585 | "homepage": "http://www.github.com/sebastianbergmann/comparator", 586 | "keywords": [ 587 | "comparator", 588 | "compare", 589 | "equality" 590 | ], 591 | "time": "2015-07-26 15:48:44" 592 | }, 593 | { 594 | "name": "sebastian/diff", 595 | "version": "1.4.1", 596 | "source": { 597 | "type": "git", 598 | "url": "https://github.com/sebastianbergmann/diff.git", 599 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e" 600 | }, 601 | "dist": { 602 | "type": "zip", 603 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e", 604 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e", 605 | "shasum": "" 606 | }, 607 | "require": { 608 | "php": ">=5.3.3" 609 | }, 610 | "require-dev": { 611 | "phpunit/phpunit": "~4.8" 612 | }, 613 | "type": "library", 614 | "extra": { 615 | "branch-alias": { 616 | "dev-master": "1.4-dev" 617 | } 618 | }, 619 | "autoload": { 620 | "classmap": [ 621 | "src/" 622 | ] 623 | }, 624 | "notification-url": "https://packagist.org/downloads/", 625 | "license": [ 626 | "BSD-3-Clause" 627 | ], 628 | "authors": [ 629 | { 630 | "name": "Kore Nordmann", 631 | "email": "mail@kore-nordmann.de" 632 | }, 633 | { 634 | "name": "Sebastian Bergmann", 635 | "email": "sebastian@phpunit.de" 636 | } 637 | ], 638 | "description": "Diff implementation", 639 | "homepage": "https://github.com/sebastianbergmann/diff", 640 | "keywords": [ 641 | "diff" 642 | ], 643 | "time": "2015-12-08 07:14:41" 644 | }, 645 | { 646 | "name": "sebastian/environment", 647 | "version": "1.3.3", 648 | "source": { 649 | "type": "git", 650 | "url": "https://github.com/sebastianbergmann/environment.git", 651 | "reference": "6e7133793a8e5a5714a551a8324337374be209df" 652 | }, 653 | "dist": { 654 | "type": "zip", 655 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6e7133793a8e5a5714a551a8324337374be209df", 656 | "reference": "6e7133793a8e5a5714a551a8324337374be209df", 657 | "shasum": "" 658 | }, 659 | "require": { 660 | "php": ">=5.3.3" 661 | }, 662 | "require-dev": { 663 | "phpunit/phpunit": "~4.4" 664 | }, 665 | "type": "library", 666 | "extra": { 667 | "branch-alias": { 668 | "dev-master": "1.3.x-dev" 669 | } 670 | }, 671 | "autoload": { 672 | "classmap": [ 673 | "src/" 674 | ] 675 | }, 676 | "notification-url": "https://packagist.org/downloads/", 677 | "license": [ 678 | "BSD-3-Clause" 679 | ], 680 | "authors": [ 681 | { 682 | "name": "Sebastian Bergmann", 683 | "email": "sebastian@phpunit.de" 684 | } 685 | ], 686 | "description": "Provides functionality to handle HHVM/PHP environments", 687 | "homepage": "http://www.github.com/sebastianbergmann/environment", 688 | "keywords": [ 689 | "Xdebug", 690 | "environment", 691 | "hhvm" 692 | ], 693 | "time": "2015-12-02 08:37:27" 694 | }, 695 | { 696 | "name": "sebastian/exporter", 697 | "version": "1.2.1", 698 | "source": { 699 | "type": "git", 700 | "url": "https://github.com/sebastianbergmann/exporter.git", 701 | "reference": "7ae5513327cb536431847bcc0c10edba2701064e" 702 | }, 703 | "dist": { 704 | "type": "zip", 705 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e", 706 | "reference": "7ae5513327cb536431847bcc0c10edba2701064e", 707 | "shasum": "" 708 | }, 709 | "require": { 710 | "php": ">=5.3.3", 711 | "sebastian/recursion-context": "~1.0" 712 | }, 713 | "require-dev": { 714 | "phpunit/phpunit": "~4.4" 715 | }, 716 | "type": "library", 717 | "extra": { 718 | "branch-alias": { 719 | "dev-master": "1.2.x-dev" 720 | } 721 | }, 722 | "autoload": { 723 | "classmap": [ 724 | "src/" 725 | ] 726 | }, 727 | "notification-url": "https://packagist.org/downloads/", 728 | "license": [ 729 | "BSD-3-Clause" 730 | ], 731 | "authors": [ 732 | { 733 | "name": "Jeff Welch", 734 | "email": "whatthejeff@gmail.com" 735 | }, 736 | { 737 | "name": "Volker Dusch", 738 | "email": "github@wallbash.com" 739 | }, 740 | { 741 | "name": "Bernhard Schussek", 742 | "email": "bschussek@2bepublished.at" 743 | }, 744 | { 745 | "name": "Sebastian Bergmann", 746 | "email": "sebastian@phpunit.de" 747 | }, 748 | { 749 | "name": "Adam Harvey", 750 | "email": "aharvey@php.net" 751 | } 752 | ], 753 | "description": "Provides the functionality to export PHP variables for visualization", 754 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 755 | "keywords": [ 756 | "export", 757 | "exporter" 758 | ], 759 | "time": "2015-06-21 07:55:53" 760 | }, 761 | { 762 | "name": "sebastian/recursion-context", 763 | "version": "1.0.2", 764 | "source": { 765 | "type": "git", 766 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 767 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791" 768 | }, 769 | "dist": { 770 | "type": "zip", 771 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791", 772 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791", 773 | "shasum": "" 774 | }, 775 | "require": { 776 | "php": ">=5.3.3" 777 | }, 778 | "require-dev": { 779 | "phpunit/phpunit": "~4.4" 780 | }, 781 | "type": "library", 782 | "extra": { 783 | "branch-alias": { 784 | "dev-master": "1.0.x-dev" 785 | } 786 | }, 787 | "autoload": { 788 | "classmap": [ 789 | "src/" 790 | ] 791 | }, 792 | "notification-url": "https://packagist.org/downloads/", 793 | "license": [ 794 | "BSD-3-Clause" 795 | ], 796 | "authors": [ 797 | { 798 | "name": "Jeff Welch", 799 | "email": "whatthejeff@gmail.com" 800 | }, 801 | { 802 | "name": "Sebastian Bergmann", 803 | "email": "sebastian@phpunit.de" 804 | }, 805 | { 806 | "name": "Adam Harvey", 807 | "email": "aharvey@php.net" 808 | } 809 | ], 810 | "description": "Provides functionality to recursively process PHP variables", 811 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 812 | "time": "2015-11-11 19:50:13" 813 | }, 814 | { 815 | "name": "sebastian/version", 816 | "version": "1.0.6", 817 | "source": { 818 | "type": "git", 819 | "url": "https://github.com/sebastianbergmann/version.git", 820 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6" 821 | }, 822 | "dist": { 823 | "type": "zip", 824 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 825 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 826 | "shasum": "" 827 | }, 828 | "type": "library", 829 | "autoload": { 830 | "classmap": [ 831 | "src/" 832 | ] 833 | }, 834 | "notification-url": "https://packagist.org/downloads/", 835 | "license": [ 836 | "BSD-3-Clause" 837 | ], 838 | "authors": [ 839 | { 840 | "name": "Sebastian Bergmann", 841 | "email": "sebastian@phpunit.de", 842 | "role": "lead" 843 | } 844 | ], 845 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 846 | "homepage": "https://github.com/sebastianbergmann/version", 847 | "time": "2015-06-21 13:59:46" 848 | }, 849 | { 850 | "name": "symfony/yaml", 851 | "version": "v2.8.2", 852 | "source": { 853 | "type": "git", 854 | "url": "https://github.com/symfony/yaml.git", 855 | "reference": "34c8a4b51e751e7ea869b8262f883d008a2b81b8" 856 | }, 857 | "dist": { 858 | "type": "zip", 859 | "url": "https://api.github.com/repos/symfony/yaml/zipball/34c8a4b51e751e7ea869b8262f883d008a2b81b8", 860 | "reference": "34c8a4b51e751e7ea869b8262f883d008a2b81b8", 861 | "shasum": "" 862 | }, 863 | "require": { 864 | "php": ">=5.3.9" 865 | }, 866 | "type": "library", 867 | "extra": { 868 | "branch-alias": { 869 | "dev-master": "2.8-dev" 870 | } 871 | }, 872 | "autoload": { 873 | "psr-4": { 874 | "Symfony\\Component\\Yaml\\": "" 875 | }, 876 | "exclude-from-classmap": [ 877 | "/Tests/" 878 | ] 879 | }, 880 | "notification-url": "https://packagist.org/downloads/", 881 | "license": [ 882 | "MIT" 883 | ], 884 | "authors": [ 885 | { 886 | "name": "Fabien Potencier", 887 | "email": "fabien@symfony.com" 888 | }, 889 | { 890 | "name": "Symfony Community", 891 | "homepage": "https://symfony.com/contributors" 892 | } 893 | ], 894 | "description": "Symfony Yaml Component", 895 | "homepage": "https://symfony.com", 896 | "time": "2016-01-13 10:28:07" 897 | } 898 | ], 899 | "aliases": [], 900 | "minimum-stability": "stable", 901 | "stability-flags": [], 902 | "prefer-stable": false, 903 | "prefer-lowest": false, 904 | "platform": [], 905 | "platform-dev": [] 906 | } 907 | -------------------------------------------------------------------------------- /config/default.js: -------------------------------------------------------------------------------- 1 | module.exports = (function () { 2 | 3 | 'use strict'; 4 | 5 | return { 6 | author: { 7 | email: 'manovotny@gmail.com', 8 | name: 'Michael Novotny', 9 | url: 'http://manovotny.com', 10 | username: 'manovotny' 11 | }, 12 | files: { 13 | browserify: 'bundle' 14 | }, 15 | paths: { 16 | curl: 'curl_downloads', 17 | source: 'src', 18 | translations: 'lang' 19 | }, 20 | project: { 21 | composer: { 22 | name: 'manovotny/wp-gist', 23 | type: 'library' // Should be `library` or `project`. 24 | }, 25 | description: 'Adds support for GitHub Gist embeds in WordPress.', 26 | git: 'git://github.com/manovotny/wp-gist.git', 27 | name: 'WP Gist', 28 | slug: 'wp-gist', 29 | type: 'plugin', // Should be `plugin` or `theme`. 30 | url: 'https://github.com/manovotny/wp-gist', 31 | version: '3.1.0' 32 | } 33 | }; 34 | 35 | }()); 36 | -------------------------------------------------------------------------------- /config/index.php: -------------------------------------------------------------------------------- 1 | ', 56 | to: ' <' + config.author.url + '>' 57 | }, 58 | { 59 | from: 'Author URI: ' + replace.author.url, 60 | to: 'Author URI: ' + config.author.url 61 | }, 62 | { 63 | from: '"homepage": "' + replace.author.url + '"', 64 | to: '"homepage": "' + config.author.url + '"' 65 | } 66 | ] 67 | }, 68 | author_username: { 69 | src: [ 70 | 'style.css' 71 | ], 72 | overwrite: overwrite, 73 | replacements: [ 74 | { 75 | from: 'Author: ' + replace.author.username, 76 | to: 'Author: ' + config.author.username 77 | } 78 | ] 79 | }, 80 | project_composer_name: { 81 | src: [ 82 | 'composer.json' 83 | ], 84 | overwrite: overwrite, 85 | replacements: [ 86 | { 87 | from: '"name": "' + replace.project.composer.name + '"', 88 | to: '"name": "' + config.project.composer.name + '"' 89 | } 90 | ] 91 | }, 92 | project_composer_type: { 93 | src: [ 94 | 'composer.json' 95 | ], 96 | overwrite: overwrite, 97 | replacements: [ 98 | { 99 | from: '"type": "' + replace.project.composer.type + '"', 100 | to: '"type": "' + config.project.composer.type + '"' 101 | } 102 | ] 103 | }, 104 | project_description: { 105 | src: [ 106 | '*.php', 107 | '*.json', 108 | 'README.md', 109 | 'style.css' 110 | ], 111 | overwrite: overwrite, 112 | replacements: [ 113 | { 114 | from: '"description": "' + replace.project.description + '"', 115 | to: '"description": "' + config.project.description + '"' 116 | }, 117 | { 118 | from: 'Description: ' + replace.project.description, 119 | to: 'Description: ' + config.project.description 120 | }, 121 | { 122 | from: replace.project.description, 123 | to: config.project.description 124 | } 125 | ] 126 | }, 127 | project_git: { 128 | src: [ 129 | 'bower.json', 130 | 'package.json' 131 | ], 132 | overwrite: overwrite, 133 | replacements: [ 134 | { 135 | from: '"url": "' + replace.project.git + '"', 136 | to: '"url": "' + config.project.git + '"' 137 | } 138 | ] 139 | }, 140 | project_name: { 141 | src: [ 142 | '*.php', 143 | 'style.css' 144 | ], 145 | overwrite: overwrite, 146 | replacements: [ 147 | { 148 | from: 'Plugin Name: ' + replace.project.name, 149 | to: 'Plugin Name: ' + config.project.name 150 | }, 151 | { 152 | from: 'Theme Name: ' + replace.project.name, 153 | to: 'Theme Name: ' + config.project.name 154 | } 155 | ] 156 | }, 157 | project_slug: { 158 | src: [ 159 | 'bower.json', 160 | 'composer.json', 161 | 'package.json', 162 | 'README.md' 163 | ], 164 | overwrite: overwrite, 165 | replacements: [ 166 | { 167 | from: '"name": "' + replace.project.slug + '"', 168 | to: '"name": "' + config.project.slug + '"' 169 | }, 170 | { 171 | from: replace.project.slug + '.php', 172 | to: config.project.slug + '.php' 173 | }, 174 | { 175 | from: replace.project.slug, 176 | to: config.project.slug 177 | } 178 | ] 179 | }, 180 | project_url: { 181 | src: [ 182 | '*.php', 183 | 'composer.json', 184 | 'style.css' 185 | ], 186 | overwrite: overwrite, 187 | replacements: [ 188 | { 189 | from: 'GitHub Plugin URI: ' + replace.project.url, 190 | to: 'GitHub Plugin URI: ' + config.project.url 191 | }, 192 | { 193 | from: 'GitHub Theme URI: ' + replace.project.url, 194 | to: 'GitHub Theme URI: ' + config.project.url 195 | }, 196 | { 197 | from: '"homepage": "' + replace.project.url + '"', 198 | to: '"homepage": "' + config.project.url + '"' 199 | }, 200 | { 201 | from: 'Plugin URI: ' + replace.project.url, 202 | to: 'Plugin URI: ' + config.project.url 203 | }, 204 | { 205 | from: 'Theme URI: ' + replace.project.url, 206 | to: 'Theme URI: ' + config.project.url 207 | } 208 | ] 209 | }, 210 | project_version: { 211 | src: [ 212 | '*.php', 213 | '*.json', 214 | 215 | config.paths.source + '/classes/*.php', 216 | 217 | 'style.css' 218 | ], 219 | overwrite: overwrite, 220 | replacements: [ 221 | { 222 | from: '"version": "' + replace.project.version + '"', 223 | to: '"version": "' + config.project.version + '"' 224 | }, 225 | { 226 | from: 'Version: ' + replace.project.version, 227 | to: 'Version: ' + config.project.version 228 | }, 229 | { 230 | from: '$version = \'' + replace.project.version + '\'', 231 | to: '$version = \'' + config.project.version + '\'' 232 | } 233 | ] 234 | }, 235 | translations_domain: { 236 | src: [ 237 | '*.php', 238 | 'style.css' 239 | ], 240 | overwrite: overwrite, 241 | replacements: [ 242 | { 243 | from: 'Text Domain: ' + replace.translations.domain, 244 | to: 'Text Domain: ' + config.project.slug 245 | } 246 | ] 247 | }, 248 | translations_path: { 249 | src: [ 250 | '*.php', 251 | 'style.css' 252 | ], 253 | overwrite: overwrite, 254 | replacements: [ 255 | { 256 | from: 'Domain Path: /' + replace.translations.path, 257 | to: 'Domain Path: /' + config.paths.translations 258 | } 259 | ] 260 | }, 261 | update_author: { 262 | src: [ 263 | replaceFile 264 | ], 265 | overwrite: overwrite, 266 | replacements: [ 267 | { 268 | from: 'email: \'' + replace.author.email + '\'', 269 | to: 'email: \'' + config.author.email + '\'' 270 | }, 271 | { 272 | from: 'name: \'' + replace.author.name + '\'', 273 | to: 'name: \'' + config.author.name + '\'' 274 | }, 275 | { 276 | from: 'url: \'' + replace.author.url + '\'', 277 | to: 'url: \'' + config.author.url + '\'' 278 | }, 279 | { 280 | from: 'username: \'' + replace.author.username + '\'', 281 | to: 'username: \'' + config.author.username + '\'' 282 | } 283 | ] 284 | }, 285 | update_project: { 286 | src: [ 287 | replaceFile 288 | ], 289 | overwrite: overwrite, 290 | replacements: [ 291 | { 292 | from: 'name: \'' + replace.project.composer.name + '\'', 293 | to: 'name: \'' + config.project.composer.name + '\'' 294 | }, 295 | { 296 | from: 'type: \'' + replace.project.composer.type + '\'', 297 | to: 'type: \'' + config.project.composer.type + '\'' 298 | }, 299 | { 300 | from: 'description: \'' + replace.project.description + '\'', 301 | to: 'description: \'' + config.project.description + '\'' 302 | }, 303 | { 304 | from: 'domain: \'' + replace.translations.domain + '\'', 305 | to: 'domain: \'' + config.project.slug + '\'' 306 | }, 307 | { 308 | from: 'git: \'' + replace.project.git + '\'', 309 | to: 'git: \'' + config.project.git + '\'' 310 | }, 311 | { 312 | from: 'name: \'' + replace.project.name + '\'', 313 | to: 'name: \'' + config.project.name + '\'' 314 | }, 315 | { 316 | from: 'path: \'' + replace.translations.path + '\'', 317 | to: 'path: \'' + config.paths.translations + '\'' 318 | }, 319 | { 320 | from: 'slug: \'' + replace.project.slug + '\'', 321 | to: 'slug: \'' + config.project.slug + '\'' 322 | }, 323 | { 324 | from: 'type: \'' + replace.project.type + '\'', 325 | to: 'type: \'' + config.project.type + '\'' 326 | }, 327 | { 328 | from: 'url: \'' + replace.project.url + '\'', 329 | to: 'url: \'' + config.project.url + '\'' 330 | }, 331 | { 332 | from: 'username: \'' + replace.project.username + '\'', 333 | to: 'username: \'' + config.project.username + '\'' 334 | }, 335 | { 336 | from: 'version: \'' + replace.project.version + '\'', 337 | to: 'version: \'' + config.project.version + '\'' 338 | } 339 | ] 340 | }, 341 | update_translations: { 342 | src: [ 343 | replaceFile 344 | ], 345 | overwrite: overwrite, 346 | replacements: [ 347 | { 348 | from: 'domain: \'' + replace.translations.domain + '\'', 349 | to: 'domain: \'' + config.project.slug + '\'' 350 | }, 351 | { 352 | from: 'path: \'' + replace.translations.path + '\'', 353 | to: 'path: \'' + config.paths.translations + '\'' 354 | } 355 | ] 356 | } 357 | }); 358 | 359 | }; 360 | -------------------------------------------------------------------------------- /grunt/index.php: -------------------------------------------------------------------------------- 1 | ", 6 | "repository": { 7 | "type": "git", 8 | "url": "git://github.com/manovotny/wp-gist.git" 9 | }, 10 | "devDependencies": { 11 | "config": "~1.8.1", 12 | "glob": "~4.3.1", 13 | "grunt": "~0.4.5", 14 | "grunt-autoprefixer": "~2.0.0", 15 | "grunt-cli": "^0.1.13", 16 | "grunt-contrib-clean": "~0.6.0", 17 | "grunt-contrib-copy": "^0.8.2", 18 | "grunt-contrib-cssmin": "~0.10.0", 19 | "grunt-contrib-jshint": "~0.10.0", 20 | "grunt-contrib-watch": "~0.6.1", 21 | "grunt-curl": "~2.0.3", 22 | "grunt-jscs": "~1.0.0", 23 | "grunt-phplint": "0.0.5", 24 | "grunt-phpunit": "~0.3.6", 25 | "grunt-rename": "~0.1.4", 26 | "grunt-sass": "~0.17.0", 27 | "grunt-sass-lint": "^0.1.0", 28 | "grunt-shell": "~1.1.1", 29 | "grunt-text-replace": "~0.4.0", 30 | "jshint-stylish": "~1.0.0", 31 | "load-grunt-config": "~0.16.0", 32 | "lodash": "~2.4.1", 33 | "scut": "^1.3.1" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/admin/css/admin.css: -------------------------------------------------------------------------------- 1 | .wp-gist-shortcode-notice:after { 2 | content: ""; 3 | display: table; 4 | clear: both; } 5 | 6 | .wp-gist-shortcode-notice { 7 | background-color: #fcf3ef; 8 | border: 1px solid #e5e5e5; 9 | border-left: 4px solid #d54e21; 10 | margin: 45px 20px 0 0; 11 | padding: 10px; } 12 | .wp-gist-shortcode-notice .message { 13 | display: inline-block; 14 | float: left; 15 | margin-top: 5px; } 16 | .wp-gist-shortcode-notice .learn-more { 17 | display: inline-block; 18 | margin-left: 5px; } 19 | .wp-gist-shortcode-notice .button { 20 | float: right; } 21 | -------------------------------------------------------------------------------- /src/admin/css/admin.min.css: -------------------------------------------------------------------------------- 1 | .wp-gist-shortcode-notice:after{content:"";display:table;clear:both}.wp-gist-shortcode-notice{background-color:#fcf3ef;border:1px solid #e5e5e5;border-left:4px solid #d54e21;margin:45px 20px 0 0;padding:10px}.wp-gist-shortcode-notice .message{display:inline-block;float:left;margin-top:5px}.wp-gist-shortcode-notice .learn-more{display:inline-block;margin-left:5px}.wp-gist-shortcode-notice .button{float:right} -------------------------------------------------------------------------------- /src/admin/index.php: -------------------------------------------------------------------------------- 1 | get_slug() . '-styles'; 59 | $relative_path = __DIR__ . '/../site/css/'; 60 | $filename = 'style.min.css'; 61 | $filename_debug = 'style.css'; 62 | $dependencies = array(); 63 | $version = $wp_gist->get_version(); 64 | 65 | $options = new WP_Enqueue_Options( 66 | $handle, 67 | $relative_path, 68 | $filename, 69 | $filename_debug, 70 | $dependencies, 71 | $version 72 | ); 73 | 74 | $wp_enqueue_util->enqueue_style( $options ); 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/classes/class-wp-gist-shortcode-notice.php: -------------------------------------------------------------------------------- 1 | is_updating_shortcode() ) { 65 | 66 | add_action( 'admin_init', array( $this, '__update' ) ); 67 | 68 | } else if ( $this->shortcode_has_not_been_updated() && $this->old_shortcode_found_in_posts() ) { 69 | 70 | add_action( 'admin_enqueue_scripts', array( $this, '__enqueue_styles' ) ); 71 | add_action( 'admin_notices', array( $this, '__render' ) ); 72 | 73 | } 74 | 75 | } 76 | 77 | /* Private 78 | ---------------------------------------------------------------------------------- */ 79 | 80 | /** 81 | * Enqueues styles. 82 | */ 83 | public function __enqueue_styles() { 84 | 85 | $wp_enqueue_util = WP_Enqueue_Util::get_instance(); 86 | $wp_gist = WP_Gist::get_instance(); 87 | 88 | $handle = $wp_gist->get_slug() . '-admin-styles'; 89 | $relative_path = __DIR__ . '/../admin/css/'; 90 | $filename = 'admin.min.css'; 91 | $filename_debug = 'admin.css'; 92 | $dependencies = array(); 93 | $version = $wp_gist->get_version(); 94 | 95 | $options = new WP_Enqueue_Options( 96 | $handle, 97 | $relative_path, 98 | $filename, 99 | $filename_debug, 100 | $dependencies, 101 | $version 102 | ); 103 | 104 | $wp_enqueue_util->enqueue_style( $options ); 105 | 106 | } 107 | 108 | /** 109 | * Renders view. 110 | */ 111 | public function __render() { 112 | 113 | echo '
'; 114 | echo '
'; 115 | echo wp_nonce_field( $this->slug, $this->nonce ); 116 | echo 'WP Gist needs to change the shortcode from gist to wpgist. Learn more'; 117 | echo ''; 118 | echo '
'; 119 | echo '
'; 120 | 121 | } 122 | 123 | /** 124 | * Updates shortcode. 125 | */ 126 | public function __update() { 127 | 128 | if ( $this->can_user_update_shortcode( $this->nonce ) ) { 129 | 130 | global $wpdb; 131 | 132 | $success = $wpdb->query( 133 | " 134 | UPDATE 135 | $wpdb->posts 136 | SET 137 | post_content = REPLACE(post_content, '[gist', '[wpgist') 138 | WHERE 139 | post_content LIKE CONCAT('%', '[gist', '%') 140 | " 141 | ); 142 | 143 | if ( false !== $success ) { 144 | 145 | $this->record_shorcode_has_been_updated(); 146 | 147 | } 148 | 149 | } 150 | 151 | } 152 | 153 | /** 154 | * Verifies the user has triggered the update of the shortcode. 155 | * 156 | * @param string $nonce The nonce for updating the shortcode. 157 | * @return boolean Whether the user triggered the update or not. 158 | */ 159 | private function can_user_update_shortcode( $nonce ) { 160 | 161 | return ( isset( $_POST[ $nonce ] ) && wp_verify_nonce( $_POST[ $nonce ], $this->slug ) ); 162 | 163 | } 164 | 165 | /** 166 | * Checks to see of any posts have the old shortcode in them or not. 167 | * 168 | * @return boolean Whether any posts have the old shortcode in them or not. 169 | */ 170 | private function old_shortcode_found_in_posts() { 171 | 172 | global $wpdb; 173 | 174 | $posts_using_shortcode = $wpdb->query( 175 | " 176 | SELECT 177 | ID 178 | FROM 179 | $wpdb->posts 180 | WHERE 181 | post_content LIKE CONCAT('%', '[gist', '%') 182 | " 183 | ); 184 | 185 | return ( ! empty( $posts_using_shortcode ) ); 186 | 187 | } 188 | 189 | /** 190 | * Records that the shortcode has been updated. 191 | */ 192 | private function record_shorcode_has_been_updated() { 193 | 194 | update_option( $this->updated, true ); 195 | 196 | } 197 | 198 | /** 199 | * Determines whether the shortcode has been updated. 200 | * 201 | * @return boolean Whether the shortcode has been updated or not. 202 | */ 203 | private function shortcode_has_not_been_updated() { 204 | 205 | return ( false === get_option( $this->updated ) ); 206 | 207 | } 208 | 209 | /** 210 | * Determines whether the shortcode is in the process up updating. 211 | * 212 | * @return boolean Whether the shortcode is in the process of updating or not. 213 | */ 214 | 215 | private function is_updating_shortcode() { 216 | 217 | return ( isset( $_POST[ $this->slug ] ) && isset( $_POST[ $this->nonce ] ) ); 218 | 219 | } 220 | 221 | } -------------------------------------------------------------------------------- /src/classes/class-wp-gist-shortcode.php: -------------------------------------------------------------------------------- 1 | '', 62 | 'id' => '', 63 | 'url' => '' 64 | ), 65 | $attributes 66 | ) 67 | ); 68 | 69 | if ( empty( $id ) && empty( $url ) ) { 70 | 71 | return ''; 72 | } 73 | 74 | if ( ! empty( $id ) ) { 75 | 76 | $url = 'https://gist.github.com/' . $id . '.js'; 77 | 78 | } else { 79 | 80 | $url .= '.js'; 81 | 82 | } 83 | 84 | if ( ! empty( $file ) ) { 85 | 86 | $url .= '?file=' . $file; 87 | 88 | } 89 | 90 | return ''; 91 | 92 | } 93 | 94 | } 95 | -------------------------------------------------------------------------------- /src/classes/class-wp-gist.php: -------------------------------------------------------------------------------- 1 | slug; 57 | 58 | } 59 | 60 | /** 61 | * Gets version. 62 | * 63 | * @return string Version. 64 | */ 65 | public function get_version() { 66 | 67 | return $this->version; 68 | 69 | } 70 | 71 | } 72 | -------------------------------------------------------------------------------- /src/classes/index.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GPL-3.0+ 8 | * @link https://github.com/manovotny/wp-gist 9 | * @copyright 2014 Michael Novotny 10 | */ 11 | 12 | // Check that uninstall was triggerd by WordPress. 13 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { 14 | 15 | // Illegal execution. 16 | exit; 17 | } 18 | 19 | // Set option. 20 | $shortcode_option = 'wp_gist_shortcode_updated'; 21 | 22 | // Check for multisite. 23 | if ( is_multisite() ) { 24 | 25 | global $wpdb; 26 | 27 | // Get blog ids. 28 | $blog_ids = $wpdb->get_col( 29 | " 30 | SELECT 31 | blog_id 32 | FROM 33 | $wpdb->blogs 34 | " 35 | ); 36 | 37 | // Get current blog id. 38 | $current_blog_id = get_current_blog_id(); 39 | 40 | // Loop over all blogs 41 | foreach ( $blog_ids as $blog_id ) { 42 | 43 | // Switch to blog. 44 | switch_to_blog( $blog_id ); 45 | 46 | // Delete shortcode admin option. 47 | delete_option( $shortcode_option ); 48 | 49 | } // end foreach 50 | 51 | // Switch back to current blog. 52 | switch_to_blog( $current_blog_id ); 53 | 54 | // Delete site shortcode admin option. 55 | delete_site_option( $shortcode_option ); 56 | 57 | // Single site. 58 | } else { 59 | 60 | // Delete shortcode admin option. 61 | delete_option( $shortcode_option ); 62 | 63 | } // end if / else -------------------------------------------------------------------------------- /wp-gist.php: -------------------------------------------------------------------------------- 1 |