Skip to content

Commit 66c6c8c

Browse files
committed
Add Mozilla Persona authentication
1 parent b93d76a commit 66c6c8c

Some content is hidden

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

44 files changed

+470
-269
lines changed

.ftpquota

100644100755
File mode changed.

.project

100644100755
+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55
<projects>
66
</projects>
77
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.validation.validationbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.dltk.core.scriptbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
823
<buildCommand>
924
<name>com.aptana.ide.core.unifiedBuilder</name>
1025
<arguments>
@@ -18,5 +33,7 @@
1833
</buildSpec>
1934
<natures>
2035
<nature>com.aptana.editor.php.phpNature</nature>
36+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
37+
<nature>org.eclipse.php.core.PHPNature</nature>
2138
</natures>
2239
</projectDescription>

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

_/css/ie-css3.htc

100644100755
File mode changed.

_/css/index.php

100644100755
File mode changed.

_/css/reset.css

100644100755
File mode changed.

_/css/style.css

100644100755
File mode changed.

_/css/style2.css

100644100755
File mode changed.

_/img/Thumbs.db

100644100755
File mode changed.

_/img/bg.png

100644100755
File mode changed.

_/img/cc.png

100644100755
File mode changed.

_/img/chrome.png

100644100755
File mode changed.

_/img/email.png

100644100755
File mode changed.

_/img/favicon.ico

100644100755
File mode changed.

_/img/fb.png

100644100755
File mode changed.

_/img/firefox.png

100644100755
File mode changed.

_/img/icon_cc.gif

100644100755
File mode changed.

_/img/index.php

100644100755
File mode changed.

_/img/load.gif

100644100755
File mode changed.

_/img/logo.png

100644100755
File mode changed.

_/img/na.png

100644100755
File mode changed.

_/img/none.1.png

100644100755
File mode changed.

_/img/none.png

100644100755
File mode changed.

_/img/search.png

100644100755
File mode changed.

_/img/stick.png

100644100755
File mode changed.

_/img/tel.png

100644100755
File mode changed.

_/img/up.png

100644100755
File mode changed.

_/index.php

100644100755
File mode changed.

_/js/functions.js

100644100755
File mode changed.

_/js/index.php

100644100755
File mode changed.

_/js/jquery-1.5.1.min.js

100644100755
File mode changed.

_/js/jquery.easing.js

100644100755
File mode changed.

_/js/jquery.smooth-scroll.js

100644100755
File mode changed.

_/js/jquery.tools.min.js

100644100755
File mode changed.

_/js/modernizr-1.7.min.js

100644100755
File mode changed.

config.php

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

3-
$db = "DB Name";
4-
$connection = mysql_connect("host", "user", "password") or die("Database Connection Problem");
3+
$db = "permut";
4+
$connection = mysql_connect("localhost", "test", "test") or die("Database Connection Problem");
55
// Test Connection
66
if (!$connection)
77
die("connection impossible");

db/db_schema.sql

100644100755
File mode changed.

filtre.php

100644100755
File mode changed.

functions.php

100644100755
File mode changed.

0 commit comments

Comments
 (0)