Re: Student Project

2014-09-21 Thread Deborah Digges
Hi Regina,

I looked through the documentation you sent me, but I wasn't able to figure
out where exactly to start. Could you please help me out?
On Sep 21, 2014 11:01 PM, Regina Henschel rb.hensc...@t-online.de wrote:

 Hi Deborah,

 Deborah Digges schrieb:

 Hi Regina,

 I am very much interested in this task . I'd love to go over the details
 with you, at your convenience. I'm not exactly sure what this means, but
 it
 sounds really interesting! I've started reading the chapter on the docs.

 I'll reach out to you with questions as I get them :)


 We will surely help you if necessary.

 Do you have made any progress? For example identify the areas where work
 is needed in the code? Do you have already an idea where to start?

 Kind regards
 Regina



 Thanks,
 Deborah



 On Fri, Sep 12, 2014 at 6:20 PM, Regina Henschel rb.hensc...@t-online.de
 
 wrote:

  Hi Deborah,

 Deborah Digges schrieb:

  I'll get in touch with the QA team right away. Thanks for all your help.
 I've uploaded the patches and set the appropriate flags for review
 request,  as indicated by Regina Henschel :)
 If there are any more such issues, I'd be glad to work on them,to
 familiarize myself with the whole process. Meanwhile,  I'll scout for
 issues on bugzilla.


 I think you can start a larger project. Here is my proposal: Implement a
 regular polygon. The request [1] is very old. In the meantime we have got
 ODF1.2 specification [2] which defines the element
 draw:regular-polygon.
 The shape belongs to the primitive shapes, same as draw:rect or
 draw:circle or draw:ellipse. To see such shape, you can use the
 application Karbon from the Calligra suite and therein the shape Star.
 Calligra should be available from your Linux distributor.

 Apache OpenOffice has not yet implemented this kind of shape. Are you
 interested in this task? If yes, we can speak about details.

 Kind regards
 Regina

 [1] https://issues.apache.org/ooo/show_bug.cgi?id=18381
 [2] http://docs.oasis-open.org/office/v1.2/os/OpenDocument-
 v1.2-os-part1.html chapter 10.3.6draw:regular-polygon


 -
 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: Student Project

2014-09-21 Thread Regina Henschel

Hi Deborah,

Deborah Digges schrieb:

Hi Regina,

I looked through the documentation you sent me, but I wasn't able to figure
out where exactly to start. Could you please help me out?


The code is indeed huge. But you can mimic the solutions you see for 
rectangles and ellipses. And therefore you should look how it is done 
for them.


You get an overview of the code in 
https://wiki.openoffice.org/wiki/Source_code_directories. It is not 
up-to-date, but in most parts are still valid. The sister project 
LibreOffice has some similar information in http://docs.libreoffice.org/ 
Although they made some changes in the structure most parts are still 
the same as in Apache OpenOffice.


Besides searching in your local copy of the code you can use OpenGrok
http://opengrok.adfinis-sygroup.org
Very useful is the 'File Path' field to restrict the search. You can 
enter a part of a path or you can exclude some paths from the search 
with a NOT before it.


===

Such new feature has several aspects, some are necessary, some are not 
needed in the beginning.


Necessary:
Read it from file.
Keep the information.
Write the information back to file.

Next step would be to show the shape on screen.

I'm not sure whether parts of the API are needed in the beginning.

Not necessary in the beginning:
- Making an UI to generate the shape. For example OpenOffice has no UI 
to generate a custom shape. To test a new shape you can always easily 
write it into the file manually, using an editor.

- Having an import and export filter to foreign formats like pptx.
- Implementing the API for using the shape in macros (not sure, see above).

===

Reading and writing to file is done in code part 'xmloff'. Most methods 
there are generic and will do the right things automatically. You will 
find some specific parts in e.g. classes SdXML..ShapeContext.


Shapes are implemented as Primitive. Such primitive can decompose 
itself into polylines, which can be drawn directly. Please look, how it 
is done for rectangle and ellipse in modul svx, e.g in 
main/svx/inc/svx/sdr/primitive2d and main/svx/source/sdr/primitive2d/.


The lower parts of this decomposition is done in module basegfx, e.g. in 
b2dpolygontools.cxx
Shapes are defined as Unitshapes and scaled to the desired size by using 
a transformation.
There you will actually define the outline of the shape. Do you know the 
involved mathematics?


The shape related classes are organized hierarchical. This hierarchy 
determines, where an attribute is introduced. Find a diagram in 
http://docs.libreoffice.org/svx/html/classSdrObject.html Or look at 
http://svn.apache.org/viewvc/openoffice/branches/alg/aw080/main/svx/inc/svx/svdobj.hxx?view=markup 
around line 285.
[The branch aw080 contains ongoing improvement work in Draw, for example 
change from integer to double and change to always use transformation 
matrices. The owner of this branch is Armin, our Draw expert.]


I hope this will help you to find relevant parts.

Kind regards
Regina




On Sep 21, 2014 11:01 PM, Regina Henschel rb.hensc...@t-online.de wrote:


Hi Deborah,

Deborah Digges schrieb:


Hi Regina,

I am very much interested in this task . I'd love to go over the details
with you, at your convenience. I'm not exactly sure what this means, but
it
sounds really interesting! I've started reading the chapter on the docs.

I'll reach out to you with questions as I get them :)



We will surely help you if necessary.

Do you have made any progress? For example identify the areas where work
is needed in the code? Do you have already an idea where to start?

Kind regards
Regina




Thanks,
Deborah



On Fri, Sep 12, 2014 at 6:20 PM, Regina Henschel rb.hensc...@t-online.de



wrote:

  Hi Deborah,


Deborah Digges schrieb:

  I'll get in touch with the QA team right away. Thanks for all your help.

I've uploaded the patches and set the appropriate flags for review
request,  as indicated by Regina Henschel :)
If there are any more such issues, I'd be glad to work on them,to
familiarize myself with the whole process. Meanwhile,  I'll scout for
issues on bugzilla.



I think you can start a larger project. Here is my proposal: Implement a
regular polygon. The request [1] is very old. In the meantime we have got
ODF1.2 specification [2] which defines the element
draw:regular-polygon.
The shape belongs to the primitive shapes, same as draw:rect or
draw:circle or draw:ellipse. To see such shape, you can use the
application Karbon from the Calligra suite and therein the shape Star.
Calligra should be available from your Linux distributor.

Apache OpenOffice has not yet implemented this kind of shape. Are you
interested in this task? If yes, we can speak about details.

Kind regards
Regina

[1] https://issues.apache.org/ooo/show_bug.cgi?id=18381
[2] http://docs.oasis-open.org/office/v1.2/os/OpenDocument-
v1.2-os-part1.html chapter 10.3.6draw:regular-polygon



