On Fri, 1 Nov 2002, Porat wrote:

> Understood...
> 
> One last question.. (Sorry for the troubles)...
> I have on my computers many files, but I can't upload them because some of
> the dirs don't exists.
> (like / phpdoc-he/ reference /array).
> 
> What is the command to make dirs? Or who can make dirs?

mkdir array
cvs add array

and then add files in that directory, use cvs add "filename.xml" to add 
them. When you do a cvs commit it adds the directories too for you.

Do you want me to revert the bogus things to the english module or do 
you want to do it yourself?

Derick

> ----- Original Message -----
> From: "Derick Rethans" <[EMAIL PROTECTED]>
> To: "Porat" <[EMAIL PROTECTED]>
> Sent: Friday, November 01, 2002 5:55 PM
> Subject: Re: [PHP-DOC] cvs: phpdoc
> /en/reference/array/functionsarray-change-key-case.xml
> 
> 
> > On Fri, 1 Nov 2002, Porat wrote:
> >
> > > Hmmm..
> > >
> > > Sorry...
> > > I had some problems with CVS, and it seem that I made some mistakes.
> > > I'm uploading hebrew files, but I don't see any kind of changes in
> > > http://www.php.net/manual/he/
> > > I know the files are in the phpdoc-he.
> > > Do I need to do some build after uploading?
> >
> > Well, you committed them to the english module, not the hebrew one. And
> > the manuals are only build about twice a week, it takes a while before
> > they get online. But you really need to revert your patches with the
> > hebrew texts to the english module.
> >
> > Derick
> >
> > > ----- Original Message -----
> > > From: "Derick Rethans" <[EMAIL PROTECTED]>
> > > To: "Hadar Porat" <[EMAIL PROTECTED]>
> > > Cc: <[EMAIL PROTECTED]>
> > > Sent: Friday, November 01, 2002 3:14 PM
> > > Subject: Re: [PHP-DOC] cvs: phpdoc
> > > /en/reference/array/functionsarray-change-key-case.xml
> > >
> > >
> > > > On Fri, 1 Nov 2002, Hadar Porat wrote:
> > > >
> > > > > hadar_p Fri Nov  1 08:05:54 2002 EDT
> > > > >
> > > > >   Modified files:
> > > > >     /phpdoc/en/reference/array/functions array-change-key-case.xml
> > > > >   Log:
> > > > >   First version
> > > >
> > > > You replaced the english version with a turkish? one. Can you please
> > > > revert and commit them to the correct module?
> > > >
> > > > Derick
> > > >
> > > > >
> > > > >
> > > > > Index: phpdoc/en/reference/array/functions/array-change-key-case.xml
> > > > > diff -u
> > > phpdoc/en/reference/array/functions/array-change-key-case.xml:1.4
> > > phpdoc/en/reference/array/functions/array-change-key-case.xml:1.5
> > > > > ---
> phpdoc/en/reference/array/functions/array-change-key-case.xml:1.4
> > > Sun May 12 04:19:28 2002
> > > > > +++ phpdoc/en/reference/array/functions/array-change-key-case.xml
> Fri
> > > Nov  1 08:05:53 2002
> > > > > @@ -1,31 +1,33 @@
> > > > >  <?xml version="1.0" encoding="iso-8859-1"?>
> > > > > -<!-- $Revision: 1.4 $ -->
> > > > > +<!-- $Revision: 1.5 $ -->
> > > > >  <!-- splitted from ./en/functions/array.xml, last change in rev
> > > 1.113 -->
> > > > >    <refentry id="function.array-change-key-case">
> > > > >     <refnamediv>
> > > > >      <refname>array_change_key_case</refname>
> > > > > -    <refpurpose>Returns an array with all string keys lowercased or
> > > uppercased</refpurpose>
> > > > > +    <refpurpose>����� ���� ��� ��������� ������� �������� ����
> �������
> > > �����
> > > > > + �� ������� ������.</refpurpose>
> > > > >     </refnamediv>
> > > > >     <refsect1>
> > > > > -    <title>Description</title>
> > > > > +    <title>�����</title>
> > > > >       <methodsynopsis>
> > > > >
> <type>array</type><methodname>array_change_key_case</methodname>
> > > > >
> > >
> <methodparam><type>array</type><parameter>input</parameter></methodparam>
> > > > >        <methodparam
> > > choice="opt"><type>int</type><parameter>case</parameter></methodparam>
> > > > >       </methodsynopsis>
> > > > >      <para>
> > > > > -     <function>array_change_key_case</function> changes the
> > > > > -     keys in the <parameter>input</parameter> array to
> > > > > +     <function>array_change_key_case</function> ���� ��
> > > > > + ��������� ����� <parameter>input</parameter> �������
> > > > > + ����� �� ������� ������. ������ ���� ������ ������
> > > > > + ���������� <parameter>case</parameter>. ��� ����
> > > > > + ����� ��� ������ ������ ��:
> > > > >       be all lowercase or uppercase. The change depends
> > > > > -     on the last optional <parameter>case</parameter>
> > > > > -     parameter. You can pass two constants there,
> > > > > -     <constant>CASE_UPPER</constant> and
> > > > > -     <constant>CASE_LOWER</constant>. The default is
> > > > > -     <constant>CASE_LOWER</constant>. The function will leave
> > > > > -     number indices as is.
> > > > > +     on the last optional <constant>CASE_UPPER</constant> �-
> > > > > + <constant>CASE_LOWER</constant>. ����� ����� ���
> > > > > + <constant>CASE_LOWER</constant>. �������� �����
> > > > > + �������� ������� ��� ���.
> > > > >      </para>
> > > > >      <example>
> > > > > -     <title><function>array_change_key_case</function>
> example</title>
> > > > > +     <title>����� ��
> <function>array_change_key_case</function></title>
> > > > >       <programlisting role="php">
> > > > >  <![CDATA[
> > > > >  $input_array = array("FirSt" => 1, "SecOnd" => 4);
> > > > > @@ -33,7 +35,7 @@
> > > > >  ]]>
> > > > >       </programlisting>
> > > > >       <para>
> > > > > -      The printout of the above program will be:
> > > > > +   ���� �� ������� ���� ����:
> > > > >        <screen>
> > > > >  <![CDATA[
> > > > >  Array
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > PHP Documentation Mailing List (http://www.php.net/)
> > > > > To unsubscribe, visit: http://www.php.net/unsub.php
> > > > >
> > > >
> > > > --
> > > >
> > >
> > --------------------------------------------------------------------------
> > > -
> > > >  Derick Rethans
> http://derickrethans.nl/
> > > >  JDI Media Solutions
> > > > --------------[ if you hold a unix shell to your ear, do you hear the
> > > c? ]-
> > > >
> > > >
> > >
> > >
> >
> > --
> >
> > --------------------------------------------------------------------------
> -
> >  Derick Rethans                                   http://derickrethans.nl/
> >  JDI Media Solutions
> > --------------[ if you hold a unix shell to your ear, do you hear the
> c? ]-
> >
> 
> 

-- 

---------------------------------------------------------------------------
 Derick Rethans                                   http://derickrethans.nl/ 
 JDI Media Solutions
--------------[ if you hold a unix shell to your ear, do you hear the c? ]-


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to