PiRSquared17 / wicket-guide

Automatically exported from code.google.com/p/wicket-guide
0 stars 0 forks source link

New issues notification from Bujiraso #16

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
New issues notification from Bujiraso:

No problem. I'll keep submitting as I find them.
Here's a few corrections I collected:

Typo's
p42 "A erializer based on Kryo library is provided by the WicketStuff project"
Serializer is missing an 's'

p53 "public static MetaDataKey<Conncetion> connectionKey = new 
MetaDataKey<Conncetion>"
Two typo's of "connection" as "conncetion"

Style issues:
p40 "However, to understand what you will read you are not required to be 
familiar with these arguments."
This should likely be "these concepts" or "these topics". 'Argument' doesn't 
exactly fit in this sense.

p40 The phrase "progressive number" doesn't really make much sense to me. The 
explanation following is sufficient to explain what's happening, though.

p61 "segment of not-mounted pages" should be "non-mounted pages". I would also 
put hyphens in between non and bookmarkable.

Original issue reported on code.google.com by andrea.d...@comsysto.com on 12 Jun 2013 at 2:01

GoogleCodeExporter commented 9 years ago

Original comment by an.delb...@gmail.com on 16 Jun 2013 at 7:44

GoogleCodeExporter commented 9 years ago
db_version(); $php_compat = version_compare( $php_version, 
$required_php_version, '>=' ); if ( file_exists( WP_CONTENT_DIR . '/db.php' ) 
&& empty( $wpdb->is_mysql ) ) $mysql_compat = true; else $mysql_compat = 
version_compare( $mysql_version, $required_mysql_version, '>=' ); @header( 
'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 
'blog_charset' ) ); ?> >

WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or 
higher. You are running PHP version %4$s and MySQL version %5$s.'), 
$wp_version, $required_php_version, $required_mysql_version, $php_version, 
$mysql_version ); elseif ( !$php_compat ) printf( __('You cannot update because 
WordPress %1$s requires PHP version %2$s or higher. You are running version 
%3$s.'), $wp_version, $required_php_version, $php_version ); elseif ( 
!$mysql_compat ) printf( __('You cannot update because WordPress %1$s requires 
MySQL version %2$s or higher. You are running version %3$s.'), $wp_version, 
$required_mysql_version, $mysql_versio

Original comment by ldv...@gmail.com on 9 May 2014 at 2:56