Re: Student Project

2014-09-13 Thread Deborah Digges
Hi Regina,

I am very much interested in this task . I'd love to go over the details
with you, at your convenience. I'm not exactly sure what this means, but it
sounds really interesting! I've started reading the chapter on the docs.

I'll reach out to you with questions as I get them :)

Thanks,
Deborah



On Fri, Sep 12, 2014 at 6:20 PM, Regina Henschel rb.hensc...@t-online.de
wrote:

 Hi Deborah,

 Deborah Digges schrieb:

 I'll get in touch with the QA team right away. Thanks for all your help.
 I've uploaded the patches and set the appropriate flags for review
 request,  as indicated by Regina Henschel :)
 If there are any more such issues, I'd be glad to work on them,to
 familiarize myself with the whole process. Meanwhile,  I'll scout for
 issues on bugzilla.


 I think you can start a larger project. Here is my proposal: Implement a
 regular polygon. The request [1] is very old. In the meantime we have got
 ODF1.2 specification [2] which defines the element draw:regular-polygon.
 The shape belongs to the primitive shapes, same as draw:rect or
 draw:circle or draw:ellipse. To see such shape, you can use the
 application Karbon from the Calligra suite and therein the shape Star.
 Calligra should be available from your Linux distributor.

 Apache OpenOffice has not yet implemented this kind of shape. Are you
 interested in this task? If yes, we can speak about details.

 Kind regards
 Regina

 [1] https://issues.apache.org/ooo/show_bug.cgi?id=18381
 [2] http://docs.oasis-open.org/office/v1.2/os/OpenDocument-
 v1.2-os-part1.html chapter 10.3.6draw:regular-polygon


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




Re: Student Project

2014-09-12 Thread Regina Henschel

Hi Deborah,

Deborah Digges schrieb:

I'll get in touch with the QA team right away. Thanks for all your help.
I've uploaded the patches and set the appropriate flags for review
request,  as indicated by Regina Henschel :)
If there are any more such issues, I'd be glad to work on them,to
familiarize myself with the whole process. Meanwhile,  I'll scout for
issues on bugzilla.


I think you can start a larger project. Here is my proposal: Implement a 
regular polygon. The request [1] is very old. In the meantime we have 
got ODF1.2 specification [2] which defines the element 
draw:regular-polygon. The shape belongs to the primitive shapes, same 
as draw:rect or draw:circle or draw:ellipse. To see such shape, 
you can use the application Karbon from the Calligra suite and therein 
the shape Star. Calligra should be available from your Linux distributor.


Apache OpenOffice has not yet implemented this kind of shape. Are you 
interested in this task? If yes, we can speak about details.


Kind regards
Regina

[1] https://issues.apache.org/ooo/show_bug.cgi?id=18381
[2] 
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html chapter 
10.3.6draw:regular-polygon


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



Re: Student Project

2014-09-09 Thread Ariel Constenla-Haile
Hello Deborah,

On Fri, Aug 29, 2014 at 01:49:35PM +0530, Deborah Digges wrote:
 Hello,
 
 I am a *4th year* Computer Science student. As a part of a course
 - The Architecture of Open source technologies, I am required to
 contribute to an open source project.
 
 The project is needed to be done by a team of *3 members*.The semester
 ends by* November*, so that gives me *three months* to work on the
 project. The course requires us to work *8 hours a week*. Also, the
 course emphasizes on making code contributions.
 
 I am familiar with C,C++ and python, and I am eager to pick up
 additional skills that are required.
 
 Please could you help me in this task, as I am quite new to open
 source.

For this period of time, and due to the complexity of the code base, you
might be interested in something more self-contained, like a Content
Provider or a data base driver; for example, you can take the idea of
a CMIS Content Provider that was part of a Google Summer of Code that
wasn't completed; searching the mailing list for the subject CMIS you
can find several mails
http://markmail.org/search/?q=list%3Aorg.apache.incubator-ooo.dev+subject%3Acmis
and the extension skeleton at
http://people.apache.org/~arielch/extensions/CMISContentProvider.zip

As you'll see, a Content Provider can be developed as an extension,
there is no need for you to learn nor modify OpenOffice source code.


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


signature.asc
Description: Digital signature


Re: Student Project

2014-09-05 Thread Deborah Digges
Thank you, I will have a look at the issues and get back to you with
questions.

