Index: trunk/tools/ToolserverI18N/TsIntuition.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | * |
9 | 9 | * This file is licensed under |
10 | 10 | * the Creative Commons Attribution 3.0 Unported License |
11 | | - * <http://creativecommons.org/licenses/by/3.0/> |
| 11 | + * creativecommons.org/licenses/by/3.0/ |
12 | 12 | * |
13 | 13 | * @package TsIntuition |
14 | 14 | */ |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | public $mode = null; // 'in-tool', 'dashboard' |
37 | 37 | |
38 | 38 | // Address to the dashboard home. Should end with a slash or .extension |
39 | | - public $dashboardHome = 'http://toolserver.org/~intuition/'; |
| 39 | + public $dashboardHome = '//toolserver.org/~intuition/'; |
40 | 40 | |
41 | 41 | // Construct options |
42 | 42 | private $currentTextdomain; |
— | — | @@ -81,8 +81,8 @@ |
82 | 82 | private $includeVariables = array( 'messages', 'url' ); |
83 | 83 | |
84 | 84 | // Redirect address and status |
85 | | - private $redirectTo = null; |
86 | | - |
| 85 | + private $redirectTo = null; |
| 86 | + |
87 | 87 | // Instance of MessagesFunctions |
88 | 88 | private $messagesFunctions = null; |
89 | 89 | |
— | — | @@ -109,7 +109,7 @@ |
110 | 110 | if ( is_string( $options ) ) { |
111 | 111 | $options = array( 'domain' => $options ); |
112 | 112 | } |
113 | | - |
| 113 | + |
114 | 114 | $defaultOptions = array( |
115 | 115 | 'domain' => 'general', |
116 | 116 | 'lang' => null, |
— | — | @@ -124,7 +124,7 @@ |
125 | 125 | $options = array_merge( $defaultOptions, $options ); |
126 | 126 | |
127 | 127 | $this->mode = $options['mode']; |
128 | | - |
| 128 | + |
129 | 129 | $this->loadDomainRegistry(); |
130 | 130 | |
131 | 131 | // The textdomain of your tool can be set here. |
— | — | @@ -190,7 +190,7 @@ |
191 | 191 | if ( function_exists( 'TsIntuition_inithook' ) ) { |
192 | 192 | TsIntuition_inithook( $TsIntuition ); |
193 | 193 | } |
194 | | - |
| 194 | + |
195 | 195 | } |
196 | 196 | |
197 | 197 | |
— | — | @@ -344,7 +344,7 @@ |
345 | 345 | } else { |
346 | 346 | return $this->messagesFunctions; |
347 | 347 | } |
348 | | - } |
| 348 | + } |
349 | 349 | |
350 | 350 | /* Message functions |
351 | 351 | * ------------------------------------------------- */ |
— | — | @@ -359,7 +359,7 @@ |
360 | 360 | * - lang: overrides the currently selected language |
361 | 361 | * - variables: numerical array to do variable replacements ($1> var[0], $2> var[1], etc.) |
362 | 362 | * - raw-variables: boolean to determine whether the variables should be escaped as well |
363 | | - * - parsemag: boolean to determine whether the message sould be tranformed |
| 363 | + * - parsemag: boolean to determine whether the message sould be tranformed |
364 | 364 | * using magic phrases (PLURAL, etc.) |
365 | 365 | * - escape: Optionally the return can be escaped. By default this takes place after variable |
366 | 366 | * replacement. Set 'raw-variables' to true if you just want the raw message |
— | — | @@ -439,7 +439,7 @@ |
440 | 440 | $n = $i + 1; |
441 | 441 | $msg = str_replace( "\$$n", $val, $msg ); |
442 | 442 | } |
443 | | - |
| 443 | + |
444 | 444 | // Some parsing work |
445 | 445 | if ( $options['parsemag'] === true ) { |
446 | 446 | $msg = $this->getMessagesFunctions()->parse( $msg, $lang ); |
— | — | @@ -469,7 +469,7 @@ |
470 | 470 | } else { |
471 | 471 | return null; |
472 | 472 | } |
473 | | - } |
| 473 | + } |
474 | 474 | |
475 | 475 | /** |
476 | 476 | * Don't show [brackets] when suppressing errors. |
— | — | @@ -614,7 +614,7 @@ |
615 | 615 | |
616 | 616 | /** |
617 | 617 | * Return all languages loaded in at least one domain |
618 | | - * @param $domain |
| 618 | + * @param $domain |
619 | 619 | * false - Show languages for which there is a translation in the current domain |
620 | 620 | * 'any' - Show languages for which there is a translation in at least one domain |
621 | 621 | * domain name - Show languages for which there is a translation in the given domain |
— | — | @@ -625,10 +625,10 @@ |
626 | 626 | } else { |
627 | 627 | if ( $domain === false ) |
628 | 628 | $domain = $this->getDomain(); |
629 | | - |
| 629 | + |
630 | 630 | $from = isset( $this->messageBlob[$domain] ) ? $this->messageBlob[$domain] : array(); |
631 | 631 | } |
632 | | - |
| 632 | + |
633 | 633 | $return = array(); |
634 | 634 | foreach( array_keys( $from ) as $lang ) { |
635 | 635 | $return[$lang] = $this->getLangName( $lang ); |
— | — | @@ -694,12 +694,12 @@ |
695 | 695 | |
696 | 696 | // Load it |
697 | 697 | $included = include( $filePath ); |
698 | | - |
| 698 | + |
699 | 699 | if ( $included === false ) { |
700 | 700 | $this->errTrigger( "File $filePath could not be loaded ", __METHOD__, E_NOTICE, __FILE__, __LINE__ ); |
701 | 701 | return false; |
702 | 702 | } |
703 | | - |
| 703 | + |
704 | 704 | // Parse it |
705 | 705 | $compact = compact( $this->includeVariables ); |
706 | 706 | $this->parseTextdomain( $compact, $domain, $filePath ); |
— | — | @@ -731,7 +731,7 @@ |
732 | 732 | } |
733 | 733 | |
734 | 734 | // Was there a url defined in the textdomain file ? |
735 | | - $fullurl = isset( $data['url'] ) ? "http://toolserver.org/{$data['url']}" : null; |
| 735 | + $fullurl = isset( $data['url'] ) ? "//toolserver.org/{$data['url']}" : null; |
736 | 736 | $path = isset( $data['url'] ) ? $data['url'] : null; |
737 | 737 | |
738 | 738 | $this->loadedTextdomains[$domain] = array( 'url' => $fullurl, 'path' => $path ); |
— | — | @@ -749,7 +749,7 @@ |
750 | 750 | public function getDomainInfo( $domain ) { |
751 | 751 | $domain = ucfirst( strtolower( $domain ) ); |
752 | 752 | |
753 | | - // Load if registered but not already loaded |
| 753 | + // Load if registered but not already loaded |
754 | 754 | $this->loadTextdomain( $domain ); |
755 | 755 | |
756 | 756 | if ( isset( $this->loadedTextdomains[$domain] ) && is_array( $this->loadedTextdomains[$domain] ) ) { |
— | — | @@ -844,7 +844,7 @@ |
845 | 845 | |
846 | 846 | /** |
847 | 847 | * Get expected lifetime left in seconds. |
848 | | - * Returns 0 if expired or unavailable. |
| 848 | + * Returns 0 if expired or unavailable. |
849 | 849 | */ |
850 | 850 | public function getCookieLifetime() { |
851 | 851 | $expire = $this->getCookieExpiration(); |
— | — | @@ -863,7 +863,7 @@ |
864 | 864 | |
865 | 865 | /** |
866 | 866 | * FIXME: Implement in language/MessagesFunctions.php. |
867 | | - * |
| 867 | + * |
868 | 868 | * @todo |
869 | 869 | */ |
870 | 870 | public function gender( $male, $female, $neutral ) { |
— | — | @@ -873,7 +873,7 @@ |
874 | 874 | |
875 | 875 | /** |
876 | 876 | * Can be founded in language/MessagesFunctions.php. |
877 | | - * |
| 877 | + * |
878 | 878 | * @see MessagesFunctions::parse |
879 | 879 | * @see MessagesFunctions::plural |
880 | 880 | * @deprecated |
— | — | @@ -978,14 +978,14 @@ |
979 | 979 | * ------------------------------------------------- */ |
980 | 980 | |
981 | 981 | /** |
982 | | - * Show a link that explains that this tool has been |
| 982 | + * Show a link that explains that this tool has been |
983 | 983 | * localized via Toolserver Intuition and that they |
984 | 984 | * can change the language by setting their preference |
985 | 985 | * in the dashboard. Or (if they've done so already) |
986 | 986 | * that they can manage their settings there |
987 | 987 | */ |
988 | 988 | public function dashboardBacklink() { |
989 | | - |
| 989 | + |
990 | 990 | if ( $this->hasCookies() ) { |
991 | 991 | $text = $this->msg( 'bl-mysettings', 'tsintuition' ); |
992 | 992 | } else { |
— | — | @@ -1017,7 +1017,7 @@ |
1018 | 1018 | |
1019 | 1019 | // Logo |
1020 | 1020 | if ( is_int( $imgSize ) && $imgSize > 0 ) { |
1021 | | - $src = 'http://upload.wikimedia.org/wikipedia/commons/thumb/b/be' |
| 1021 | + $src = '//upload.wikimedia.org/wikipedia/commons/thumb/b/be' |
1022 | 1022 | . '/Wikimedia_Community_Logo-Toolserver.svg' |
1023 | 1023 | . "/{$imgSize}px-Wikimedia_Community_Logo-Toolserver.svg.png"; |
1024 | 1024 | $img = TsIntuitionUtil::tag( '', 'img', array( |
— | — | @@ -1064,7 +1064,7 @@ |
1065 | 1065 | |
1066 | 1066 | $helpTranslateDomain = strtolower( $helpTranslateDomain ); |
1067 | 1067 | |
1068 | | - // http://translatewiki.net/w/i.php?language=nl&title=Special:Translate&group=tsint-0-all |
| 1068 | + // translatewiki.net/w/i.php?language=nl&title=Special:Translate&group=tsint-0-all |
1069 | 1069 | $twParams = array( |
1070 | 1070 | 'title' => 'Special:Translate', |
1071 | 1071 | 'language' => $this->getLang(), |
— | — | @@ -1093,7 +1093,7 @@ |
1094 | 1094 | * to return to the current page. To be used in other tools. |
1095 | 1095 | * |
1096 | 1096 | * @example: |
1097 | | - * Location: http://toolserver.org/~foo/JohnDoe.php?wiki=loremwiki_p |
| 1097 | + * Location: //toolserver.org/~foo/JohnDoe.php?wiki=loremwiki_p |
1098 | 1098 | * HTML: |
1099 | 1099 | * '<p>Change the settings <a href="' . $I18N->getDashboardReturnToUrl() . '">here</a>'; |
1100 | 1100 | * |
— | — | @@ -1349,13 +1349,13 @@ |
1350 | 1350 | if ( $die && !$this->stayalive ) { |
1351 | 1351 | die; |
1352 | 1352 | } else { |
1353 | | - echo "<br />\n"; |
| 1353 | + echo "<br/>\n"; |
1354 | 1354 | } |
1355 | 1355 | } |
1356 | | - |
| 1356 | + |
1357 | 1357 | /** |
1358 | 1358 | * Returns true if a language is Right-to-left |
1359 | | - * @param $code String Language code to get the property from, |
| 1359 | + * @param $code String Language code to get the property from, |
1360 | 1360 | * current language if missing |
1361 | 1361 | * @return Boolean |
1362 | 1362 | */ |
— | — | @@ -1364,10 +1364,10 @@ |
1365 | 1365 | $code = $this->getLang(); |
1366 | 1366 | } |
1367 | 1367 | require $this->localBaseDir . '/language/Rtl.php'; |
1368 | | - |
| 1368 | + |
1369 | 1369 | return in_array( $code, $rtlLanguages ); |
1370 | 1370 | } |
1371 | | - |
| 1371 | + |
1372 | 1372 | /** |
1373 | 1373 | * Return the correct HTML 'dir' attribute value for this language. |
1374 | 1374 | * @return String |
Index: trunk/tools/ToolserverI18N/public_html/demo/demo6.php |
— | — | @@ -12,12 +12,12 @@ |
13 | 13 | echo $I18N->parentheses( 'hello' ); |
14 | 14 | |
15 | 15 | // Variables |
16 | | -echo '<br />' . $I18N->msg( 'toolversionstamp', array( |
| 16 | +echo '<br/>' . $I18N->msg( 'toolversionstamp', array( |
17 | 17 | 'variables' => array( '1.0', $I18N->dateFormatted( '2001-01-15' ) ), |
18 | 18 | ) ); |
19 | 19 | |
20 | 20 | // msgExists |
21 | | -echo '<br />msgExists: '; |
| 21 | +echo '<br/>msgExists: '; |
22 | 22 | var_dump( |
23 | 23 | |
24 | 24 | $I18N->msgExists( 'welcome' ) |
— | — | @@ -30,7 +30,7 @@ |
31 | 31 | ); |
32 | 32 | |
33 | 33 | // nonEmptyStr |
34 | | -echo '<br />nonEmptyStr: '; |
| 34 | +echo '<br/>nonEmptyStr: '; |
35 | 35 | var_dump( |
36 | 36 | |
37 | 37 | TsIntuitionUtil::nonEmptyStr( 'one' ) |
— | — | @@ -38,7 +38,7 @@ |
39 | 39 | ); |
40 | 40 | |
41 | 41 | // nonEmptyStrs |
42 | | -echo '<br />nonEmptyStrs: '; |
| 42 | +echo '<br/>nonEmptyStrs: '; |
43 | 43 | var_dump( |
44 | 44 | |
45 | 45 | TsIntuitionUtil::nonEmptyStrs( 'one', '', 'three' ) |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | ); |
53 | 53 | |
54 | 54 | // GetAcceptableLanguages |
55 | | -echo "<br />getAcceptableLanguages: (default: \$_SERVER['HTTP_ACCEPT_LANGUAGE']: ", htmlspecialchars( $_SERVER['HTTP_ACCEPT_LANGUAGE'] ), "):<br />"; |
| 55 | +echo "<br/>getAcceptableLanguages: (default: \$_SERVER['HTTP_ACCEPT_LANGUAGE']: ", htmlspecialchars( $_SERVER['HTTP_ACCEPT_LANGUAGE'] ), "):<br/>"; |
56 | 56 | var_dump( |
57 | 57 | |
58 | 58 | TsIntuitionUtil::getAcceptableLanguages( @$_SERVER['HTTP_ACCEPT_LANGUAGE'] ) |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | ); |
61 | 61 | |
62 | 62 | $acceptLang = 'nl-be,nl;q=0.7,en-us,en;q=0.3'; |
63 | | -echo "<br />getAcceptableLanguages: ( '{$acceptLang}' ):<br />"; |
| 63 | +echo "<br/>getAcceptableLanguages: ( '{$acceptLang}' ):<br/>"; |
64 | 64 | var_dump( |
65 | 65 | |
66 | 66 | TsIntuitionUtil::getAcceptableLanguages( $acceptLang ) |
Index: trunk/tools/ToolserverI18N/public_html/demo/demo7.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | echo $I18N->getLangName(); |
15 | 15 | |
16 | 16 | // - Specific language name |
17 | | -echo '<br />' . $I18N->getLangName( 'fr' ); |
| 17 | +echo '<br/>' . $I18N->getLangName( 'fr' ); |
18 | 18 | |
19 | 19 | |
20 | 20 | |
Index: trunk/tools/ToolserverI18N/public_html/demo/demo8.php |
— | — | @@ -18,21 +18,21 @@ |
19 | 19 | // - Raw echo |
20 | 20 | echo $I18N->msg( 'apple-stats' ); |
21 | 21 | |
22 | | -echo '<br />'; |
| 22 | +echo '<br/>'; |
23 | 23 | |
24 | 24 | // - Pass variables |
25 | | -echo '<br />' . $I18N->msg( 'welcomeback', array( 'variables' => array( 'John', 'coffee' ) ) ); |
| 25 | +echo '<br/>' . $I18N->msg( 'welcomeback', array( 'variables' => array( 'John', 'coffee' ) ) ); |
26 | 26 | |
27 | 27 | // - Pass variables |
28 | | -echo '<br />' . $I18N->msg( 'welcomeback', array( 'variables' => array( 'George', 'tea' ) ) ); |
| 28 | +echo '<br/>' . $I18N->msg( 'welcomeback', array( 'variables' => array( 'George', 'tea' ) ) ); |
29 | 29 | |
30 | | -echo '<br />'; |
| 30 | +echo '<br/>'; |
31 | 31 | |
32 | 32 | // - Trigger parser magic, setting $1 to '1' |
33 | | -echo '<br />' . $I18N->msg( 'basket', array( 'variables' => array( '1' ), 'parsemag' => true ) ); |
| 33 | +echo '<br/>' . $I18N->msg( 'basket', array( 'variables' => array( '1' ), 'parsemag' => true ) ); |
34 | 34 | |
35 | 35 | // - Trigger parser magic, setting $1 to '7' |
36 | | -echo '<br />' . $I18N->msg( 'basket', array( 'variables' => array( '7' ), 'parsemag' => true ) ); |
| 36 | +echo '<br/>' . $I18N->msg( 'basket', array( 'variables' => array( '7' ), 'parsemag' => true ) ); |
37 | 37 | |
38 | 38 | |
39 | 39 | |
Index: trunk/tools/ToolserverI18N/public_html/demo/demoBase.php |
— | — | @@ -31,7 +31,7 @@ |
32 | 32 | body { |
33 | 33 | font-family: sans-serif; |
34 | 34 | } |
35 | | - img { |
| 35 | + img { |
36 | 36 | vertical-align: middle; |
37 | 37 | } |
38 | 38 | h3 { |
— | — | @@ -69,7 +69,7 @@ |
70 | 70 | echo $startHTML . "<p><em>← <a href=\"../\">Return to Dashboard</a></em></p><ul>"; |
71 | 71 | foreach ( $demoRegistry as $demoFilename => $descr ) { |
72 | 72 | $descr = htmlspecialchars( $descr ); |
73 | | - echo "<li><a href=\"$demoFilename.php\" title=\"$descr\">$demoFilename</a><br /><small>$descr</small></li>"; |
| 73 | + echo "<li><a href=\"$demoFilename.php\" title=\"$descr\">$demoFilename</a><br/><small>$descr</small></li>"; |
74 | 74 | } |
75 | 75 | echo '</ul>'; |
76 | 76 | echo $outputHead; |
Index: trunk/tools/ToolserverI18N/public_html/demo/demo2.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | |
15 | 15 | // 2) Request an undefined message |
16 | 16 | // Because 'suppressnotices' is true (default), |
17 | | -// this won't trigger a Notice, and show a bracket msg: '[r4nd0mstr1n9]' |
| 17 | +// this won't trigger a Notice, and show a bracket msg: '[r4nd0mstr1n9]' |
18 | 18 | echo $I18N->msg( 'r4nd0mstr1n9' ); |
19 | 19 | |
20 | 20 | |
Index: trunk/tools/ToolserverI18N/public_html/demo/demo3.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | |
18 | 18 | // 2) Request an undefined message |
19 | 19 | // Because 'suppressnotices' is false, |
20 | | -// this will trigger a Notice: 'r4nd0mstr1n9' undefined |
| 20 | +// this will trigger a Notice: 'r4nd0mstr1n9' undefined |
21 | 21 | echo $I18N->msg( 'r4nd0mstr1n9' ); |
22 | 22 | |
23 | 23 | |
Index: trunk/tools/ToolserverI18N/public_html/index.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | * |
9 | 9 | * This file is licensed under |
10 | 10 | * the Creative Commons Attribution 3.0 Unported License |
11 | | - * <http://creativecommons.org/licenses/by/3.0/> |
| 11 | + * creativecommons.org/licenses/by/3.0/ |
12 | 12 | * |
13 | 13 | * @package TsIntuition |
14 | 14 | */ |
— | — | @@ -123,7 +123,7 @@ |
124 | 124 | } else { |
125 | 125 | $returnToQuery = ''; |
126 | 126 | } |
127 | | - $I18N->redirectTo( "http://{$_SERVER['SERVER_NAME']}$returnTo$returnToQuery", 302 ); |
| 127 | + $I18N->redirectTo( "//{$_SERVER['SERVER_NAME']}$returnTo$returnToQuery", 302 ); |
128 | 128 | } |
129 | 129 | } |
130 | 130 | |
— | — | @@ -200,11 +200,11 @@ |
201 | 201 | . kfTag( '', 'input', array( 'value' => $I18N->getLangName(), 'readonly' => 'readonly' ) ) |
202 | 202 | . ' (' |
203 | 203 | . kfTag( _( 'clear-cookies' ), 'a', array( 'href' => $Tool->generatePermalink( array( 'action' => 'clearcookies' ) ) ) ) |
204 | | - . ')<br />' |
| 204 | + . ')<br/>' |
205 | 205 | . kfTag( _( 'cookie-expiration' ) . _g( 'colon-separator' ), 'label' ) . kfTag( '', 'input', array( 'value' => $time, 'class' => "cookie-health $class", 'readonly' => 'readonly' ) ) |
206 | 206 | . ' (' |
207 | 207 | . kfTag( _( 'renew-cookies' ), 'a', array( 'href' => $Tool->generatePermalink( array( 'action' => 'renewcookies' ) ) ) ) |
208 | | - . ')<br />' |
| 208 | + . ')<br/>' |
209 | 209 | . $after |
210 | 210 | . '</div></fieldset></form></div><!-- #tab-currentsettings -->' |
211 | 211 | ); |
— | — | @@ -225,17 +225,17 @@ |
226 | 226 | |
227 | 227 | $form = '<div id="tab-settingsform"><form action="' . $Tool->remoteBasePath . '" method="post" class="cleanform"><fieldset> |
228 | 228 | <legend>' . _( 'settings-legend' ) . '</legend><div class="inner"> |
229 | | - |
| 229 | + |
230 | 230 | <label>' . _html( 'choose-language' ) . _g( 'colon-separator' ) . '</label> |
231 | 231 | ' . $dropdown . ' |
232 | | - <br /> |
233 | | - |
234 | | - <input type="hidden" name="action" value="prefset" /> |
235 | | - <input type="hidden" name="returnto" value="' . htmlspecialchars( $kgReq->getVal( 'returnto' ) ) . '" /> |
236 | | - <input type="hidden" name="returntoquery" value="' . htmlspecialchars( $kgReq->getVal( 'returntoquery' ) ) . '" /> |
| 232 | + <br/> |
| 233 | + |
| 234 | + <input type="hidden" name="action" value="prefset"/> |
| 235 | + <input type="hidden" name="returnto" value="' . htmlspecialchars( $kgReq->getVal( 'returnto' ) ) . '"/> |
| 236 | + <input type="hidden" name="returntoquery" value="' . htmlspecialchars( $kgReq->getVal( 'returntoquery' ) ) . '"/> |
237 | 237 | <label></label> |
238 | | - <input type="submit" nof value="' . _html( 'form-submit', 'general' ) . '" /> |
239 | | - <br /> |
| 238 | + <input type="submit" nof value="' . _html( 'form-submit', 'general' ) . '"/> |
| 239 | + <br/> |
240 | 240 | |
241 | 241 | </div></fieldset></form></div>'; |
242 | 242 | |
— | — | @@ -245,7 +245,7 @@ |
246 | 246 | |
247 | 247 | // About tab |
248 | 248 | $about = '<div id="tab-about">'; |
249 | | - |
| 249 | + |
250 | 250 | $about .= '<a href="http://translatewiki.net/wiki/Translating:Toolserver">' |
251 | 251 | . Html::element( 'img', array( |
252 | 252 | 'src' => 'http://translatewiki.net/w/i.php?title=Special:TranslationStats&graphit=1&preview=&count=edits&scale=weeks&days=30&width=520&height=400&group=tsint-0-all', |
— | — | @@ -265,7 +265,7 @@ |
266 | 266 | $about .= '<li><a href="' |
267 | 267 | . htmlspecialchars( $domainInfo['url'] ) |
268 | 268 | . '"><strong>' . htmlspecialchars( $title ) |
269 | | - . '</strong><br />' |
| 269 | + . '</strong><br/>' |
270 | 270 | . htmlspecialchars( $domainInfo['path'] ) |
271 | 271 | . '</a></li>'; |
272 | 272 | } else { |
Index: trunk/tools/ToolserverI18N/TsIntuitionUtil.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | * |
9 | 9 | * This file is licensed under |
10 | 10 | * the Creative Commons Attribution 3.0 Unported License |
11 | | - * <http://creativecommons.org/licenses/by/3.0/> |
| 11 | + * creativecommons.org/licenses/by/3.0/ |
12 | 12 | * |
13 | 13 | * @package TsIntuition |
14 | 14 | */ |
Index: trunk/tools/ToolserverI18N/Functions.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | * |
9 | 9 | * This file is licensed under |
10 | 10 | * the Creative Commons Attribution 3.0 Unported License |
11 | | - * <http://creativecommons.org/licenses/by/3.0/> |
| 11 | + * creativecommons.org/licenses/by/3.0/ |
12 | 12 | * |
13 | 13 | * @package TsIntuition |
14 | 14 | */ |