[dev] Some questions on Repackage and Scp2 module.

2008-04-23 Thread Cynthia Qu
Hi,dear all,

I am a RE in RedFlag2000, CHINA. I am doing something on Repackage and want to 
make it smaller. But I have met some problems.I have some questions about scp2 
project and repackge.

As follows,
 1. Is it possible to remove the files that without a gid defined in module 
scp2 ?
  For example, I can't find the gid of file msgbsutl.dll in scp2, and can 
only find the information in the output tree in  instsetoo_native with the 
line:
\OOo_m247\instsetoo_native\wntmsci10.pro\OpenOffice\msi\idt_files\en-US\en-US\File.idt(1623):msgbsutl.dll
 g_f_mozilla_runtime__programmsgbsutl.dll200704  8.4.0.9273 
 16384   2140
 And in
\OOo_m247\instsetoo_native\wntmsci10.pro\OpenOffice\msi\info_files\en-US\packorder.txt(2142):2140
   openoffice.org-core07.cab   msgbsutl.dllmsgbsutl.dll 
  What shall I do if I want to remove it, regardless whether it is useful or 
not?
 
 2. How to read the ddf file ? 
Like in :
\OOo_m247\instsetoo_native\wntmsci10.pro\OpenOffice\msi\ddf\en-US\openoffice.org-core07.ddf
 there is a line:
 OpenOffice\msi\zip\en-US\00\mozruntime_zip\components\i18n.dll i18n.dll
 what's the meaning of this line? And what the ddf files used for?
 
 3. What's the meaning of item Component_ in idt files? 
 like: 
\OOo_m247\instsetoo_native\wntmsci10.pro\OpenOffice\msi\idt_files\en-US\00\File.idt.
 
 4. How does the file packorder.txt generated? And does the item 
Filetable_Sequence mean the module defined in module_xxx.scp? I can't find it 
in source, but in output tree instead.
 
 Is there anybody could give me some hint?
 Thank you very much in advance! :)
 
Kind Regards from BJ,
Cynthia Qu ^_^
2008-04-23


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] willing to help

2008-04-23 Thread Brian Bauer
Hi 

My name is brian bauer I recently graduated from matc with a proggramming 
degree but causee its only an assoiciates degree most large coorps don't want 
to hire me cause of my lack of experience and lack a higher degree.  I am on a 
limited income so improoving my education is not possible without a better job 
and getting the better job isn't possible without more experience or a better 
degree.  

so I turn to you guys if there is any little coding projects you need help on 
ill be glad to help out I graduated from school in 2006 so im a bit rusty but 
im sure itll come back once I get back into it. I took the majority of my 
classes in VB, however I also know html javascript java c as well 

Im willing to help with whatever I can in exchange for experience and to make 
me a better code writer :D

thanks for your time

Brian bauer

[dev] Re: [qa-dev] Re: [marketing] README for OOo 3.0 Beta

2008-04-23 Thread Cor Nouws

Uwe Altmann wrote (17-4-2008 21:03)
http://wiki.services.openoffice.org/wiki/OOoRelease30_Readme with the 


Please go over the windows specific text  - this should be now like the 
recently delivered one.


Did some changes/ improvements there.


Input on this is *urgently* needed!

I see myself in charge for the Mac version - Windows, Linux and Solaris 
input is what we need now.


Still blanc..

--

The Year of 3 -2008- Het jaar van 3

Cor Nouws
Arnhem - Netherlands - nl.OpenOffice.org - marketing contact


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] Development at a Glance - Weekly Update CW17

2008-04-23 Thread Dieter Loeschky

Hi,

here is the weekly update for calendar week 17:
http://blogs.sun.com/GullFOSS/entry/development_at_a_glance_weekly47

Regards,
Dieter



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] Export Page Numbering (XSLT|Java-UNO)

2008-04-23 Thread Vincent Spiewak
Hi all,
 I try to make an ODT to DAISY DTBook AddOn based on an XSLT
 Transformation and Java UNO AddOn.
 (for more Informations, see: http://sourceforge.net/projects/odt2dtbook)

 DTBooks need page numbering in order to navigate directly to a specific page.
 It is strongly recommended that pages be individually and uniquely
 tagged in text books.

 DTBooks need to use printed page numbering, not real page
 numbering (in status bar).
 Moreover Dtbook make a distinction between 0-9, iii, and other numbering format

 This is a dtbook example:
 [...]
  pagenum page=front id=fm-3iii/pagenum
  [...]
 pagenum page=normal id=ch3-4343/pagenum
  pthis is the line 1 of page 43/p
  pthis is the line 2 of page 43/p
 pagenum page=normal id=ch3-/pagenum
  pthis is the line 1 of page 44/p
  pthis is the line 2 of page 44/p
 [...]


 It's seems that ODT doesn't contain any hard coded page or
 page-break tag, and footers aren't on each pages,
 so it's hard to know when a new page start


 Do you have any informations or feedbacks about page numbering ?
 (I can make a pre-processing using Java UNO if it's needed)


 PS:
 Currently, I use this template to detect each pages:

 template match=text:p

xsl:variable name=masterPageStyle
select=/office:document/office:automatic-styles

 /style:[EMAIL PROTECTED]:name=(current()/@text:style-name)]
   /@style:master-page-name /

xsl:variable name=breakBefore
select=/office:document/office:automatic-styles

 /style:[EMAIL PROTECTED]:name=(current()/@text:style-name)]

 /style:paragraph-properties/@fo:break-before /

xsl:if test=$masterPageStyle or $breakBefore='page'
p=[page]=/p
/xsl:if
 /template

 Do you think it is a right way ?


 Cordially

  Vincent Spiewak

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]