Skip to content

Commit b24c4fb

Browse files
committedSep 4, 2013
Moved files from old site. Restructured a bit. Fixed validation.
1 parent 6eb9126 commit b24c4fb

File tree

219 files changed

+17787
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+17787
-0
lines changed
 

‎.travis.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
8+
env:
9+
- WP_VERSION=master WP_MULTISITE=0
10+
- WP_VERSION=3.5.2 WP_MULTISITE=0
11+
- WP_VERSION=3.5.1 WP_MULTISITE=0
12+
- WP_VERSION=3.5 WP_MULTISITE=0
13+
- WP_VERSION=master WP_MULTISITE=1
14+
- WP_VERSION=3.5.2 WP_MULTISITE=1
15+
- WP_VERSION=3.5.1 WP_MULTISITE=1
16+
- WP_VERSION=3.5 WP_MULTISITE=1
17+
18+
before_script:
19+
- php kill-travis.php
20+
- mkdir -p tmp
21+
- WP_CORE_DIR=tmp/wordpress/
22+
- WP_TESTS_DIR=tmp/wordpress-tests/
23+
- svn co --ignore-externals http://core.svn.wordpress.org/trunk/ tmp/wordpress/
24+
- svn co --ignore-externals http://unit-tests.svn.wordpress.org/trunk/ tmp/wordpress-tests/
25+
- cp tmp/wordpress-tests/wp-tests-config-sample.php tmp/wordpress-tests/wp-tests-config.php
26+
- sed -i "s:dirname( __FILE__ ) . '/wordpress/':'$WP_CORE_DIR':" tmp/wordpress-tests/wp-tests-config.php
27+
- sed -i "s/yourdbnamehere/wordpress_test/" tmp/wordpress-tests/wp-tests-config.php
28+
- sed -i "s/yourusernamehere/root/" tmp/wordpress-tests/wp-tests-config.php
29+
- sed -i "s/yourpasswordhere//" tmp/wordpress-tests/wp-tests-config.php
30+
- mysql -e 'CREATE DATABASE wordpress_test;' -uroot
31+
32+
script:
33+
- phpunit
34+
- php tests/includes/clover.php tests/clover.xml 90
35+
36+
notifications:
37+
email:
38+
recipients:
39+
- ghost1227@reduxframework.com
40+
on_success: change
41+
on_failure: always

‎assets/css/custom.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
*
3+
* Don't forget to set custom_css to true in the defaults.php file!
4+
*
5+
*/
6+
7+
@import url('options.css');

0 commit comments

Comments
 (0)
Please sign in to comment.