Skip to content

Commit 7fcb8e2

Browse files
author
root
committed
initial commit
0 parents  commit 7fcb8e2

Some content is hidden

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

43 files changed

+4295
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
searches.sqlite
2+
cache/*
3+
playlists/*
4+
pma/*
5+
stats/*
6+
reddit/cache/*
7+
icon/*
8+
database.db
9+
.idea
10+
config.php

.htaccess

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<IfModule mod_rewrite.c>
2+
RewriteEngine On
3+
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
4+
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]
5+
6+
RewriteCond %{QUERY_STRING} !marker
7+
RewriteCond %{QUERY_STRING} id=([-a-zA-Z0-9_+]+)
8+
RewriteRule ^/?index\.php$ %1? [R=301,L]
9+
RewriteRule ^/?([-a-zA-Z0-9_+]+)$ index.php?marker&id=$1 [L]
10+
</IfModule>
11+
12+
13+
14+
15+
16+
17+
18+

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
instadj
2+
=======
3+
4+
Easy to use Web app for creating and sharing YouTube playlists
5+
6+
![Screenshot](http://filedump.fredsted.me/Screen%20Shot%202014-12-06%20at%2023.20.17.png)

0 commit comments

Comments
 (0)