Options saved.

'; } $checked = ''; if($ping == 1) $checked = 'checked="checked"'; echo '

URIs to Ping

The following services will automatically be pinged/notified when you publish posts. Not when you edit previously published posts, as WordPress does by default.

NB: this list is synchronized with the original update services list.

Separate multiple service URIs with line breaks:

Ping log

These are the lastest actions performed by the plugin.

'.SUP_get_last_log_entries(20).'

'; } # telling WordPress to ping if the post is new, but not if it's just been edited function SUP_ping_if_new($id) { global $wpdb, $post_title; if(get_option('SUP_ping') == 1 and get_option('ping_sites') != "") { # fetches data directly from database; the function "get_post" is cached, # and using it here will get the post as is was before the last save $row = mysql_fetch_array(mysql_query( "SELECT post_date,post_modified FROM $wpdb->posts WHERE id=$id")); # if time when created equals time when modified it is a new post, # otherwise the author has edited/modified it if($row["post_date"] == $row["post_modified"]) { if($post_title) SUP_log("Pinging services (new post: “".$post_title."”) ..."); else SUP_log("Pinging services (new post) ..."); SUP_ping_services(); # Try commenting the line above, and uncommenting this line below # if pinging seems to be out of order. Please notify the author if it helps! # generic_ping(); } else { if($post_title) SUP_log("NOT pinging services (“".$post_title."” was edited)"); else SUP_log("NOT pinging services (a post was edited)"); } } else SUP_log("NOT pinging services (disabled by administrator)"); } # More or less a copy of WP's "generic_ping" from functions.php, # but uses another function to send the actual XML-RPC messages. function SUP_ping_services() { $services = get_settings('ping_sites'); $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines $services = trim($services); if ( '' != $services ) { $services = explode("\n", $services); foreach ($services as $service) SUP_send_xmlrpc($service); } } # A slightly modified version of the WordPress built-in ping functionality ("weblog_ping" in functions.php). # This one uses correct extendedPing format (WP does not), and logs response from service. function SUP_send_xmlrpc($server = '', $path = '') { global $wp_version; include_once (ABSPATH . WPINC . '/class-IXR.php'); // using a timeout of 3 seconds should be enough to cover slow servers $client = new IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path)); $client->timeout = 3; $client->useragent .= ' -- WordPress/'.$wp_version; // when set to true, this outputs debug messages by itself $client->debug = false; $home = trailingslashit( get_option('home') ); # the extendedPing format should be "blog name", "blog url", "check url" (whatever that is), and "feed url", # but it would seem as if the standard has been mixed up. it's therefore best to repeat the feed url. if($client->query('weblogUpdates.extendedPing', get_settings('blogname'), $home, get_bloginfo('rss2_url'), get_bloginfo('rss2_url'))) { SUP_log("- ".$server." was successfully pinged (extended format)"); } else { # pinging was unsuccessful, trying regular ping format if($client->query('weblogUpdates.ping', get_settings('blogname'), $home)) { SUP_log("- ".$server." was successfully pinged"); } else { SUP_log("- ".$server." could not be pinged. Error message: “".$client->error->message."”"); } } } $post_title = ""; # Receives the title of the post from a filter below function SUP_post_title($title) { global $post_title; $post_title = $title; return $title; } # ----- # Log stuff $logfile = ABSPATH."wp-content/smart-update-pinger.log"; # for debugging function SUP_log($line) { global $logfile; $fh = @fopen($logfile, "a"); @fwrite($fh, strftime("%D %T")."\t$line\n"); @fclose($fh); } function SUP_get_last_log_entries($num) { global $logfile; $lines = @file($logfile); if($lines === false) return "Error reading log file (".$logfile."). This could mean that the wp-content directory is write-protected and no log data can be saved, that you have manually removed the log file, or that you have recently upgraded the plugin."; else { $lines = array_slice($lines, count($lines) - $num); $msg = ""; foreach($lines as $line) $msg .= trim($line)."
"; return $msg; } } # ----- # adds a filter to receive the title of the post before publishing add_filter("title_save_pre", "SUP_post_title"); # adds some hooks # shows the options in the administration panel add_action("admin_menu", "SUP_add_options_page"); # calls SUP_ping whenever a post is published add_action("publish_post", "SUP_ping_if_new"); # calls SUP_ping_draft when changing the status from private/draft to published # add_action("private_to_published', 'SUP_ping_draft'); # removes the "WordPress official" pinging hook remove_action("publish_post", "generic_ping"); # activates pinging if setting doesn't exist in database yet # (before the user has changed the settings the first time) if(get_option("SUP_ping") === false) { update_option("SUP_ping", 1); } ?> ;×) » percent

Archives

Articles pour le mot-clé ‘percent’

Revue de presse

Je me demandais ce soir ce que pensaient de nous les chinois, comme ça, bêtement. Et puis je suis tombé sur cet article :

Over ten years ago, Microsoft gave Internet Explorer 6 to the world… and now they’re doing their damnedest to kill it off once and for good, having just launched a new website that is dedicated to tracking IE6’s dwindling market share and encouraging users to upgrade to a more modern browser.

For those of us who have railed against IE6’s ubiquity for years, it’s all a bit rich. Microsoft fought hard to make Internet Explorer 6 — a notoriously insecure, buggy browser even at launch, and one with a frank and callous disregard for web standards — as predominant as it is.

That strategy was to Microsoft’s benefit back in the browser wars of the earlier part of last decade, but now, IE6’s dominance has proven to be a nightmare for Microsoft. Microsoft spends millions per year trying to address IE6 security vulnerabilities: the legacy browser, to this day, is responsible for a shocking amount of malware and exploits. What was once IE6’s greatest strength — total market dominance — is now its greatest curse, as Microsoft struggles to leave the browser behind.

Right now, IE6 is still the browser used by 12 percent of all users worldwide. In the US, that number’s under 3 percent, but in China, for example, IE6 runs on almost 35% of all machines.

Microsoft’s attempt to raise awareness and get people to upgrade is certainly welcome. Almost everyone wants to see IE6 die at this point. The problem is that a lot of users still using IE6 have no choice but to use it: a shocking number of intranet sites still won’t run on any other browser but IE6.

Also curious is the fact that Microsoft’s new site, IE6Countdown.com, is encouraging users to upgrade to Internet Explorer 8… a two year old browser with security vulnerabilities of its own. Internet Explorer 9 will soon be here, but it doesn’t support Windows XP… meaning that Microsoft is endorsing users to upgrade from one buggy, insecure, out-of-date browser to another buggy, insecure, out-of-date browser. Yeesh.

Read more at IE6Countdown

Ce qui m’a plu dans cet article c’est ce passage bien sûr :

Right now, IE6 is still the browser used by 12 percent of all users worldwide. In the US, that number’s under 3 percent, but in China, for example, IE6 runs on almost 35% of all machines.

Les chinois doivent nous maudire pour ce navigateur qui n’est qu’un misérable fossile chez nous. Pauvres chinois…

Est-ce que tu sais comment utiliser un chameau mort pour survivre dans le désert profond ?

Man versus wild, c’est lui le grand chef. Il se délecte à bouffer littéralement n’importe quoi au sens extrêmement large du terme. Un scorpion, crunch, un scrarabé, gloubs, une couille de chèvre chaude, miam. Bon la couille ça l’a fait gerber quand même, ce n’est qu’un homme. Et il va de mal en pis quand il gerbe sévère après avoir goûté un lambeau al dente de gras d’une carcasse de chameau encore chaude.Il est poête quand il cherche les mots pour décrire le goût d’un insecte peu ragoutant.

– Ca a le goût d’une crevette qui a trempé dans du fromage. Pendant mille ans.

Sérieux, c’est juste un pervers. Personne n’a besoin de savoir par prévention comment trouver de l’eau quand on est dans le désert avec un dromadaire mort? Facile, tu lui fends la panse et tu essores ce qu’il y a dedans.

Il suffisait de le savoir.

Tiens, j’ai redécouvert un morceau de la playlist de la page. Je crois que je ne l’avais jamais écouté depuis que je l’ai enregistré, euh, en 2001. Et depuis je n’ai plus rien fait. Ca fait drôle quand j’y pense, mais c’est comme ça probablement sans trop de regret. Je vais de ce pas scanner mes albums et mettre ma muisque à disposition de manière plus visible.