mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-22 13:30:29 +03:00
remove eclipse files; update version to 1.6.5; fix headers
This commit is contained in:
parent
98aad6e490
commit
7bdd14c790
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<buildpath>
|
|
||||||
<buildpathentry kind="src" path=""/>
|
|
||||||
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
|
|
||||||
</buildpath>
|
|
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<projectDescription>
|
|
||||||
<name>messenger</name>
|
|
||||||
<comment></comment>
|
|
||||||
<projects>
|
|
||||||
</projects>
|
|
||||||
<buildSpec>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.dltk.core.scriptbuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.php.core.PhpIncrementalProjectBuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.wst.validation.validationbuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
</buildSpec>
|
|
||||||
<natures>
|
|
||||||
<nature>org.eclipse.php.core.PHPNature</nature>
|
|
||||||
</natures>
|
|
||||||
</projectDescription>
|
|
@ -1,9 +0,0 @@
|
|||||||
#Sat May 08 00:52:18 CEST 2010
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
encoding//webim/locales=UTF-8
|
|
||||||
encoding//webim/locales/bg/properties=cp1251
|
|
||||||
encoding//webim/locales/ca/properties=ISO-8859-1
|
|
||||||
encoding//webim/locales/names/properties=utf-8
|
|
||||||
encoding//webim/locales/ru=cp1251
|
|
||||||
encoding//webim/locales/sp/properties=ISO-8859-1
|
|
||||||
encoding//webim/locales/ua/properties=cp1251
|
|
@ -5,7 +5,7 @@
|
|||||||
##################################################################
|
##################################################################
|
||||||
|
|
||||||
$targetFolder = "deploy";
|
$targetFolder = "deploy";
|
||||||
$suffix = "164";
|
$suffix = "165";
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# Copies tree into target folder, preprocess .phps
|
# Copies tree into target folder, preprocess .phps
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
This file is part of Mibew Messenger project.
|
Copyright 2005-2013 the original author or authors.
|
||||||
|
|
||||||
Copyright (c) 2005-2011 Mibew Messenger Community
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
All rights reserved. The contents of this file are subject to the terms of
|
you may not use this file except in compliance with the License.
|
||||||
the Eclipse Public License v1.0 which accompanies this distribution, and
|
You may obtain a copy of the License at
|
||||||
is available at http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
|
|
||||||
Alternatively, the contents of this file may be used under the terms of
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
the GNU General Public License Version 2 or later (the "GPL"), in which case
|
|
||||||
the provisions of the GPL are applicable instead of those above. If you wish
|
Unless required by applicable law or agreed to in writing, software
|
||||||
to allow use of your version of this file only under the terms of the GPL, and
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
not to allow others to use your version of this file under the terms of the
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
EPL, indicate your decision by deleting the provisions above and replace them
|
See the License for the specific language governing permissions and
|
||||||
with the notice and other provisions required by the GPL.
|
limitations under the License.
|
||||||
|
@ -43,16 +43,9 @@ P: for $phpfile (grep { /\.php$/ } @allfiles) {
|
|||||||
if($comment =~ /\[external\]/) {
|
if($comment =~ /\[external\]/) {
|
||||||
next P;
|
next P;
|
||||||
};
|
};
|
||||||
die "no contributors in $phpfile" unless $comment =~ /Contributors:/;
|
$newcomment = "$php_header";
|
||||||
$newcomment = $comment;
|
|
||||||
$newcomment =~ s/\s\*\s//g;
|
|
||||||
$newcomment =~ s/^\/\*//;
|
|
||||||
$newcomment =~ s/\*\/$//;
|
|
||||||
$newcomment =~ s/.*(Contributors:)/$1/s;
|
|
||||||
$newcomment =~ s/^\s+//;
|
|
||||||
$newcomment =~ s/\s+$//;
|
|
||||||
$newcomment = "$php_header\n\n$newcomment";
|
|
||||||
$newcomment =~ s/^/ * /gm;
|
$newcomment =~ s/^/ * /gm;
|
||||||
|
$newcomment =~ s/\s+$//gm;
|
||||||
$newcomment = "/*\n$newcomment\n */";
|
$newcomment = "/*\n$newcomment\n */";
|
||||||
|
|
||||||
$content =~ s/^(<\?php\n)\/\*.*?\*\//$1$newcomment/s;
|
$content =~ s/^(<\?php\n)\/\*.*?\*\//$1$newcomment/s;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Mibew Messenger
|
Mibew Messenger
|
||||||
Copyright (c) 2005-2011 Mibew Messenger Community
|
Copyright 2005-2013 the original author or authors.
|
||||||
|
|
||||||
REQUIREMENTS
|
REQUIREMENTS
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ session_start();
|
|||||||
require_once(dirname(__FILE__) . '/converter.php');
|
require_once(dirname(__FILE__) . '/converter.php');
|
||||||
require_once(dirname(__FILE__) . '/config.php');
|
require_once(dirname(__FILE__) . '/config.php');
|
||||||
|
|
||||||
$version = '1.6.4';
|
$version = '1.6.5';
|
||||||
$jsver = "164";
|
$jsver = "165";
|
||||||
|
|
||||||
function myiconv($in_enc, $out_enc, $string)
|
function myiconv($in_enc, $out_enc, $string)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user