- Make sure
phpBB/docs/CREDTIS.txt
is up to date - Make sure Contributors have their ranks
- Make sure all reports in the security tracker are closed or invalid
- Go through Issues fixed in 3.1.5 and correct any unreadable descriptions
- Check the feature hightlights wiki page for completeness
- Branch of
prep-release-3.1.5
from 3.1.x:
Yet another framework syndrome
Name | Date | URL | Stars |
---|---|---|---|
Jake | April 2010 | https://github.com/mde/jake | 1000 |
Brunch | January 2011 | http://brunch.io/ | 3882 |
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
MODNAME = Some MOD | |
VERSION = 1.0.0 | |
PACKAGENAME = QuotePostBackLink.zip | |
PACKAGEFILES = install.xml license.txt modx.prosilver.en.xsl root | |
CURL = /usr/bin/curl | |
GIT = /usr/bin/git | |
.title: | |
@echo "$(MODNAME) - $(VERSION)\n" |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
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
presentation | |
.title('My Great Presentation') | |
.slide({ | |
title: 'Learn About Borders', | |
bullets: [ | |
'Thing 1', | |
'Thing 2', | |
], | |
code: ['path/to/file.css', [2,4]] // path to file, lines to grab |
Composer is a new dependency manager for PHP. It allows you to specify dependencies on a per-project basis. It takes lots of inspiration from NPM and ruby's bundler.
All you need to support composer is a composer.json file. In order to allow easy installation, the repository needs to be added to packagist, which is the standard repository for composer. Packagist will fetch all the versions from your github repository tags.
Once it has been added, adding {PROJECT} to a project will be as easy as creating this composer.json file in the project's directory:
{
"require": {
"{VENDOR}/{PROJECT}": "{VERSION}"
}
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
#!/bin/sh | |
# Compile a list of changed files | |
FILES=`git diff --name-only HEAD^` | |
# Attempt to fix whitespace issues | |
for FILE in `egrep -l '(\s$| {1,3}\t)' $FILES` | |
do | |
# Remove trailing whitespace | |
(sed -i 's/[ ]*$//' $FILE > /dev/null 2>&1 || sed -i '' -E 's/[ ]*$//' $FILE) |
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 | |
/** | |
* | |
* @package Language File Conflict Detector | |
* @version $Id$ | |
* @copyright (c) 2012 nickvergessen nickvergessen@gmx.de http://www.flying-bits.org | |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | |
* | |
*/ |
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
{ | |
"name": "phpbb-blog/phpbb-blog", | |
"type": "phpbb3-extension", | |
"description": "An super cool example manifest extension.", | |
"homepage": "https://gist.github.com/gists/1835060", | |
"version": "1.0.0", | |
"time": "2012-02-15", | |
"licence": "GNU GPL v2", | |
"authors": [{ | |
"name": "Michael Cullum", |
NewerOlder