Re: [Care2002-developers] branching issues and possible solution

2006-06-29 Thread health
Hello.

The idea or plugins is great and would make possible to keep more different 
type of modules within one branch. 
Mauri


On 28 Jun 2006 at 23:47, Kaloyan Raev wrote:

 Hello, 
 
 One of the greatest challenges in front of the Care2x is adoption in
 different kinds of hospitals in different kinds of places in the world.
 The healthcare in different countries has different requirements. In
 some countries these requirements change year-by-year (or even more
 frequently). Even there are hospital that has their own requirements for
 the HIS system. 
 
 Care2x tries to be as generic as possible to fit the needs to the
 greatest extent of the hospitals. But it is not possible Care2x to fit
 the needs of all of the hospitals (or even to one of them) just
 out-of-the-box. For every solution Care2x has to be more or less
 customised. 
 
 Let's take as example the solution for East Africa. The healthcare in
 USA and Tanzania has very significant differences. This led the
 developers to the idea of making separate branch (ELCT) for the East
 Africa solution. And they are right! The customisation of the original
 Care2x, however, is so big and specific, that it is hard to decide what
 of the features implemented in ELCT could be contributed back to the
 main branch. Sometimes it would need additional efforts to make new
 feature as general as to fit in the original Care2x branch. 
 
 At the current state of the Care2x architecture branching for specific
 solutions is inevitable. On the other hand, keeping Care2x as generic as
 possible makes the process of merging features back to the main branch
 hardly possible. 
 
 Customisation is necessity. What has to be changed in the Care2x
 architecture is that there should be a framework that defines strict
 rules how Care2x can be customised. This framework should give great
 flexibility for customisation and in the same time keep these
 customisations as closest as possible to the main branch. Actually,
 there should only one branch - the main branch. 
 
 There is a solution for this at the moment, but for desktop applications
 - the Eclipse project [1]. This project defines a plugin framework where
 each plugin is a separate module that contributes features to the
 application as a whole. Plugins has dependencies between them and one
 plugin can customise a feature defined in its dependant plugin using the
 so called extension points. 
 
 I believe something similar can be done for php web applications as
 well. The generic HIS functionality can be implemented in basic plugins
 that define extension points for customising specific features. These
 extension point will be used by plugins for specific solutions. At the
 the solution for specific country or hospital will be distribution of a
 set of plugins. 
 
 Let me visualise the idea in an example. Let's take the patient
 registration form. If we generalise the patient registration record it
 would include the following features: 
   - system id
   - name
   - sex
   - date of birth
   - citizenship registration (citizenship id, country, address,..)
   - contact (phone, mail, fax, ..)
   - insurance info
   - blood group
   - etc.
 
 If we examine only the 'name' feature we will see that it has lots of
 attributes in different countries: title, first name, last name, middle
 name, maiden name, third name, ..., Nth name, tribe, caste, ...,
 whatever attributes I have never heard of. Each country uses different
 subset of these attributes to identify its citizens: 
   - USA: title, first name, last name
   - Bulgaria: first name, middle name, last name
   - Tanzania: first name, fathers name, third name, tribe
   - India: I've heard there they have lots of names.
 
 Now let's have 'care2x_patient' plugin that defines the patient
 registration record model. In this plugin there will be an extension
 point defined for the 'name' feature. Attributes for the 'name'
 extension point will be contributed by other customisation plugins
 like: 
   - care2x_patient_usa - contributes first name, last name, title
   - care2x_patient_bulgaria - first name, middle name, last name
   - care2x_patient_tanzania - first name, fathers name, third name,
 tribe
 
 At the end the solution for Tanzania will be set of plugins that include
 care2x_patient and care2x_patient_tanzania, but not
 care2x_patient_bulgaria and care2x_patient_usa. 
 
 An assembler script will go through the set of plugins and will evaluate
 the dependencies, extension points and extension contributions. It will
 construct the solution-specific database schema that will be used by the
 installer. At runtime the extension points should be evaluated as well.
 For example a patient search form should lookup the attributes for the
 'name' feature to decide what fields to generate in the search form. 
 
 Such kind of plugins framework separates the application design from the
 basic code implementation. All of the Care2x design has to be migrated
 to models that 

Re: [Care2002-developers] [BLK_LIST] Re: branching issues and possible solution