It would be great if you could help us find a project for the team as a
whole i.e. three members working for ~8hrs for  3 months.
Thanks,
Deborah Digges
On Sep 5, 2014 1:46 AM, Andrea Pescetti pesce...@apache.org wrote:

 On 03/09/2014 Deborah Digges wrote:

 Thank you for your help and time; I will take a look at the issues and try
 to solve some of them.


 Two easy issues that I just filed are here:
 https://issues.apache.org/ooo/show_bug.cgi?id=125583
 https://issues.apache.org/ooo/show_bug.cgi?id=125584
 If you wish to take care of those, just assign them to you (you will need
 to register for Bugzilla if you haven't already). Feel free to ask here for
 any clarifications.

  I have completed the build and install, and have also taken a look at the
 architecture.


 To fix the above, it will be handy for you to configure with
 --with-package-format=installed ; so you will save the time that would be
 spent in creating DEB packages (assuming your build was done with the
 default options applying to Ubuntu).

  If you do come across a project that has the needed mix of mentors, I'd be
 glad to be a part of it.


 We could find something nice. Just a clarification: in your first mail,
 you mentioned you are three students. Shall we find a task (or a collection
 of tasks) for a team of three people working 8 hours/week for ~3 months or
 for you only?

 Regards,
   Andrea.

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




Re: Student Project

2014-09-05 Thread Deborah Digges
Hello, I have been working on the bug
https://issues.apache.org/ooo/show_bug.cgi?id=125583, and have attached the
patch for it.
However, on rebuilding , I am unable to see the changes. What am I doing
wrong?
Also, please could you tell me how to assign a bug to myself.



On Fri, Sep 5, 2014 at 11:45 AM, Deborah Digges 
deborah.gertrude.dig...@gmail.com wrote:

 Thank you, I will have a look at the issues and get back to you with
 questions.

 It would be great if you could help us find a project for the team as a
 whole i.e. three members working for ~8hrs for  3 months.
 Thanks,
 Deborah Digges
 On Sep 5, 2014 1:46 AM, Andrea Pescetti pesce...@apache.org wrote:

 On 03/09/2014 Deborah Digges wrote:

 Thank you for your help and time; I will take a look at the issues and
 try
 to solve some of them.


 Two easy issues that I just filed are here:
 https://issues.apache.org/ooo/show_bug.cgi?id=125583
 https://issues.apache.org/ooo/show_bug.cgi?id=125584
 If you wish to take care of those, just assign them to you (you will need
 to register for Bugzilla if you haven't already). Feel free to ask here for
 any clarifications.

  I have completed the build and install, and have also taken a look at the
 architecture.


 To fix the above, it will be handy for you to configure with
 --with-package-format=installed ; so you will save the time that would
 be spent in creating DEB packages (assuming your build was done with the
 default options applying to Ubuntu).

  If you do come across a project that has the needed mix of mentors, I'd
 be
 glad to be a part of it.


 We could find something nice. Just a clarification: in your first mail,
 you mentioned you are three students. Shall we find a task (or a collection
 of tasks) for a team of three people working 8 hours/week for ~3 months or
 for you only?

 Regards,
   Andrea.

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


Index: main0108.xhp
===
--- main0108.xhp(revision 1622046)
+++ main0108.xhp(working copy)
@@ -58,7 +58,7 @@
 bookmark xml-lang=en-US branch=hid/.uno:HelpSupport id=bm_id3159176 
localize=false/paragraph role=heading id=hd_id3154898 xml-lang=en-US 
level=2 l10n=U oldref=15Support/paragraph
 paragraph role=paragraph id=par_id3157909 xml-lang=en-US l10n=U 
oldref=16ahelp hid=.uno:HelpSupportShows information on how to get 
support./ahelp/paragraph
 bookmark xml-lang=en-US branch=hid/.uno:OnlineUpdate id=bm_id2785119 
localize=false/paragraph role=heading id=hd_id2926419 xml-lang=en-US 
level=2 l10n=CHGlink href=text/shared/01/online_update.xhpCheck for 
Updates/link/paragraph
-paragraph role=paragraph id=par_id2783898 xml-lang=en-US 
l10n=CHGahelp hid=.Enable an Internet connection for %PRODUCTNAME. If 
you need a Proxy, check the %PRODUCTNAME Proxy settings in switchinline 
select=syscaseinline select=MAC%PRODUCTNAME - 
Preferences/caseinlinedefaultinlineTools - 
Options/defaultinline/switchinline - Internet. Then choose Check for 
Updates to check for the availability of a newer version of your office 
suite./ahelp/paragraph
+paragraph role=paragraph id=par_id2783898 xml-lang=en-US 
l10n=CHGahelp hid=.Enable an Internet connection for %PRODUCTNAME. If 
you need a Proxy, check the %PRODUCTNAME Proxy settings in switchinline 
select=syscaseinline select=MAC%PRODUCTNAME - 
Preferences/caseinlinedefaultinlineTools - 
Options/defaultinline/switchinline - Internet. Then choose switchinline 
select=syscaseinline select=MAC%PRODUCTNAME - 
Preferences/caseinlinedefaultinlineTools - 
Options/defaultinline/switchinline - Online Update - Check for Updates to 
check for the availability of a newer version of your office 
suite./ahelp/paragraph
 bookmark xml-lang=en-US 
branch=hid/service:com.sun.star.tab.tabreg?purchase id=bm_id584124 
localize=false/paragraph role=paragraph id=par_idN106A6 
xml-lang=en-US l10n=NEWahelp hid=. visibility=hiddenThis menu 
command is visible for the evaluation version of %PRODUCTNAME. Choose to open 
the Purchase %PRODUCTNAME Wizard./ahelpcommentUFI: see spec doc 
Unlocking_Evalversion_as_Fullversion.sxw by BH/commentcommentremoved 
switch, changed to invisible help text/comment/paragraph
 bookmark xml-lang=en-US branch=hid/.uno:About id=bm_id3151385 
localize=false/paragraph role=heading id=hd_id3153881 xml-lang=en-US 
level=2 l10n=U oldref=7About $[officename]/paragraph
 paragraph role=paragraph id=par_id3144510 xml-lang=en-US l10n=U 
oldref=8ahelp hid=.uno:AboutDisplays general program information such as 
version number and copyrights./ahelp/paragraph

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

Re: Student Project

2014-09-05 Thread Deborah Digges
This is the fix for https://issues.apache.org/ooo/show_bug.cgi?id=125584.

I'm sorry if this isn't the right way to share patches. Should I upload it
as an attachment on the specific issue page?

Thanks,
Deborah Digges


On Fri, Sep 5, 2014 at 5:51 PM, Deborah Digges 
deborah.gertrude.dig...@gmail.com wrote:

 Hello, I have been working on the bug
 https://issues.apache.org/ooo/show_bug.cgi?id=125583, and have attached
 the patch for it.
 However, on rebuilding , I am unable to see the changes. What am I doing
 wrong?
 Also, please could you tell me how to assign a bug to myself.



 On Fri, Sep 5, 2014 at 11:45 AM, Deborah Digges 
 deborah.gertrude.dig...@gmail.com wrote:

 Thank you, I will have a look at the issues and get back to you with
 questions.

 It would be great if you could help us find a project for the team as a
 whole i.e. three members working for ~8hrs for  3 months.
 Thanks,
 Deborah Digges
 On Sep 5, 2014 1:46 AM, Andrea Pescetti pesce...@apache.org wrote:

 On 03/09/2014 Deborah Digges wrote:

 Thank you for your help and time; I will take a look at the issues and
 try
 to solve some of them.


 Two easy issues that I just filed are here:
 https://issues.apache.org/ooo/show_bug.cgi?id=125583
 https://issues.apache.org/ooo/show_bug.cgi?id=125584
 If you wish to take care of those, just assign them to you (you will
 need to register for Bugzilla if you haven't already). Feel free to ask
 here for any clarifications.

  I have completed the build and install, and have also taken a look at
 the
 architecture.


 To fix the above, it will be handy for you to configure with
 --with-package-format=installed ; so you will save the time that would
 be spent in creating DEB packages (assuming your build was done with the
 default options applying to Ubuntu).

  If you do come across a project that has the needed mix of mentors, I'd
 be
 glad to be a part of it.


 We could find something nice. Just a clarification: in your first mail,
 you mentioned you are three students. Shall we find a task (or a collection
 of tasks) for a team of three people working 8 hours/week for ~3 months or
 for you only?

 Regards,
   Andrea.

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



Index: 0404.xhp
===
--- 0404.xhp(revision 1622046)
+++ 0404.xhp(working copy)
@@ -80,7 +80,7 @@
 /variable/paragraph
 section id=feldreferenzen
 paragraph role=paragraph id=par_id3154692 xml-lang=en-US l10n=CHG 
oldref=51Choose emphInsert - Fields - Other - Cross-references/emph 
tab/paragraph
-paragraph role=paragraph id=par_id3145411 xml-lang=en-US l10n=U 
oldref=63Choose emphInsert - Referenced Field/emph
+paragraph role=paragraph id=par_id3145411 xml-lang=en-US l10n=U 
oldref=63Choose emphInsert - Cross Reference/emph
 /paragraph
 /section
 paragraph role=paragraph id=par_id3147515 xml-lang=en-US l10n=U 
oldref=52variable id=feldfunktionenChoose emphInsert - Fields - Other 
- Functions/emph tab 

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

Re: Student Project

2014-09-05 Thread Andrea Pescetti

On 05/09/2014 Deborah Digges wrote:

Hello, I have been working on the bug
https://issues.apache.org/ooo/show_bug.cgi?id=125583, and have attached
the patch for it.


Thanks! Please attach the two patches to the respective bugs in 
Bugzilla. What you should do is:
1) Login at https://issues.apache.org/ooo/ (or create an account if you 
don't have yet)

2) Under Assigned to, click Take to assign the issue to yourself
3) Under Issue Type select PATCH
4) Save the changes
5) click on Add an attachment and attach your patch


