This file contains 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 | |
// Written by Leevi Graham - Technical Director - http://newism.com.au | |
// All the best EE extensions can be found at: http://leevigraham.com !! | |
/** | |
The function below demonstrates how to use the weblog obect | |
to parse your own custom module / plugin tags | |
Usage {exp:my_plugin:use_weblog_object} ... {exp:my_plugin:use_weblog_object} | |
The tag will now behave like an exp:weblog:entries tag accepting the same params |
This file contains 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
<!-- | |
// Add these two meta tags to yourdomain.com. | |
// Now you can use yourdomain.com as your OpenID | |
// and authenticate using your Google account. | |
// Thanks: http://www.abstractioneer.org/2009/12/openid-delegation-for-googles-op.html | |
--> | |
<link rel="openid2.provider" href="https://www.google.com/accounts/o8/ud?source=profiles" > | |
<link rel="openid2.local_id" href="http://www.google.com/profiles/[your_google_profile_name]" > |
This file contains 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
# | |
# Explanation: | |
# `--adjust-extension` | |
# Add `.html` file extension to any files of type `application/xhtml + xml` or `text/html`. | |
# Add `.css` file extension to any files of type `text/css`. | |
# | |
# `--convert-links` | |
# Convert full links to relative. | |
# | |
# `--level=inf` (`-l inf`) |
This file contains 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
# Initial setup | |
git clone -o framework -b develop https://github.com/laravel/laravel.git project-name | |
cd project-name | |
git checkout --orphan master | |
git commit -m "Initial commit" | |
# Pulling changes | |
git fetch framework | |
git merge --squash -m "Upgrade Laravel" framework/develop | |
# Fix merge conflicts if any and commit |