Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Création du RssExpander et utilisation dans Gawker et Sexactu #121

Merged
merged 20 commits into from
Apr 24, 2015
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4857cdb
ajout des scriptsd e Superbaillot
Feb 4, 2014
1323226
ajout du script pour Sexactu
Feb 4, 2014
4f1d413
premire modification qui ne marche pas
Feb 4, 2014
dbe9ae4
Correctiond e quelques boulettes, mais ca ne marche toujours pas
Feb 5, 2014
1644a85
Finally, a working Seactu bridge (I ahve however a bug with trailing …
Feb 18, 2014
5f150d3
Outputting path to expected bridge should help newcomers feeling welc…
Feb 18, 2014
f797641
fixed title formatting
Feb 20, 2014
79e4e9f
added a bridge for one Liberation blog that could easily be extended …
Feb 20, 2014
ef0ce7d
Strangely, those bridges didn't seems to work exactly as expected
Feb 20, 2014
62a5265
updated description
Feb 20, 2014
f2f82c7
Prepared Gawker bridge by extracting file cache from initial Liberati…
Mar 3, 2014
fda3e98
Allowed cache disabling to be performed on a per-query basis (very us…
Mar 26, 2014
954bc4d
Improved caching behaviour and allowed subclasses to easily use loggi…
Mar 26, 2014
e564559
Fixes #42 by adding a working bridge, complete with section specific …
Mar 26, 2014
0fa32c7
added a simple method to allow all subclasses to easily relocate imag…
Mar 26, 2014
1a12f48
Working WorldOfTanks official news bridge, complete with images and c…
Mar 26, 2014
fd71cea
Adding a meta-bridge for all Gawker publications (lifehacker, kotaku,…
Apr 2, 2014
ce28cfa
Rewritten those bridge to use a new mechanism ! RSS expander will get…
Mar 18, 2015
a5f52b8
Merge remote-tracking branch 'upstream/master'
Apr 6, 2015
0f6fdb0
Merge branch 'live'
Apr 6, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Outputting path to expected bridge should help newcomers feeling welc…
…omed, no ?
  • Loading branch information
Nicolas Delsaux committed Feb 18, 2014

Verified

This commit was signed with the committer’s verified signature.
crummel Chris Rummel
commit 5f150d3ae53c9c9597c19a9181915f59eb06226e
4 changes: 2 additions & 2 deletions lib/Bridge.php
Original file line number Diff line number Diff line change
@@ -92,9 +92,9 @@ static public function create($nameBridge){
}

$pathBridge = self::getDir() . $nameBridge . '.php';

if( !file_exists($pathBridge) ){
throw new \Exception('The bridge you looking for does not exist.');
throw new \Exception('The bridge you looking for does not exist. It should be at path '.$pathBridge);
}

require_once $pathBridge;