However, on rebuilding , I am unable to see the changes. What am I doing
wrong?


What configure options are you using? I recommended that you configured 
with --with-package-format=installed ; in that case you would find a 
ready-to-run copy of OpenOffice in 
main/instsetoo_native/unxlngx6.pro/Apache_OpenOffice/installed/install/en-US/openoffice4/program/soffice 
and you should simply execute it (no installation).



Also, please could you tell me how to assign a bug to myself.


If you don't see the Take command just tell us, we may need to get 
some extra privileges assigned to you.


Regards,
  Andrea.

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



Re: Student Project

2014-09-05 Thread Regina Henschel

Hi,

Andrea Pescetti schrieb:

On 05/09/2014 Deborah Digges wrote:

Hello, I have been working on the bug
https://issues.apache.org/ooo/show_bug.cgi?id=125583, and have attached
the patch for it.


Thanks! Please attach the two patches to the respective bugs in
Bugzilla. What you should do is:
1) Login at https://issues.apache.org/ooo/ (or create an account if you
don't have yet)
2) Under Assigned to, click Take to assign the issue to yourself
3) Under Issue Type select PATCH
4) Save the changes
5) click on Add an attachment and attach your patch


6) Set the type of the attachment to Patch. Then there is a drop-down 
list Flags for review request. Set it to ? . That will generate a mail 
to the dev-list, so that all developers know of your work.


Kind regards
Regina


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



Re: Student Project

2014-09-05 Thread Deborah Digges
I was running from /opt/openoffice4/program/soffice and wasn't seeing the
reflected changes. However, I was able to see the changes from /unxlngx6
.pro/Apache_OpenOffice/installed/install/en-US/openoffice4/program/soffice .
Thanks!

I do not see the take command below assigned to. I reckon I do not have
the required privileges. Should I go ahead and upload the patches anyway?


On Fri, Sep 5, 2014 at 9:55 PM, Regina Henschel rb.hensc...@t-online.de
wrote:

 Hi,

 Andrea Pescetti schrieb:

 On 05/09/2014 Deborah Digges wrote:

 Hello, I have been working on the bug
 https://issues.apache.org/ooo/show_bug.cgi?id=125583, and have attached
 the patch for it.


 Thanks! Please attach the two patches to the respective bugs in
 Bugzilla. What you should do is:
 1) Login at https://issues.apache.org/ooo/ (or create an account if you
 don't have yet)
 2) Under Assigned to, click Take to assign the issue to yourself
 3) Under Issue Type select PATCH
 4) Save the changes
 5) click on Add an attachment and attach your patch


 6) Set the type of the attachment to Patch. Then there is a drop-down
 list Flags for review request. Set it to ? . That will generate a mail to
 the dev-list, so that all developers know of your work.

 Kind regards
 Regina



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




Re: Student Project

2014-09-05 Thread Kay Schenk
On Fri, Sep 5, 2014 at 6:17 AM, Deborah Digges 
deborah.gertrude.dig...@gmail.com wrote:

 This is the fix for https://issues.apache.org/ooo/show_bug.cgi?id=125584.

 I'm sorry if this isn't the right way to share patches. Should I upload it
 as an attachment on the specific issue page?


yes...that's typically what is done.

Someone will test these out soon and comment in the issue itself about your
patch.

Meanwhile, great work!

on your other question re bug assignment. Once you get a BZ account, and
log in,you should be able to assign the issue to your self using take in
the Assigned to: field. If for some reason, this does not work, please
let us know.

Thanks again for your work.



 Thanks,
 Deborah Digges


 On Fri, Sep 5, 2014 at 5:51 PM, Deborah Digges 
 deborah.gertrude.dig...@gmail.com wrote:

 Hello, I have been working on the bug
 https://issues.apache.org/ooo/show_bug.cgi?id=125583, and have attached
 the patch for it.
 However, on rebuilding , I am unable to see the changes. What am I doing
 wrong?
 Also, please could you tell me how to assign a bug to myself.



 On Fri, Sep 5, 2014 at 11:45 AM, Deborah Digges 
 deborah.gertrude.dig...@gmail.com wrote:

 Thank you, I will have a look at the issues and get back to you with
 questions.

 It would be great if you could help us find a project for the team as a
 whole i.e. three members working for ~8hrs for  3 months.
 Thanks,
 Deborah Digges
 On Sep 5, 2014 1:46 AM, Andrea Pescetti pesce...@apache.org wrote:

 On 03/09/2014 Deborah Digges wrote:

 Thank you for your help and time; I will take a look at the issues and
 try
 to solve some of them.


 Two easy issues that I just filed are here:
 https://issues.apache.org/ooo/show_bug.cgi?id=125583
 https://issues.apache.org/ooo/show_bug.cgi?id=125584
 If you wish to take care of those, just assign them to you (you will
 need to register for Bugzilla if you haven't already). Feel free to ask
 here for any clarifications.

  I have completed the build and install, and have also taken a look at
 the
 architecture.


 To fix the above, it will be handy for you to configure with
 --with-package-format=installed ; so you will save the time that would
 be spent in creating DEB packages (assuming your build was done with the
 default options applying to Ubuntu).

  If you do come across a project that has the needed mix of mentors,
 I'd be
 glad to be a part of it.


 We could find something nice. Just a clarification: in your first mail,
 you mentioned you are three students. Shall we find a task (or a collection
 of tasks) for a team of three people working 8 hours/week for ~3 months or
 for you only?

 Regards,
   Andrea.

 -
 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




-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou


Re: Student Project

2014-09-05 Thread Andrea Pescetti

On 05/09/2014 Deborah Digges wrote:

I do not see the take command below assigned to. I reckon I do not have
the required privileges. Should I go ahead and upload the patches anyway?


Sure, please do. And about the missing privileges: please send a mail to
the QA list q...@openoffice.apache.org and ask to be added to the QA team 
in Bugzilla. This should give you higher privileges in issue handling. 
Please also state that you are asking for it in order to be able to 
assign issues to yourself (so, if there are any other tweaks to do, the 
Bugzilla admins will know what to do).


Regards,
  Andrea.

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



Re: Student Project

2014-09-05 Thread Deborah Digges
I'll get in touch with the QA team right away. Thanks for all your help.
I've uploaded the patches and set the appropriate flags for review
request,  as indicated by Regina Henschel :)
If there are any more such issues, I'd be glad to work on them,to
familiarize myself with the whole process. Meanwhile,  I'll scout for
issues on bugzilla.