2006-06-29 Thread Amel . Jakupovic

hello to all,
wonderfull idea. We can take Person Registration for example, You can manage that step. We in Croatia can make plugin for Croatia, now the problem her in Croatia is that we are changed almost everything...Database, Layoutand now we are out of main care2x project. And this is not ok. 
You Kaloyan, if You have time, can give us some more information how and where from can we start devolping that plugin.

And finally, reason why we are changed layout is because language. For us only 30% of language table was good. Everthing else we have changed in PHP code. Do you maybe have some solutions for that. Because we don't want to change core care2x classes.

Thank you very much,
Amel JakupovicUsing Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] [BLK_LIST] Re: branching issues and possible solution

2006-06-29 Thread Kaloyan Raev
Hi Amel,

What I described was just high level idea. Now I have to dig in the
technical details how this can be implemented as php web framework.
Hopefully, soon I will have some prototype for demonstration. 

Translation is another story. There are many guidelines how to make good
language table, but I haven't investigated time to research them and to
compare with the care2x i18n. 

But, yes, you raise the problem of the language tables and refactoring
has to be planned for the next major version that will fit everyone
needs. 

Greetings
Kaloyan

On Thu, 2006-06-29 at 11:12 +0200, [EMAIL PROTECTED] wrote:
 
 hello to all, 
 wonderfull idea. We can take Person Registration for example,
 You can manage that step. We in Croatia can make plugin for Croatia,
 now the problem her in Croatia is that we are changed almost
 everything...Database, Layoutand now we are out of main care2x
 project. And this is not ok.  
 You Kaloyan, if You have time, can give us some more
 information how and where from can we start devolping that plugin. 
 
 And finally, reason why we are changed layout is because
 language. For us only 30% of language table was good. Everthing else
 we have changed in PHP code. Do you maybe have some solutions for
 that. Because we don't want to change core care2x  classes. 
 
 Thank you very much, 
 Amel Jakupovic
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Care2002-developers mailing list
 Care2002-developers@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/care2002-developers


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] [BLK_LIST] Re: branching issues and possible solution

2006-06-29 Thread Reinier Battenberg




Hi,

Have you been looking at specific frameworks already? I came across a
few:

- http://www.xaraya.com Very big
CMS framework, very difficult, very powerfull. Includes:
 - user  group management
 - 'Extention points' (called hooks)
 - dynamic fields
 - related objects
 - multilingual
 - completely MVC

- http://www.symfony-project.com/
Also MVC framework, more low-level. Generates a lot of code.
 - Used to built an application from scratch
 - generates code based on your object definitions
 - lets you code only the business rules, update/insert/delete is
done for you
 - very ajax!

My knowledge here is limited. Are there any more projects that we could
leverage from (learn or use, both is possible). Somehow it worries me
that we are discussing things that need a total rewrite. Is there any
way that we can plan a step-by-step appoach? Like, first we do php5,
then adodb, then change the security-model to let modules work together
(referring to kaloyans prevous email), then introduction of extention
points).
and this all without braking too many current installations.

rgds,

Reinier




Kaloyan Raev wrote:

  Hi Amel,

What I described was just high level idea. Now I have to dig in the
technical details how this can be implemented as php web framework.
Hopefully, soon I will have some prototype for demonstration. 

Translation is another story. There are many guidelines how to make good
language table, but I haven't investigated time to research them and to
compare with the care2x i18n. 

But, yes, you raise the problem of the language tables and refactoring
has to be planned for the next major version that will fit everyone
needs. 

Greetings
Kaloyan

On Thu, 2006-06-29 at 11:12 +0200, [EMAIL PROTECTED] wrote:
  
  
hello to all, 
wonderfull idea. We can take Person Registration for example,
You can manage that step. We in Croatia can make plugin for Croatia,
now the problem her in Croatia is that we are changed almost
everything...Database, Layoutand now we are out of main care2x
project. And this is not ok.  
You Kaloyan, if You have time, can give us some more
information how and where from can we start devolping that plugin. 

And finally, reason why we are changed layout is because
language. For us only 30% of language table was good. Everthing else
we have changed in PHP code. Do you maybe have some solutions for
that. Because we don't want to change core care2x  classes. 

