Re: MediaWiki missing "new account" icon/Link?

2015-04-12 Thread Andrea Pescetti

Kay Schenk wrote:

currently I do not find a "Register" link on any OpenOffice Wiki
(https://wiki.openoffice.org/wiki/Main_Page)
pages. Was this removed and I didn't notice? ...

Account creation by users on the m-wiki was disabled ...

Thanks Keith. Obviously I have not been too observant. I tried some
tricks like putting a fake login to see if anything interesting might
happen and nothing.  Is there something that can actually be put ON
Mwiki to assist potential users? A link to an information page in
basically the same area of the Login would be great


Well, we do have it but the link is unclear; this is due to a bug with 
that specific MediaWiki version and some adaptations needed which I 
couldn't investigate. If you open 
https://wiki.openoffice.org/w/index.php?title=Special:UserLogin you will 
see a big Login button and a link after it, with a wring text like 
"userlogin-helplink" wrapped in HTML entities.


The link leads to
https://wiki.openoffice.org/wiki/Help:Logging_in
that explains the account creation process.

So the only issue I see is that the link is not properly displayed n the 
login page due to the known bug we have. Fixing it should not be 
complex, but I didn't have time to investigate it back at the time.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: MediaWiki missing "new account" icon/Link?

2015-04-12 Thread Kay Schenk


On 04/12/2015 11:09 AM, Keith N. McKenna wrote:
> Kay Schenk wrote:
>> Hello all --
>>
>> I know we're basically "whitelisting" both CWiki and MWiki accounts, but
>> currently I do not find a "Register" link on any OpenOffice Wiki
>> (https://wiki.openoffice.org/wiki/Main_Page)
>> pages. Was this removed and I didn't notice?
>>
>> If some alternate means of account registration is used, shouldn't this
>> be mentioned on the main page?
>>
> Kay;
> 
> Account creation by users on the m-wiki was disabled quite some time ago
> as an anti-spam measure. The procedure to get an m-wki account is to
> send a request for an m-wiki account containing your preferred user name
> and your e-mail address  either here or to the documentation mailing
> list and one of the admins, usually myself or Andrea will create the
> account. A notice with a temporary password will be sent to the user at
> the e-mail address provided. The temporary password will be required to
> be changed at the first log-in.
> 
> Regards
> Keith

Thanks Keith. Obviously I have not been too observant. I tried some
tricks like putting a fake login to see if anything interesting might
happen and nothing.  Is there something that can actually be put ON
Mwiki to assist potential users? A link to an information page in
basically the same area of the Login would be great but I don't know who
would be able to edit main templates like that since I'm sure this is
some standard MW widget or something.


> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 

-- 
-
MzK

“What is the point of being alive if you don't
 at least  try to do something remarkable?”
   -- John Green, "An Abundance of Katherines"

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



RE: MediaWiki missing "new account" icon/Link?

2015-04-12 Thread Dennis E. Hamilton
I think it happens by specifying login and there is an avenue to account 
creation then.

I however, don't want to logout and remove my account to see if that is it [;<).

-Original Message-
From: Kay Schenk [mailto:kay.sch...@gmail.com] 
Sent: Sunday, April 12, 2015 10:18
To: OOo Apache
Subject: MediaWiki missing "new account" icon/Link?

Hello all --

I know we're basically "whitelisting" both CWiki and MWiki accounts, but
currently I do not find a "Register" link on any OpenOffice Wiki
(https://wiki.openoffice.org/wiki/Main_Page)
pages. Was this removed and I didn't notice?

If some alternate means of account registration is used, shouldn't this
be mentioned on the main page?

-- 
-
MzK

“What is the point of being alive if you don't
 at least  try to do something remarkable?”
   -- John Green, "An Abundance of Katherines"

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Need help with strings

2015-04-12 Thread Regina Henschel

Hi Ariel,

Regina Henschel schrieb:

Hi Ariel,

thanks for your hints. It seems that the class OUString has the needed
methods. But I need some time to test it.


It is still about the file trunk\main\starmath\source\smdetect.cxx

Problem in detail:
The existing code has
   const sal_uInt16 nReadSize(4095);
   sal_Char aBuffer[nReadSize+1];
   pStrm->Seek( STREAM_SEEK_TO_BEGIN );
   const sal_uLong nBytesRead(pStrm->Read( aBuffer, nReadSize ));
   aBuffer[nBytesRead + 1] = 0;

If the stream is actually UTF-8 encoded, then
   OUString sFragment(aBuffer,nBytesRead,RTL_TEXTENCODING_UTF8);
gives a correct OUString and then my further ideas work.

But if the stream is actually UTF-16, then converting fails. I can 
detect, that the first two elements of the variable aBuffer are a BOM. 
But I don't know how to get an OUString from aBuffer in that case.

This
   OUString sFragment(aBuffer,nBytesRead,RTL_TEXTENCODING_UNICODE);
does not work.

Kind regards
Regina





Kind regards
Regina

Ariel Constenla-Haile schrieb:

Hello Regina,

On Wed, Apr 08, 2015 at 09:02:06PM +0200, Regina Henschel wrote:

Hi all,

I'm going to improve the MathML type detection. Currently there exist
files,
that can be opened or imported fine, when the type detection would
allow it.
https://bz.apache.org/ooo/show_bug.cgi?id=126230

I have attached a C++ file to show what I want to do.
The problem is, that MathML does not need to be encoded in utf-8 but can
have any other encoding. For example MS Windows "Math Input Control"
exports
formulas in utf-16.

So my question is, which kind of string can I use, that is able to
detect/use utf-16 and has the needed methods similar to C++ string
methods
find, rfind, insert, substring, clear, erase? Does AOO has such kind of
string?


You can use OpenOffice's rtl string and string buffer classes, together
with the lower lever text conversion from
https://www.openoffice.org/api/docs/cpp/ref/names/o-textcvt.h.html


It is possible to get the encoding from the MathML file or set default
utf-8, in case that information is needed for to instantiate a string
object.


If the file has no information about its encoding, you will have to
perform some kind of encoding detection, see Writer's ASCII filter for
example:

bool SwIoSystem::IsDetectableText
main/sw/source/filter/basflt/iodetect.cxx

used in sal_uLong SwASCIIParser::ReadChars()
main/sw/source/filter/ascii/parasc.cxx

Searching rtl_convertTextToUnicode in OpenGrok might give other useful
hints.


Regards




-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org





-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: MediaWiki missing "new account" icon/Link?

2015-04-12 Thread jan i
On Sunday, April 12, 2015, Kay Schenk  wrote:

> Hello all --
>
> I know we're basically "whitelisting" both CWiki and MWiki accounts, but
> currently I do not find a "Register" link on any OpenOffice Wiki
> (https://wiki.openoffice.org/wiki/Main_Page)
> pages. Was this removed and I didn't notice?
>
> If some alternate means of account registration is used, shouldn't this
> be mentioned on the main page?

+1 The cwiki is a 2 step, The user creates an account, then the admin
whitelist it.

we used to have a page in wiki.o.a.o (register) that asked you to send an
email to dev@

rgds
jan i

>
> --
> -
> MzK
>
> “What is the point of being alive if you don't
>  at least  try to do something remarkable?”
>-- John Green, "An Abundance of Katherines"
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> 
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 
>
>

-- 
Sent from My iPad, sorry for any misspellings.


Re: MediaWiki missing "new account" icon/Link?

2015-04-12 Thread Keith N. McKenna
Kay Schenk wrote:
> Hello all --
> 
> I know we're basically "whitelisting" both CWiki and MWiki accounts, but
> currently I do not find a "Register" link on any OpenOffice Wiki
> (https://wiki.openoffice.org/wiki/Main_Page)
> pages. Was this removed and I didn't notice?
> 
> If some alternate means of account registration is used, shouldn't this
> be mentioned on the main page?
> 
Kay;

Account creation by users on the m-wiki was disabled quite some time ago
as an anti-spam measure. The procedure to get an m-wki account is to
send a request for an m-wiki account containing your preferred user name
and your e-mail address  either here or to the documentation mailing
list and one of the admins, usually myself or Andrea will create the
account. A notice with a temporary password will be sent to the user at
the e-mail address provided. The temporary password will be required to
be changed at the first log-in.

Regards
Keith


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



MediaWiki missing "new account" icon/Link?

2015-04-12 Thread Kay Schenk
Hello all --

I know we're basically "whitelisting" both CWiki and MWiki accounts, but
currently I do not find a "Register" link on any OpenOffice Wiki
(https://wiki.openoffice.org/wiki/Main_Page)
pages. Was this removed and I didn't notice?

If some alternate means of account registration is used, shouldn't this
be mentioned on the main page?

-- 
-
MzK

“What is the point of being alive if you don't
 at least  try to do something remarkable?”
   -- John Green, "An Abundance of Katherines"

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: 回复:Re: How to achieve online editing?

2015-04-12 Thread Kay Schenk


On 04/12/2015 08:24 AM, 郄宁 wrote:
> 
> Thank you for your answer. I am using win7,there is a CMS in the
> background and use network, If I want to edit oo documentation which
> interfaces need to call?

Hi. When you say you want to edit the documentation, do you mean some
information on:

* the wiki? -- https://wiki.openoffice.org/wiki/Main_Page
* the main website? -- http://www.openoffice.org/
* the internal Help files?

or something else? We need more detail in order to answer your question.

> 
> 在2015年04月12日 19:40,Marcus 写道: Am 04/11/2015 03:41 AM, schrieb 郄宁:
>> For example, I put the OpenOffice files are uploaded to a financial
>> system how do Idirectly on the document in the accounting system
>> for editing
> 
> this is too less information to give a howto description.
> 
> What OS do you use? Is there a CMS (Content Management System) in
> the background? Is a network used?
> 
> If possible you should also ask your system admin(s) for help. ;-)
> 
> Thanks
> 
> Marcus
> 
> -
>
> 
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 

-- 
-
MzK

“What is the point of being alive if you don't
 at least  try to do something remarkable?”
   -- John Green, "An Abundance of Katherines"

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Re: How to achieve online editing?

2015-04-12 Thread Simon Phipps
It's likely that your best approach will involve using CMIS, which is the
interface standard most CMS offer. While there has been some experimental
work done with CMIS in AOO, it's fully implemented in LibreOffice and there
are reports on the web of interaction with a variety of CMS. Try searching
for "using cmis in libreoffice" for more details.

Hope this helps,

Simon

On Sun, Apr 12, 2015 at 4:24 PM, 郄宁  wrote:

>
> Thank you for your answer. I am using win7,there is a CMS in the
> background and use network, If I want to edit oo documentation which
> interfaces need to call?
>
> 在2015年04月12日 19:40,Marcus 写道:
> Am 04/11/2015 03:41 AM, schrieb 郄宁:
> > For example, I put the OpenOffice files are uploaded to a financial
> system how do Idirectly on the document in the accounting system for editing
>
> this is too less information to give a howto description.
>
> What OS do you use? Is there a CMS (Content Management System) in the
> background? Is a network used?
>
> If possible you should also ask your system admin(s) for help. ;-)
>
> Thanks
>
> Marcus
>


??????Re: ??????Re: How to achieve online editing?

2015-04-12 Thread ????


This CMS software is our own developed by asp.net

??2015??04??12?? 23:30??Marcus :
Am 04/12/2015 05:24 PM, schrieb :
>
> Thank you for your answer. I am using win7??there is a CMS in the background 
> and use network?? If I want to edit oo documentation which interfaces need to 
> call?

as you don't know tell us which CMS you are using, it's not possible to
give you a hint. But because you are using a CMS, it has to be set
there. OpenOffice is IMHO out of the game.

Marcus



> ??2015??04??12?? 19:40??Marcus :
> Am 04/11/2015 03:41 AM, schrieb :
>> For example, I put the OpenOffice files are uploaded to a financial system 
>> how do Idirectly on the document in the accounting system for editing
>
> this is too less information to give a howto description.
>
> What OS do you use? Is there a CMS (Content Management System) in the
> background? Is a network used?
>
> If possible you should also ask your system admin(s) for help. ;-)
>
> Thanks
>
> Marcus

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: ??????Re: How to achieve online editing?

2015-04-12 Thread Marcus

Am 04/12/2015 05:24 PM, schrieb :


Thank you for your answer. I am using win7??there is a CMS in the background 
and use network?? If I want to edit oo documentation which interfaces need to 
call?


as you don't know tell us which CMS you are using, it's not possible to 
give you a hint. But because you are using a CMS, it has to be set 
there. OpenOffice is IMHO out of the game.


Marcus




??2015??04??12?? 19:40??Marcus :
Am 04/11/2015 03:41 AM, schrieb :

For example, I put the OpenOffice files are uploaded to a financial system how 
do Idirectly on the document in the accounting system for editing


this is too less information to give a howto description.

What OS do you use? Is there a CMS (Content Management System) in the
background? Is a network used?

If possible you should also ask your system admin(s) for help. ;-)

Thanks

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



??????Re: How to achieve online editing?

2015-04-12 Thread ????

Thank you for your answer. I am using win7??there is a CMS in the background 
and use network?? If I want to edit oo documentation which interfaces need to 
call?
 
??2015??04??12?? 19:40??Marcus :
Am 04/11/2015 03:41 AM, schrieb :
> For example, I put the OpenOffice files are uploaded to a financial system 
> how do Idirectly on the document in the accounting system for editing

this is too less information to give a howto description.

What OS do you use? Is there a CMS (Content Management System) in the
background? Is a network used?

If possible you should also ask your system admin(s) for help. ;-)

Thanks

Marcus

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to achieve online editing?

2015-04-12 Thread Marcus

Am 04/11/2015 03:41 AM, schrieb :

For example, I put the OpenOffice files are uploaded to a financial system how 
do Idirectly on the document in the accounting system for editing


this is too less information to give a howto description.

What OS do you use? Is there a CMS (Content Management System) in the 
background? Is a network used?


If possible you should also ask your system admin(s) for help. ;-)

Thanks

Marcus

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org