Thanks,
Deborah Digges
 On Sep 5, 2014 10:27 PM, Andrea Pescetti pesce...@apache.org wrote:

 On 05/09/2014 Deborah Digges wrote:

 I do not see the take command below assigned to. I reckon I do not have
 the required privileges. Should I go ahead and upload the patches anyway?


 Sure, please do. And about the missing privileges: please send a mail to
 the QA list q...@openoffice.apache.org and ask to be added to the QA team
 in Bugzilla. This should give you higher privileges in issue handling.
 Please also state that you are asking for it in order to be able to assign
 issues to yourself (so, if there are any other tweaks to do, the Bugzilla
 admins will know what to do).

 Regards,
   Andrea.

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




Re: Student Project

2014-09-04 Thread Andrea Pescetti

On 03/09/2014 Deborah Digges wrote:

Thank you for your help and time; I will take a look at the issues and try
to solve some of them.


Two easy issues that I just filed are here:
https://issues.apache.org/ooo/show_bug.cgi?id=125583
https://issues.apache.org/ooo/show_bug.cgi?id=125584
If you wish to take care of those, just assign them to you (you will 
need to register for Bugzilla if you haven't already). Feel free to ask 
here for any clarifications.



I have completed the build and install, and have also taken a look at the
architecture.


To fix the above, it will be handy for you to configure with 
--with-package-format=installed ; so you will save the time that would 
be spent in creating DEB packages (assuming your build was done with the 
default options applying to Ubuntu).



If you do come across a project that has the needed mix of mentors, I'd be
glad to be a part of it.


We could find something nice. Just a clarification: in your first mail, 
you mentioned you are three students. Shall we find a task (or a 
collection of tasks) for a team of three people working 8 hours/week for 
~3 months or for you only?


Regards,
  Andrea.

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



Re: Student Project

2014-09-03 Thread Deborah Digges
Thank you for your help and time; I will take a look at the issues and try
to solve some of them.

I have completed the build and install, and have also taken a look at the
architecture.
If you do come across a project that has the needed mix of mentors, I'd be
glad to be a part of it.






On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk kay.sch...@gmail.com wrote:



 On 09/01/2014 10:25 AM, Deborah Digges wrote:
  Hello,
 
  It's great to hear from you!
  * We work primarily on unix machines - ubuntu specifically. IDEs we have
  worked on include Eclipse, NetBeans and Aptana studio.
  * I know git, but am not very experienced with it. I have worked briefly
  with perforce.
  * The course evaluation would be in the beginning of December, so that
  gives us time till the end of November to complete the project.
 
  If there is any more information I could provide you with, I'd be more
 than
  glad to.
  I'll be going through the link you've mentioned shortly. Once again,
 thank
  you for your response.
 
  Regards,
  Deborah

 The specific project I was thinking about seems to be lacking in the
 needed mix of mentors at the moment.

 We do have a listing of easy and simple hacks from our development
 orientation page:

 http://openoffice.apache.org/orientation/intro-development.html

 Feel free to take a look at these, and get involved by fixing some of
 these issues if you like. We have quite a number of Ubuntu builders who
 can answer questions on this list. Good luck with your open source project.


 
 
 
  On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk kay.sch...@gmail.com
 wrote:
 
  On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges 
  deborah.gertrude.dig...@gmail.com wrote:
 
  Hello,
 
  I am a *4th year* Computer Science student. As a part of a course -
 The
  Architecture of Open source technologies, I am required to contribute
 to
  an open source project.
 
  The project is needed to be done by a team of *3 members*.The semester
  ends
  by* November*, so that gives me *three months* to work on the project.
  The
  course requires us to work *8 hours a week*. Also, the course
 emphasizes
  on
  making code contributions.
 
  I am familiar with C,C++ and python, and I am eager to pick up
 additional
  skills that are required.
 
  Please could you help me in this task, as I am quite new to open
 source.
 
  Looking forward to your response,
  Thanks,
  Deborah Digges.
 
 
  Hello Deborah --
  Thanks for contacting Apache OpenOffice. We'd love to have you
 contribute
  to this project.  We will try to identify a specific task for your team.
 
  First, I think we need more information from you to make this
 successful:
 
  * please tell us more about your development environment -- OS, IDE, etc
  * what is your experience with source version management tools? svn,
 git,
  etc
  * your semester ends by November meaning the end of November?
 
  There are many references to open source participation available. Here's
  one that gives a perspective from a participant's viewpoint that you may
  find helpful.
 
 
 
 http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/
 
 
  --
 
 
 -
  MzK
 
  Nothing will work unless you do.
  -- Maya Angelou
 
 

 --
 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou

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




Re: Student Project

2014-09-03 Thread Amali Praveena Soban Kumar
Hi Deborah,
It is great you finished the build and install so quickly; which version of 
Ubuntu are you using?
Thanks,
Amali. 


On Thursday, 4 September 2014, 3:15, Kay Schenk kay.sch...@gmail.com wrote:
  




On 09/03/2014 06:37 AM, Deborah Digges wrote:
 Thank you for your help and time; I will take a look at the issues and try
 to solve some of them.
 
 I have completed the build and install, and have also taken a look at the
 architecture.

Great news that you succeeded with your build! This is really super!

 If you do come across a project that has the needed mix of mentors, I'd be
 glad to be a part of it.

Mostly, I didn't want to delay your efforts to find a semester project.
Hopefully, you'll find some of the easy fixes to your liking.

Hoping we can hear more from you and your team soon. Keep up the good work!

 
 
 
 
 
 
 On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk kay.sch...@gmail.com wrote:
 


 On 09/01/2014 10:25 AM, Deborah Digges wrote:
 Hello,

 It's great to hear from you!
 * We work primarily on unix machines - ubuntu specifically. IDEs we have
 worked on include Eclipse, NetBeans and Aptana studio.
 * I know git, but am not very experienced with it. I have worked briefly
 with perforce.
 * The course evaluation would be in the beginning of December, so that
 gives us time till the end of November to complete the project.

 If there is any more information I could provide you with, I'd be more
 than
 glad to.
 I'll be going through the link you've mentioned shortly. Once again,
 thank
 you for your response.

 Regards,
 Deborah

 The specific project I was thinking about seems to be lacking in the
 needed mix of mentors at the moment.

 We do have a listing of easy and simple hacks from our development
 orientation page:

 http://openoffice.apache.org/orientation/intro-development.html

 Feel free to take a look at these, and get involved by fixing some of
 these issues if you like. We have quite a number of Ubuntu builders who
 can answer questions on this list. Good luck with your open source project.





 On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk kay.sch...@gmail.com
 wrote:

 On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges 
 deborah.gertrude.dig...@gmail.com wrote:

 Hello,

 I am a *4th year* Computer Science student. As a part of a course -
 The
 Architecture of Open source technologies, I am required to contribute
 to
 an open source project.

 The project is needed to be done by a team of *3 members*.The semester
 ends
 by* November*, so that gives me *three months* to work on the project.
 The
 course requires us to work *8 hours a week*. Also, the course
 emphasizes
 on
 making code contributions.

 I am familiar with C,C++ and python, and I am eager to pick up
 additional
 skills that are required.

 Please could you help me in this task, as I am quite new to open
 source.

 Looking forward to your response,
 Thanks,
 Deborah Digges.


 Hello Deborah --
 Thanks for contacting Apache OpenOffice. We'd love to have you
 contribute
 to this project.  We will try to identify a specific task for your team.

 First, I think we need more information from you to make this
 successful:

 * please tell us more about your development environment -- OS, IDE, etc
 * what is your experience with source version management tools? svn,
 git,
 etc
 * your semester ends by November meaning the end of November?

 There are many references to open source participation available. Here's
 one that gives a perspective from a participant's viewpoint that you may
 find helpful.



 http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/


 --


 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou



 --
 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou

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



 

-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou

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

Re: Student Project

2014-09-03 Thread Deborah Digges
Hello,

Thank you, Amali. I'm currently working on version 12.04 .
Thanks,
Deborah Digges
On Sep 4, 2014 2:05 AM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:

 Hi Deborah,
 It is great you finished the build and install so quickly; which version
 of Ubuntu are you using?
 Thanks,
 Amali.


 On Thursday, 4 September 2014, 3:15, Kay Schenk kay.sch...@gmail.com
 wrote:





 On 09/03/2014 06:37 AM, Deborah Digges wrote:
  Thank you for your help and time; I will take a look at the issues and
 try
  to solve some of them.
 
  I have completed the build and install, and have also taken a look at the
  architecture.

 Great news that you succeeded with your build! This is really super!

  If you do come across a project that has the needed mix of mentors, I'd
 be
  glad to be a part of it.

 Mostly, I didn't want to delay your efforts to find a semester project.
 Hopefully, you'll find some of the easy fixes to your liking.

 Hoping we can hear more from you and your team soon. Keep up the good work!

 
 
 
 
 
 
  On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk kay.sch...@gmail.com wrote:
 
 
 
  On 09/01/2014 10:25 AM, Deborah Digges wrote:
  Hello,
 
  It's great to hear from you!
  * We work primarily on unix machines - ubuntu specifically. IDEs we
 have
  worked on include Eclipse, NetBeans and Aptana studio.
  * I know git, but am not very experienced with it. I have worked
 briefly
  with perforce.
  * The course evaluation would be in the beginning of December, so that
  gives us time till the end of November to complete the project.
 
  If there is any more information I could provide you with, I'd be more
  than
  glad to.
  I'll be going through the link you've mentioned shortly. Once again,
  thank
  you for your response.
 
  Regards,
  Deborah
 
  The specific project I was thinking about seems to be lacking in the
  needed mix of mentors at the moment.
 
  We do have a listing of easy and simple hacks from our development
  orientation page:
 
  http://openoffice.apache.org/orientation/intro-development.html
 
  Feel free to take a look at these, and get involved by fixing some of
  these issues if you like. We have quite a number of Ubuntu builders who
  can answer questions on this list. Good luck with your open source
 project.
 
 
 
 
 
  On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk kay.sch...@gmail.com
  wrote:
 
  On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges 
  deborah.gertrude.dig...@gmail.com wrote:
 
  Hello,
 
  I am a *4th year* Computer Science student. As a part of a course -
  The
  Architecture of Open source technologies, I am required to
 contribute
  to
  an open source project.
 
  The project is needed to be done by a team of *3 members*.The
 semester
  ends
  by* November*, so that gives me *three months* to work on the
 project.
  The
  course requires us to work *8 hours a week*. Also, the course
  emphasizes
  on
  making code contributions.
 
  I am familiar with C,C++ and python, and I am eager to pick up
  additional
  skills that are required.
 
  Please could you help me in this task, as I am quite new to open
  source.
 
  Looking forward to your response,
  Thanks,
  Deborah Digges.
 
 
  Hello Deborah --
  Thanks for contacting Apache OpenOffice. We'd love to have you
  contribute
  to this project.  We will try to identify a specific task for your
 team.
 
  First, I think we need more information from you to make this
  successful:
 
  * please tell us more about your development environment -- OS, IDE,
 etc
  * what is your experience with source version management tools? svn,
  git,
  etc
  * your semester ends by November meaning the end of November?
 
  There are many references to open source participation available.
 Here's
  one that gives a perspective from a participant's viewpoint that you
 may
  find helpful.
 
 
 
 
 http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/
 
 
  --
 
 
 
 -
  MzK
 
  Nothing will work unless you do.
  -- Maya Angelou
 
 
 
  --
 
 -
  MzK
 
  Nothing will work unless you do.
  -- Maya Angelou
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
  For additional commands, e-mail: dev-h...@openoffice.apache.org

 
 
 

 --
 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou

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


Re: proposed student project? freedesktop.org desktop integration for debian

2014-09-02 Thread Andrea Pescetti

On 02/09/2014 Kay Schenk wrote:

Would it be beneficial to have the students work on freedesktop
integration for our debian builds? I would prepare an issue with
pertinent details as far as I am able , but would rely on some of our
debian-based developers to fill in some pieces.


It should work the other way round: someone who does have the skills to 
fully mentor a non-trivial project proposes it. Then other community 
members can surely step in and help, but proposing a project that relies 
on someone else doing (a crucial part of the) work is not the optimal 
situation. That said, it is surely better than nothing.


You/we can also look, in the archives, at the several lists of possible 
projects we discussed or prepared for Summer of Code or similar 
initiatives: most of them remained vague proposals, stopped before we 
could have someone really competent to evaluate them also in terms of 
effort.


Regards,
  Andrea.

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



Re: proposed student project? freedesktop.org desktop integration for debian

2014-09-02 Thread Kay Schenk
On Mon, Sep 1, 2014 at 11:55 PM, Andrea Pescetti pesce...@apache.org
wrote:

 On 02/09/2014 Kay Schenk wrote:

 Would it be beneficial to have the students work on freedesktop
 integration for our debian builds? I would prepare an issue with
 pertinent details as far as I am able , but would rely on some of our
 debian-based developers to fill in some pieces.


 It should work the other way round: someone who does have the skills to
 fully mentor a non-trivial project proposes it. Then other community
 members can surely step in and help, but proposing a project that relies on
 someone else doing (a crucial part of the) work is not the optimal
 situation. That said, it is surely better than nothing.


Well perhaps I didn't express this well. I could surely write up the specs,
dependencies,  for this and point the students to the specific code areas
to make this happen. But since I am not on a debian-based platform, or
Ubuntu as they are, I would not be able to help much with system specific
problems.



 You/we can also look, in the archives, at the several lists of possible
 projects we discussed or prepared for Summer of Code or similar
 initiatives: most of them remained vague proposals, stopped before we could
 have someone really competent to evaluate them also in terms of effort.

 Regards,
   Andrea.


I understand. This is not a vague proposal but you make good points in any
case.



-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou


Re: proposed student project? freedesktop.org desktop integration for debian

2014-09-02 Thread Amali Praveena Soban Kumar
Alexandro said,I am not sure how hard would that be but you can easily setup an
environment using a virtualbox with whatever os you need (debian,
suse, fedora, or... gulp... windows) and just compile there.

what I think is, creating a virtual machine with Ubuntu OS, downloading the 
source are easier tasks;
but compiling is not, depending upon the number of issues you face with while 
building for KDE, and on the experience of the developer.I too agree with you 
as to how hard would that be
thanks,
Amali.
 


On Wednesday, 3 September 2014, 1:55, Kay Schenk kay.sch...@gmail.com wrote:
  


On Mon, Sep 1, 2014 at 11:55 PM, Andrea Pescetti pesce...@apache.org
wrote:

 On 02/09/2014 Kay Schenk wrote:

 Would it be beneficial to have the students work on freedesktop
 integration for our debian builds? I would prepare an issue with
 pertinent details as far as I am able , but would rely on some of our
 debian-based developers to fill in some pieces.


 It should work the other way round: someone who does have the skills to
 fully mentor a non-trivial project proposes it. Then other community
 members can surely step in and help, but proposing a project that relies on
 someone else doing (a crucial part of the) work is not the optimal
 situation. That said, it is surely better than nothing.


Well perhaps I didn't express this well. I could surely write up the specs,
dependencies,  for this and point the students to the specific code areas
to make this happen. But since I am not on a debian-based platform, or
Ubuntu as they are, I would not be able to help much with system specific
problems.




 You/we can also look, in the archives, at the several lists of possible
 projects we discussed or prepared for Summer of Code or similar
 initiatives: most of them remained vague proposals, stopped before we could
 have someone really competent to evaluate them also in terms of effort.

 Regards,
   Andrea.


I understand. This is not a vague proposal but you make good points in any
case.



-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou

Re: proposed student project? freedesktop.org desktop integration for debian

2014-09-02 Thread Kay Schenk


On 09/02/2014 05:02 PM, Amali Praveena Soban Kumar wrote:
 Alexandro said,I am not sure how hard would that be but you can
 easily setup an environment using a virtualbox with whatever os you
 need (debian, suse, fedora, or... gulp... windows) and just compile
 there.
 
 what I think is, creating a virtual machine with Ubuntu OS,
 downloading the source are easier tasks; but compiling is not,
 depending upon the number of issues you face with while building for
 KDE, and on the experience of the developer.I too agree with you as
 to how hard would that be thanks, Amali.

Just a quick note from me on this. I really don't have the hardware or
time to setup an additional VM to help with the student project.

But, thanks for the suggestion.

 
 
 
 On Wednesday, 3 September 2014, 1:55, Kay Schenk
 kay.sch...@gmail.com wrote:
 
 
 
 On Mon, Sep 1, 2014 at 11:55 PM, Andrea Pescetti
 pesce...@apache.org wrote:
 
 On 02/09/2014 Kay Schenk wrote:
 
 Would it be beneficial to have the students work on freedesktop 
 integration for our debian builds? I would prepare an issue with 
 pertinent details as far as I am able , but would rely on some of
 our debian-based developers to fill in some pieces.
 
 
 It should work the other way round: someone who does have the
 skills to fully mentor a non-trivial project proposes it. Then
 other community members can surely step in and help, but proposing
 a project that relies on someone else doing (a crucial part of the)
 work is not the optimal situation. That said, it is surely better
 than nothing.
 
 
 Well perhaps I didn't express this well. I could surely write up the
 specs, dependencies,  for this and point the students to the specific
 code areas to make this happen. But since I am not on a debian-based
 platform, or Ubuntu as they are, I would not be able to help much
 with system specific problems.
 
 
 
 
 You/we can also look, in the archives, at the several lists of
 possible projects we discussed or prepared for Summer of Code or
 similar initiatives: most of them remained vague proposals, stopped
 before we could have someone really competent to evaluate them also
 in terms of effort.
 
 Regards, Andrea.
 
 
 I understand. This is not a vague proposal but you make good points
 in any case.
 
 
 

-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou

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



Re: Student Project

2014-09-02 Thread Kay Schenk


On 09/01/2014 10:25 AM, Deborah Digges wrote:
 Hello,
 
 It's great to hear from you!
 * We work primarily on unix machines - ubuntu specifically. IDEs we have
 worked on include Eclipse, NetBeans and Aptana studio.
 * I know git, but am not very experienced with it. I have worked briefly
 with perforce.
 * The course evaluation would be in the beginning of December, so that
 gives us time till the end of November to complete the project.
 
 If there is any more information I could provide you with, I'd be more than
 glad to.
 I'll be going through the link you've mentioned shortly. Once again, thank
 you for your response.
 
 Regards,
 Deborah

The specific project I was thinking about seems to be lacking in the
needed mix of mentors at the moment.

We do have a listing of easy and simple hacks from our development
orientation page:

http://openoffice.apache.org/orientation/intro-development.html

Feel free to take a look at these, and get involved by fixing some of
these issues if you like. We have quite a number of Ubuntu builders who
can answer questions on this list. Good luck with your open source project.


 
 
 
 On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk kay.sch...@gmail.com wrote:
 
 On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges 
 deborah.gertrude.dig...@gmail.com wrote:

 Hello,

 I am a *4th year* Computer Science student. As a part of a course - The
 Architecture of Open source technologies, I am required to contribute to
 an open source project.

 The project is needed to be done by a team of *3 members*.The semester
 ends
 by* November*, so that gives me *three months* to work on the project.
 The
 course requires us to work *8 hours a week*. Also, the course emphasizes
 on
 making code contributions.

 I am familiar with C,C++ and python, and I am eager to pick up additional
 skills that are required.

 Please could you help me in this task, as I am quite new to open source.

 Looking forward to your response,
 Thanks,
 Deborah Digges.


 Hello Deborah --
 Thanks for contacting Apache OpenOffice. We'd love to have you contribute
 to this project.  We will try to identify a specific task for your team.

 First, I think we need more information from you to make this successful:

 * please tell us more about your development environment -- OS, IDE, etc
 * what is your experience with source version management tools? svn, git,
 etc
 * your semester ends by November meaning the end of November?

 There are many references to open source participation available. Here's
 one that gives a perspective from a participant's viewpoint that you may
 find helpful.


 http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/


 --

 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou

 

-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou

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



Re: Student Project

2014-09-01 Thread Kay Schenk
On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges 
deborah.gertrude.dig...@gmail.com wrote:

 Hello,

 I am a *4th year* Computer Science student. As a part of a course - The
 Architecture of Open source technologies, I am required to contribute to
 an open source project.

 The project is needed to be done by a team of *3 members*.The semester ends
 by* November*, so that gives me *three months* to work on the project. The
 course requires us to work *8 hours a week*. Also, the course emphasizes on
 making code contributions.

 I am familiar with C,C++ and python, and I am eager to pick up additional
 skills that are required.

 Please could you help me in this task, as I am quite new to open source.

 Looking forward to your response,
 Thanks,
 Deborah Digges.


Hello Deborah --
Thanks for contacting Apache OpenOffice. We'd love to have you contribute
to this project.  We will try to identify a specific task for your team.

First, I think we need more information from you to make this successful:

* please tell us more about your development environment -- OS, IDE, etc
* what is your experience with source version management tools? svn, git,
etc
* your semester ends by November meaning the end of November?

There are many references to open source participation available. Here's
one that gives a perspective from a participant's viewpoint that you may
find helpful.

http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/


-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou


Re: Student Project

2014-09-01 Thread Deborah Digges
Hello,

It's great to hear from you!
* We work primarily on unix machines - ubuntu specifically. IDEs we have
worked on include Eclipse, NetBeans and Aptana studio.
* I know git, but am not very experienced with it. I have worked briefly
with perforce.
* The course evaluation would be in the beginning of December, so that
gives us time till the end of November to complete the project.

If there is any more information I could provide you with, I'd be more than
glad to.
I'll be going through the link you've mentioned shortly. Once again, thank
you for your response.

Regards,
Deborah



On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk kay.sch...@gmail.com wrote:

 On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges 
 deborah.gertrude.dig...@gmail.com wrote:

  Hello,
 
  I am a *4th year* Computer Science student. As a part of a course - The
  Architecture of Open source technologies, I am required to contribute to
  an open source project.
 
  The project is needed to be done by a team of *3 members*.The semester
 ends
  by* November*, so that gives me *three months* to work on the project.
 The
  course requires us to work *8 hours a week*. Also, the course emphasizes
 on
  making code contributions.
 
  I am familiar with C,C++ and python, and I am eager to pick up additional
  skills that are required.
 
  Please could you help me in this task, as I am quite new to open source.
 
  Looking forward to your response,
  Thanks,
  Deborah Digges.
 

 Hello Deborah --
 Thanks for contacting Apache OpenOffice. We'd love to have you contribute
 to this project.  We will try to identify a specific task for your team.

 First, I think we need more information from you to make this successful:

 * please tell us more about your development environment -- OS, IDE, etc
 * what is your experience with source version management tools? svn, git,
 etc
 * your semester ends by November meaning the end of November?

 There are many references to open source participation available. Here's
 one that gives a perspective from a participant's viewpoint that you may
 find helpful.


 http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/


 --

 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou



proposed student project? freedesktop.org desktop integration for debian

2014-09-01 Thread Kay Schenk
OpenOffice has been approached by students for a one semester project
(approximately 96 hours) involving an open source project, see the
following thread--
http://markmail.org/message/2uxfdm2tjh7ei2zl

They are using Ubuntu.

Recently, we had a post regarding broken desktop integration for debian.
See this thread at:

http://markmail.org/message/t5i57kr4z4bfffyp

After reading this one, I started some research on why/how to integrate
freedesktop.org into debian (a system I personally do not use). Not
using a debian-based Linux distro, it never occurred to me that only one
desktop integration was provided for debian.

Would it be beneficial to have the students work on freedesktop
integration for our debian builds? I would prepare an issue with
pertinent details as far as I am able , but would rely on some of our
debian-based developers to fill in some pieces.

Thoughts?

-- 
-
MzK

Nothing will work unless you do.
-- Maya Angelou

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



Re: proposed student project? freedesktop.org desktop integration for debian

2014-09-01 Thread Alexandro Colorado
I am not sure how hard would that be but you can easily setup an
environment using a virtualbox with whatever os you need (debian,
suse, fedora, or... gulp... windows) and just compile there.

Sure virtual environments are not the best location to do your
compilation, however it will get you the basic toolkit set and version
that you need.

Another more sofisticated option is to use vagrant. Vagrant is aimed
for developers that want to have an encapsulating environment, and
portable (able to move it between different distros). It does uses
virtualization but in a different fashion.

http://www.vagrantup.com/

On 9/1/14, Kay Schenk kay.sch...@gmail.com wrote:
 OpenOffice has been approached by students for a one semester project
 (approximately 96 hours) involving an open source project, see the
 following thread--
 http://markmail.org/message/2uxfdm2tjh7ei2zl

 They are using Ubuntu.

 Recently, we had a post regarding broken desktop integration for debian.
 See this thread at:

 http://markmail.org/message/t5i57kr4z4bfffyp

 After reading this one, I started some research on why/how to integrate
 freedesktop.org into debian (a system I personally do not use). Not
 using a debian-based Linux distro, it never occurred to me that only one
 desktop integration was provided for debian.

 Would it be beneficial to have the students work on freedesktop
 integration for our debian builds? I would prepare an issue with
 pertinent details as far as I am able , but would rely on some of our
 debian-based developers to fill in some pieces.

 Thoughts?

 --
 -
 MzK

 Nothing will work unless you do.
 -- Maya Angelou

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




-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614

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



Student Project

2014-08-29 Thread Deborah Digges
Hello,

I am a *4th year* Computer Science student. As a part of a course - The
Architecture of Open source technologies, I am required to contribute to
an open source project.

The project is needed to be done by a team of *3 members*.The semester ends
by* November*, so that gives me *three months* to work on the project. The
course requires us to work *8 hours a week*. Also, the course emphasizes on
making code contributions.

I am familiar with C,C++ and python, and I am eager to pick up additional
skills that are required.

Please could you help me in this task, as I am quite new to open source.

Looking forward to your response,
Thanks,
Deborah Digges.