Thank you very much, 
Amel Jakupovic
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers

  
  

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers
  




Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] [BLK_LIST] Re: branching issues and possible solution

2006-06-29 Thread Kaloyan Raev
Hi Reinier, 

Thanks for the framework hints. 
I will take a look about these two. 

I am evaluating different frameworks following these criteria: 
  - gpl-compatible license, because Care2x is under gpl
  - good backbone in the project - there should be more than one or two
developers and also well-known company. This ensures the quality and
stability. 
  - future of the project - I don't want to use a framework that will
die in year or two (or has already died). 

At the moment the best I could find is Zend Framework. It lacks lots of
features yet, but surely it evolves very fast. 

Yes, you are right that we have to introduce changes one by one. This is
why I want first to build an independent prototype, see how it looks
like and then find way how to integrate it in Care2x. 

PHP5 compatibility is definitely the first step. This will open many
doors. Then for example we can abandon adodb and build the db access on
top of framework classes like Zend_Db, then refactor user input for
security (Zend_InputFilter), then session, authorisation, MVC
architecture that will open widely the door for Ajax. And at some point
in time - extension points. 

Greetings
Kaloyan


On Thu, 2006-06-29 at 13:00 +0300, Reinier Battenberg wrote:
 Hi,
 
 Have you been looking at specific frameworks already? I came across a
 few:
 
 - http://www.xaraya.com Very big CMS framework, very difficult, very
 powerfull. Includes:
 - user  group management
 - 'Extention points' (called hooks)
 - dynamic fields
 - related objects
 - multilingual
 - completely MVC
 
 - http://www.symfony-project.com/ Also MVC framework, more low-level.
 Generates a lot of code.
 - Used to built an application from scratch
 - generates code based on your object definitions
 - lets you code only the business rules, update/insert/delete is
 done for you
 - very ajax!
 
 My knowledge here is limited. Are there any more projects that we
 could leverage from (learn or use, both is possible). Somehow it
 worries me that we are discussing things that need a total rewrite. Is
 there any way that we can plan a step-by-step appoach? Like, first we
 do php5, then adodb, then change the security-model to let modules
 work together (referring to kaloyans prevous email), then introduction
 of extention points).
 and this all without braking too many current installations.
 
 rgds,
 
 Reinier
 
 
 
 
 Kaloyan Raev wrote: 
  Hi Amel,
  
  What I described was just high level idea. Now I have to dig in the
  technical details how this can be implemented as php web framework.
  Hopefully, soon I will have some prototype for demonstration. 
  
  Translation is another story. There are many guidelines how to make good
  language table, but I haven't investigated time to research them and to
  compare with the care2x i18n. 
  
  But, yes, you raise the problem of the language tables and refactoring
  has to be planned for the next major version that will fit everyone
  needs. 
  
  Greetings
  Kaloyan
  
  On Thu, 2006-06-29 at 11:12 +0200, [EMAIL PROTECTED] wrote:

   hello to all, 
   wonderfull idea. We can take Person Registration for example,
   You can manage that step. We in Croatia can make plugin for Croatia,
   now the problem her in Croatia is that we are changed almost
   everything...Database, Layoutand now we are out of main care2x
   project. And this is not ok.  
   You Kaloyan, if You have time, can give us some more
   information how and where from can we start devolping that plugin. 
   
   And finally, reason why we are changed layout is because
   language. For us only 30% of language table was good. Everthing else
   we have changed in PHP code. Do you maybe have some solutions for
   that. Because we don't want to change core care2x  classes. 
   
   Thank you very much, 
   Amel Jakupovic
   Using Tomcat but need to do more? Need to support web services, security?
   Get stuff done quickly with pre-integrated technology to make your job 
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
   http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Care2002-developers mailing list
   Care2002-developers@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/care2002-developers
   
  
  
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job 
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Care2002-developers mailing list
  Care2002-developers@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/care2002-developers

 
 Using Tomcat but need to do more? Need to support web services, 

[Care2002-developers] Fwd: [BLK_LIST] Re: branching issues and possible solution

2006-06-29 Thread pravin parmar
-- Forwarded message --
From: Reinier Battenberg [EMAIL PROTECTED]
Date: Jun 29, 2006 3:30 PM
Subject: Re: [Care2002-developers] [BLK_LIST] Re: branching
issues  and possible solution
To: care2002-developers@lists.sourceforge.net



 Hi,

 Have you been looking at specific frameworks already? I came across a few:

 - http://www.xaraya.com Very big CMS framework, very difficult, very
powerfull. Includes:
 - user  group management
 - 'Extention points' (called hooks)
 - dynamic fields
 - related objects
 - multilingual
 - completely MVC

 - http://www.symfony-project.com/ Also MVC framework, more low-level.
Generates a lot of code.
 - Used to built an application from scratch
 - generates code based on your object definitions
 - lets you code only the business rules, update/insert/delete is
done for you
 - very ajax!

 My knowledge here is limited. Are there any more projects that we
could leverage from (learn or use, both is possible). Somehow it
worries me that we are discussing things that need a total rewrite. Is
there any way that we can plan a step-by-step appoach? Like, first we
do php5, then adodb, then change the security-model to let modules
work together (referring to kaloyans prevous email), then introduction
of extention points).
 and this all without braking too many current installations.

 rgds,

 Reinier




 Kaloyan Raev wrote:
 Hi Amel,

What I described was just high level idea. Now I have to dig in the
technical details how this can be implemented as php web framework.
Hopefully, soon I will have some prototype for demonstration.

Translation is another story. There are many guidelines how to make good
language table, but I haven't investigated time to research them and to
compare with the care2x i18n.

But, yes, you raise the problem of the language tables and refactoring
has to be planned for the next major version that will fit everyone
needs.

Greetings
Kaloyan

On Thu, 2006-06-29 at 11:12 +0200, [EMAIL PROTECTED] wrote:


 hello to all,
 wonderfull idea. We can take Person Registration for example,
You can manage that step. We in Croatia can make plugin for Croatia,
now the problem her in Croatia is that we are changed almost
everything...Database, Layoutand now we are out of main care2x
project. And this is not ok.
 You Kaloyan, if You have time, can give us some more
information how and where from can we start devolping that plugin.

 And finally, reason why we are changed layout is because
language. For us only 30% of language table was good. Everthing else
we have changed in PHP code. Do you maybe have some solutions for
that. Because we don't want to change core care2x classes.

Thank you very much,
 Amel Jakupovic
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642


___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] [BLK_LIST] Re: branc hing issues and possible solution

2006-06-29 Thread Reinier
HI Kaloyan,

just by accident I came across another one just now 

http://www.pradosoft.com/
they won a Zend coding contest once, and just revamped their website. all gpl 
as well. 

rgds,
reinier

On Thursday 29 June 2006 13:31, Kaloyan Raev wrote:
 Hi Reinier,

 Thanks for the framework hints.
 I will take a look about these two.

 I am evaluating different frameworks following these criteria:
   - gpl-compatible license, because Care2x is under gpl
   - good backbone in the project - there should be more than one or two
 developers and also well-known company. This ensures the quality and
 stability.
   - future of the project - I don't want to use a framework that will
 die in year or two (or has already died).

 At the moment the best I could find is Zend Framework. It lacks lots of
 features yet, but surely it evolves very fast.

 Yes, you are right that we have to introduce changes one by one. This is
 why I want first to build an independent prototype, see how it looks
 like and then find way how to integrate it in Care2x.

 PHP5 compatibility is definitely the first step. This will open many
 doors. Then for example we can abandon adodb and build the db access on
 top of framework classes like Zend_Db, then refactor user input for
 security (Zend_InputFilter), then session, authorisation, MVC
 architecture that will open widely the door for Ajax. And at some point
 in time - extension points.

 Greetings
 Kaloyan

 On Thu, 2006-06-29 at 13:00 +0300, Reinier Battenberg wrote:
  Hi,
 
  Have you been looking at specific frameworks already? I came across a
  few:
 
  - http://www.xaraya.com Very big CMS framework, very difficult, very
  powerfull. Includes:
  - user  group management
  - 'Extention points' (called hooks)
  - dynamic fields
  - related objects
  - multilingual
  - completely MVC
 
  - http://www.symfony-project.com/ Also MVC framework, more low-level.
  Generates a lot of code.
  - Used to built an application from scratch
  - generates code based on your object definitions
  - lets you code only the business rules, update/insert/delete is
  done for you
  - very ajax!
 
  My knowledge here is limited. Are there any more projects that we
  could leverage from (learn or use, both is possible). Somehow it
  worries me that we are discussing things that need a total rewrite. Is
  there any way that we can plan a step-by-step appoach? Like, first we
  do php5, then adodb, then change the security-model to let modules
  work together (referring to kaloyans prevous email), then introduction
  of extention points).
  and this all without braking too many current installations.
 
  rgds,
 
  Reinier
 
  Kaloyan Raev wrote:
   Hi Amel,
  
   What I described was just high level idea. Now I have to dig in the
   technical details how this can be implemented as php web framework.
   Hopefully, soon I will have some prototype for demonstration.
  
   Translation is another story. There are many guidelines how to make
   good language table, but I haven't investigated time to research them
   and to compare with the care2x i18n.
  
   But, yes, you raise the problem of the language tables and refactoring
   has to be planned for the next major version that will fit everyone
   needs.
  
   Greetings
   Kaloyan
  
   On Thu, 2006-06-29 at 11:12 +0200, [EMAIL PROTECTED] wrote:
hello to all,
wonderfull idea. We can take Person Registration for example,
You can manage that step. We in Croatia can make plugin for Croatia,
now the problem her in Croatia is that we are changed almost
everything...Database, Layoutand now we are out of main care2x
project. And this is not ok.
You Kaloyan, if You have time, can give us some more
information how and where from can we start devolping that plugin.
   
And finally, reason why we are changed layout is because
language. For us only 30% of language table was good. Everthing else
we have changed in PHP code. Do you maybe have some solutions for
that. Because we don't want to change core care2x  classes.
   
Thank you very much,
Amel Jakupovic
Using Tomcat but need to do more? Need to support web services,
security? Get stuff done quickly with pre-integrated technology to
make your job easier Download IBM WebSphere Application Server
v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121
   642 ___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers
  
   Using Tomcat but need to do more? Need to support web services,
   security? Get stuff done quickly with pre-integrated technology to make
   your job easier Download IBM WebSphere Application Server v.1.0.1 based
   on Apache Geronimo
   

Re: [Care2002-developers] Update or remove phpmyadmin and nocc from package

2006-06-29 Thread Anthony Papillion
I agree with the three of you: maintaining PHPMyAdmin
as part of the C2X package is much too cumbersome and
prone to problems. Those who need it can download it
and install it themselves. Fairly easy and
straightforward to do and less headaches for the C2X
developers.

Anthony

--- tore [EMAIL PROTECTED] wrote:

 Hello.
 
 Quite agree with Reinier, these packages is better
 being updated and 
 maintain outside c2x. This would also keep c2x group
 from being 
 responsible for old and insecure versions of these
 aps
 
 Tore
 
 
 Reinier wrote:
  Hi,
 
  Kaloyan brought up the issue of phpmyadmin and
 nocc being included in care2x 
  with very outdated versions.
 
  Is it worth maintaining these freely downloadable
 packages?
 
  rgds,
 
  reinier
 
  Using Tomcat but need to do more? Need to support
 web services, security?
  Get stuff done quickly with pre-integrated
 technology to make your job easier
  Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo
 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Care2002-developers mailing list
  Care2002-developers@lists.sourceforge.net
 

https://lists.sourceforge.net/lists/listinfo/care2002-developers

 
 
 Using Tomcat but need to do more? Need to support
 web services, security?
 Get stuff done quickly with pre-integrated
 technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Care2002-developers mailing list
 Care2002-developers@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/care2002-developers
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] Update or remove phpmyadmin and nocc frompackage

2006-06-29 Thread Daniel Hinostroza
Perhaps short instructions on where to install phpMyAdmin and how to
configure would suffice.  Same goes with NOCC (is NOCC actually being
updated at all?).
All the very best,
Daniel

-Mensaje original-
De: Anthony Papillion [mailto:[EMAIL PROTECTED] 
Enviado el: Jueves, 29 de Junio de 2006 16:25
Para: care2002-developers@lists.sourceforge.net
Asunto: Re: [Care2002-developers] Update or remove phpmyadmin and nocc
frompackage

I agree with the three of you: maintaining PHPMyAdmin
as part of the C2X package is much too cumbersome and
prone to problems. Those who need it can download it
and install it themselves. Fairly easy and
straightforward to do and less headaches for the C2X
developers.

Anthony

--- tore [EMAIL PROTECTED] wrote:

 Hello.
 
 Quite agree with Reinier, these packages is better
 being updated and 
 maintain outside c2x. This would also keep c2x group
 from being 
 responsible for old and insecure versions of these
 aps
 
 Tore
 
 
 Reinier wrote:
  Hi,
 
  Kaloyan brought up the issue of phpmyadmin and
 nocc being included in care2x 
  with very outdated versions.
 
  Is it worth maintaining these freely downloadable
 packages?
 
  rgds,
 
  reinier
 
  Using Tomcat but need to do more? Need to support
 web services, security?
  Get stuff done quickly with pre-integrated
 technology to make your job easier
  Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo
 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Care2002-developers mailing list
  Care2002-developers@lists.sourceforge.net
 

https://lists.sourceforge.net/lists/listinfo/care2002-developers

 
 
 Using Tomcat but need to do more? Need to support
 web services, security?
 Get stuff done quickly with pre-integrated
 technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Care2002-developers mailing list
 Care2002-developers@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/care2002-developers
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers




-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.5/376 - Release Date: 26/06/2006



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] Update or remove phpmyadmin and nocc frompackage

2006-06-29 Thread Anthony Papillion
What about one step further and create something like
a Fantastico installation procedure for phpMyAdmin? If
the user wants it, they could click on a link within
C2X and the application would automatically be
downloaded and setup for their use (after collecting a
little data from them, perhaps).

Anthony

--- Daniel Hinostroza
[EMAIL PROTECTED] wrote:

 Perhaps short instructions on where to install
 phpMyAdmin and how to
 configure would suffice.  Same goes with NOCC (is
 NOCC actually being
 updated at all?).
 All the very best,
 Daniel
 
 -Mensaje original-
 De: Anthony Papillion [mailto:[EMAIL PROTECTED]
 
 Enviado el: Jueves, 29 de Junio de 2006 16:25
 Para: care2002-developers@lists.sourceforge.net
 Asunto: Re: [Care2002-developers] Update or remove
 phpmyadmin and nocc
 frompackage
 
 I agree with the three of you: maintaining
 PHPMyAdmin
 as part of the C2X package is much too cumbersome
 and
 prone to problems. Those who need it can download it
 and install it themselves. Fairly easy and
 straightforward to do and less headaches for the C2X
 developers.
 
 Anthony
 
 --- tore [EMAIL PROTECTED] wrote:
 
  Hello.
  
  Quite agree with Reinier, these packages is better
  being updated and 
  maintain outside c2x. This would also keep c2x
 group
  from being 
  responsible for old and insecure versions of these
  aps
  
  Tore
  
  
  Reinier wrote:
   Hi,
  
   Kaloyan brought up the issue of phpmyadmin and
  nocc being included in care2x 
   with very outdated versions.
  
   Is it worth maintaining these freely
 downloadable
  packages?
  
   rgds,
  
   reinier
  
   Using Tomcat but need to do more? Need to
 support
  web services, security?
   Get stuff done quickly with pre-integrated
  technology to make your job easier
   Download IBM WebSphere Application Server
 v.1.0.1
  based on Apache Geronimo
  
 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Care2002-developers mailing list
   Care2002-developers@lists.sourceforge.net
  
 

https://lists.sourceforge.net/lists/listinfo/care2002-developers
 
  
  
  Using Tomcat but need to do more? Need to support
  web services, security?
  Get stuff done quickly with pre-integrated
  technology to make your job easier
  Download IBM WebSphere Application Server v.1.0.1
  based on Apache Geronimo
 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Care2002-developers mailing list
  Care2002-developers@lists.sourceforge.net
 

https://lists.sourceforge.net/lists/listinfo/care2002-developers
  
 
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 
 
 Using Tomcat but need to do more? Need to support
 web services, security?
 Get stuff done quickly with pre-integrated
 technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Care2002-developers mailing list
 Care2002-developers@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/care2002-developers
 
 
 
 
 -- 
 No virus found in this incoming message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.9.5/376 -
 Release Date: 26/06/2006
 
 
 
 Using Tomcat but need to do more? Need to support
 web services, security?
 Get stuff done quickly with pre-integrated
 technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Care2002-developers mailing list
 Care2002-developers@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/care2002-developers
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] PHP 4 and 5

2006-06-29 Thread health
Hi,

This mail was rejected by mail server and try again.

I installed the lates XAMPP in my WIndows desktop and added our ELCT 
branch databse and care2x modules and so far all areas we are using is 
functioning like in the older Minixampp version. XAMPP comes with  Apache 
2.2.2,   + MySQL 5.0.21,   + PHP 5.1.4 
But might be there will be functionalities that need changes.

Mauri




On 29 Jun 2006 at 15:45, tore wrote:

 Hi...
 
 Just woundering if c2x will be work with php 5 or if we're goning to 
 stay with php 4.
 
 Tore
 
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Care2002-developers mailing list
 Care2002-developers@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/care2002-developers
 
 
 
 -- 
 No virus found in this incoming message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.9.5/377 - Release Date: 27.6.2006
 




-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.6/378 - Release Date: 28.6.2006


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/care2002-developers


Re: [Care2002-developers] Update or remove phpmyadmin and nocc frompackage

2006-06-29 Thread tore




To keep the load of c2x developers, I say skip it all together, and at
moust have al link in documentation. 
The site og phpMyAdmin has good documentation and explenation on how to
install/use and that will be keept up to date.

Tore


Anthony Papillion wrote:

  What about one step further and create something like
a Fantastico installation procedure for phpMyAdmin? If
the user wants it, they could click on a link within
C2X and the application would automatically be
downloaded and setup for their use (after collecting a
little data from them, perhaps).

Anthony

--- Daniel Hinostroza
[EMAIL PROTECTED] wrote:

  
  
Perhaps short instructions on where to install
phpMyAdmin and how to
configure would suffice.  Same goes with NOCC (is
NOCC actually being
updated at all?).
All the very best,
Daniel

-Mensaje original-
De: Anthony Papillion [mailto:[EMAIL PROTECTED]]

Enviado el: Jueves, 29 de Junio de 2006 16:25
Para: care2002-developers@lists.sourceforge.net
Asunto: Re: [Care2002-developers] Update or remove
phpmyadmin and nocc
frompackage

I agree with the three of you: maintaining
PHPMyAdmin
as part of the C2X package is much too cumbersome
and
prone to problems. Those who need it can download it
and install it themselves. Fairly easy and
straightforward to do and less headaches for the C2X
developers.

Anthony

--- tore [EMAIL PROTECTED] wrote:



  Hello.

Quite agree with Reinier, these packages is better
being updated and 
maintain outside c2x. This would also keep c2x
  

group


  from being 
responsible for old and insecure versions of these
aps

Tore


Reinier wrote:
  
  
Hi,

Kaloyan brought up the issue of phpmyadmin and

  
  nocc being included in care2x 
  
  
with very outdated versions.

Is it worth maintaining these freely

  

downloadable


  packages?
  
  
rgds,

reinier

Using Tomcat but need to do more? Need to

  

support


  web services, security?
  
  
Get stuff done quickly with pre-integrated

  
  technology to make your job easier
  
  
Download IBM WebSphere Application Server

  

v.1.0.1


  based on Apache Geronimo
  

  
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
  

  
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net


  

  
  https://lists.sourceforge.net/lists/listinfo/care2002-developers
  
  

  
  

  
  
Using Tomcat but need to do more? Need to support
web services, security?
Get stuff done quickly with pre-integrated
technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1
based on Apache Geronimo

  

  
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
  

  ___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net

  

  
  https://lists.sourceforge.net/lists/listinfo/care2002-developers
  
  

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam
protection around 
http://mail.yahoo.com 

Using Tomcat but need to do more? Need to support
web services, security?
Get stuff done quickly with pre-integrated
technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1
based on Apache Geronimo


  
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
  
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net


  
  https://lists.sourceforge.net/lists/listinfo/care2002-developers
  
  



-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.5/376 -
Release Date: 26/06/2006



Using Tomcat but need to do more? Need to support
web services, security?
Get stuff done quickly with pre-integrated
technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1
based on Apache Geronimo


  
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
  
___
Care2002-developers mailing list
Care2002-developers@lists.sourceforge.net


  
  https://lists.sourceforge.net/lists/listinfo/care2002-developers
  
  

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1