Welcome Guest, Not a member yet? Register   Sign In
Check if new version available?
#9

[eluser]Spelljack[/eluser]
[quote author="Aken" date="1308657204"]It's a nice thought - I wouldn't mind seeing that, either.

In the meantime, the User Guide is a fairly static piece of documentation - you could easily parse both the current version and change log from the CI.com user guide pages. I can pull the most recent version with three lines of code.
Code:
$html = file_get_contents('http://ellislab.com/codeigniter/user-guide');

preg_match('/<h1>CodeIgniter User Guide Version ([0-9\.]+)<\/h1>/', $html, $match);

$latest_version = $match[1];
[/quote]

Yes. I am using the same method for now. But what about if someone decide to change the raw html of user guide, or main site? I think it is not reliable. After all we will rely on this information that we grab.

What about if I create an automatic update library. It will rely on title of the user guide. And someone decide to change title to "CodeIgniter User Guide - Version 2.0.2". What happens? No one can know for sure. There could be an error that ruins all project. Because I am trusting it to update project core files. This error could delete all project.

Thanks.


P.S.: I am not much of a english speaker. Forgive me if I did some typo, spelling and grammar mistakes.


Messages In This Thread
Check if new version available? - by El Forum - 06-20-2011, 03:51 AM
Check if new version available? - by El Forum - 06-20-2011, 04:09 AM
Check if new version available? - by El Forum - 06-20-2011, 04:47 AM
Check if new version available? - by El Forum - 06-20-2011, 05:54 AM
Check if new version available? - by El Forum - 06-20-2011, 05:59 AM
Check if new version available? - by El Forum - 06-20-2011, 06:08 AM
Check if new version available? - by El Forum - 06-21-2011, 12:15 AM
Check if new version available? - by El Forum - 06-21-2011, 12:53 AM
Check if new version available? - by El Forum - 06-21-2011, 01:51 AM
Check if new version available? - by El Forum - 06-21-2011, 05:22 AM
Check if new version available? - by El Forum - 06-21-2011, 05:37 AM
Check if new version available? - by El Forum - 06-21-2011, 05:53 AM
Check if new version available? - by El Forum - 06-21-2011, 07:54 AM
Check if new version available? - by El Forum - 06-21-2011, 08:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB