|
From: Frank V. C. <fr...@co...> - 2000-07-18 12:01:32
|
I release 0.4.25 and 'cvs tag rel-0-4-25' for both source and documentation. Christophe, I pushed the patch submission (submittor did not leave name) over to you. I am working on the shared library loader at this point. Hans, theres still opens in the Semaphore, Threads, and Signals (in BugTracking), or there is documentation, or?.... what would you guys be interested in? Or what should WE be interested in? -- Frank V. Castellucci |
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-18 14:01:40
|
I saw that you need a logo I can make a few of them and we can create a contest :) on the web site C. |
|
From: Frank V. C. <fr...@co...> - 2000-07-18 14:34:18
|
Christophe Prud'homme wrote: > > I saw that you need a logo > > I can make a few of them and we can create a contest :) on the web > site > > C. > > _______________________________________________ > Corelinux-develop mailing list > Cor...@li... > http://lists.sourceforge.net/mailman/listinfo/corelinux-develop Sounds good to me, didn't know you were so inclined. Should I take the job posting off? -- Frank V. Castellucci |
|
From: Hans - D. <dul...@eg...> - 2000-07-21 04:48:18
|
If you notice the updated .tex documents under htdocs, I use rcs.sty to generate the RCS keywords automatically. I just realized yesterday that this technique works well only for .dvi [hence .ps] and .pdf output. For .html output, this does not work. I am trying to write rcs.perl which will be automatically included by latex2html, but I could not find enough documentation on how to write one. The example in corelinux.perl is not sufficient for correcting the above problem. I need make rcs.perl read the "parameter" of the \RCS commands found in the .tex documents. Do you have some idea on how to do this? -- Hans Dulimarta, Ph.D. dulimart@[egr.msu.edu, computer.org] Visiting Research Associate http://www.egr.msu.edu/%7edulimart Ph: (517)432-7589 Fax2Email: (760)281-7691 Elec. & Comp. Engg., Michigan State University, East Lansing, MI 48824 |
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-21 14:09:07
|
Hans> The example in corelinux.perl is not sufficient for correcting the above problem. I need
Hans> make rcs.perl read the "parameter" of the \RCS commands found in the .tex documents.
the documentation is so poor for latex2html
when it comes to write a style file :(
Hans> Do you have some idea on how to do this?
yes :)
sub do_cmd_param {
local($_) = @_;
local($param1);
local($param2);
# parse the arguments
s/$next_pair_pr_rx//o;
$param1=&translate_commands($2);
s/$next_pair_pr_rx//o;
$param2=&translate_commands($2);
$index = $index + 1;
join('',"RCS: param1= $param1 param2: $param2", $_ );
#TODO: to handle several forms in the same HTML doc, the input name has top be unique
# e.g.: "elasticity_param_$index"
};
BTW I corrected the bug in copyright for HTML !!!!
update you corelinux.perl
|
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-21 14:29:16
|
Note that there are some strange comments in the macro I sent previously. I just took the macro from another package I wrote recently C. |
|
From: Hans - D. <dul...@eg...> - 2000-07-21 15:19:03
|
On Fri, 21 Jul 2000, Christophe Prud'homme wrote:
> Date: Fri, 21 Jul 2000 09:09:03 -0500 (EST)
> From: Christophe Prud'homme <pru...@MI...>
> Reply-To: cor...@li...
> To: cor...@li...
> Subject: Re: [Corelinux-develop] RCS keywords.
>
> Hans> The example in corelinux.perl is not sufficient for correcting the above problem. I need
> Hans> make rcs.perl read the "parameter" of the \RCS commands found in the .tex documents.
> the documentation is so poor for latex2html
> when it comes to write a style file :(
>
> Hans> Do you have some idea on how to do this?
> yes :)
>
> sub do_cmd_param {
> local($_) = @_;
> local($param1);
> local($param2);
>
> # parse the arguments
> s/$next_pair_pr_rx//o;
> $param1=&translate_commands($2);
> s/$next_pair_pr_rx//o;
> $param2=&translate_commands($2);
> $index = $index + 1;
>
> join('',"RCS: param1= $param1 param2: $param2", $_ );
> #TODO: to handle several forms in the same HTML doc, the input name
> has top be unique
> # e.g.: "elasticity_param_$index"
> };
>
Thanks Christophe. I tried this method but it does not work. The \RCS
command has to be written as
\RCS $.......$
not as
\RCS{$.......$}
What I want to get is the '$' delimited string after the control sequence
\RCS. I don't understand how latex2html passed actual parameters to "sub
do_cmd_xxxx { }"
>
> BTW I corrected the bug in copyright for HTML !!!!
> update you corelinux.perl
>
>
> _______________________________________________
> Corelinux-develop mailing list
> Cor...@li...
> http://lists.sourceforge.net/mailman/listinfo/corelinux-develop
>
--
Hans Dulimarta, Ph.D. dulimart@[egr.msu.edu, computer.org]
Visiting Research Associate http://www.egr.msu.edu/%7edulimart
Ph: (517)432-7589 Fax2Email: (760)281-7691
Elec. & Comp. Engg., Michigan State University, East Lansing, MI 48824
|
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-18 14:08:13
|
Hi,
what I am envisioning on my side for a near future
- still work on packaging
create a spec file for redhat
package doc + examples
- port to other C++ compiler, I have pgCC here at work
- bug fixes if needed
- better install procedure (don't install the examples ...)
regards
C.
--
Christophe Prud'homme |
MIT, 77, Mass Ave, Rm 3-243 | To err is human,
Cambridge MA 02139 | to repent, divine,
Tel (Office) : (00 1) (617) 253 0229 | to persist, devilish.
Fax (Office) : (00 1) (617) 258 8559 | -- Benjamin Franklin
http://augustine.mit.edu/~prudhomm |
Following the hacker spirit
|
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-18 15:40:34
|
Hi I just commited the bug fix for the copyright under html format! regards C. |
|
From: Hans - D. <dul...@eg...> - 2000-07-19 02:17:09
|
On Tue, 18 Jul 2000, Frank V. Castellucci wrote: > Date: Tue, 18 Jul 2000 08:03:26 -0400 > From: Frank V. Castellucci <fr...@co...> > Reply-To: cor...@li... > To: CoreLinux Development <cor...@li...> > Subject: [Corelinux-develop] Released and tagged > > I release 0.4.25 and 'cvs tag rel-0-4-25' for both source and > documentation. > > Christophe, I pushed the patch submission (submittor did not leave name) > over to you. I am working on the shared library loader at this point. > > Hans, theres still opens in the Semaphore, Threads, and Signals (in > BugTracking), or there is documentation, or?.... what would you guys be > interested in? Or what should WE be interested in? I'll go by alphabetical order: Semaphore, Signals, and then Threads. Also, I'll concurrently work with the documentations. In the 0.4.25 release, I mainly spent my time on oostnd.tex and cppstnd.tex. The other documents were browsed without detail comprehension. > > -- Hans Dulimarta, Ph.D. dulimart@[egr.msu.edu, computer.org] Visiting Research Associate http://www.egr.msu.edu/%7edulimart Ph: (517)432-7589 Fax2Email: (760)281-7691 Elec. & Comp. Engg., Michigan State University, East Lansing, MI 48824 |
|
From: Frank V. C. <fr...@co...> - 2000-07-19 02:58:35
|
Hans - Dulimarta wrote: > > On Tue, 18 Jul 2000, Frank V. Castellucci wrote: > > > Date: Tue, 18 Jul 2000 08:03:26 -0400 > > From: Frank V. Castellucci <fr...@co...> > > Reply-To: cor...@li... > > To: CoreLinux Development <cor...@li...> > > Subject: [Corelinux-develop] Released and tagged > > > > I release 0.4.25 and 'cvs tag rel-0-4-25' for both source and > > documentation. > > > > Christophe, I pushed the patch submission (submittor did not leave name) > > over to you. I am working on the shared library loader at this point. > > > > Hans, theres still opens in the Semaphore, Threads, and Signals (in > > BugTracking), or there is documentation, or?.... what would you guys be > > interested in? Or what should WE be interested in? > > I'll go by alphabetical order: Semaphore, Signals, and then Threads. Also, For Semaphores we still need a EventSemaphore solution, and semaphores in general need a timeout solution. Signals are non-existent at the moment, and that is the last piece of work on the Thread model, how to manage signals on a per thread interest level. > I'll concurrently work with the documentations. In the 0.4.25 release, I > mainly spent my time on oostnd.tex and cppstnd.tex. The other documents > were browsed without detail comprehension. The one that could stand the most work is the one that requires the most hands on, the Developers Guide. BTW: Was it you that submitted the patch on the project summary page PatchManager? -- Frank V. Castellucci |
|
From: Hans - D. <dul...@eg...> - 2000-07-19 13:25:52
|
On Tue, 18 Jul 2000, Frank V. Castellucci wrote: > Date: Tue, 18 Jul 2000 23:00:29 -0400 > From: Frank V. Castellucci <fr...@co...> > Reply-To: cor...@li... > To: cor...@li... > Subject: Re: [Corelinux-develop] Released and tagged > > Hans - Dulimarta wrote: > > > > On Tue, 18 Jul 2000, Frank V. Castellucci wrote: > > > > > Date: Tue, 18 Jul 2000 08:03:26 -0400 > > > From: Frank V. Castellucci <fr...@co...> > > > Reply-To: cor...@li... > > > To: CoreLinux Development <cor...@li...> > > > Subject: [Corelinux-develop] Released and tagged > > > > > > I release 0.4.25 and 'cvs tag rel-0-4-25' for both source and > > > documentation. > > > > > > Christophe, I pushed the patch submission (submittor did not leave name) > > > over to you. I am working on the shared library loader at this point. > > > > > > Hans, theres still opens in the Semaphore, Threads, and Signals (in > > > BugTracking), or there is documentation, or?.... what would you guys be > > > interested in? Or what should WE be interested in? > > > > I'll go by alphabetical order: Semaphore, Signals, and then Threads. Also, > > For Semaphores we still need a EventSemaphore solution, and semaphores > in general need a timeout solution. Signals are non-existent at the > moment, and that is the last piece of work on the Thread model, how to > manage signals on a per thread interest level. OK, I'll take a look at this. > > > I'll concurrently work with the documentations. In the 0.4.25 release, I > > mainly spent my time on oostnd.tex and cppstnd.tex. The other documents > > were browsed without detail comprehension. > > The one that could stand the most work is the one that requires the most > hands on, the Developers Guide. > I'll take a look of this, too. > BTW: Was it you that submitted the patch on the project summary page > PatchManager? > > No, I did not. -- Hans Dulimarta, Ph.D. dulimart@[egr.msu.edu, computer.org] Visiting Research Associate http://www.egr.msu.edu/%7edulimart Ph: (517)432-7589 Fax2Email: (760)281-7691 Elec. & Comp. Engg., Michigan State University, East Lansing, MI 48824 |
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-20 14:43:37
|
Hi, according to this article written by M de Iguaza (orthograph surely faulty) the main guy behind gnome politics http://lwn.net/ Quote: "Miguel is an open admirer of how Microsoft does software development. Microsoft's applications are built from components, which are highly reusable. That not only helps Microsoft; it enables independent developers to make use of high-level components from Office, Internet Explorer, and other applications. Linux has no equivalent set of components, and suffers from a much lower level of code reuse. " Unfortunately Miguel does not seem to know corelinux :) we are still in the dark side at least it is time to make ourself known regards C. -- Christophe Prud'homme | MIT, 77, Mass Ave, Rm 3-243 | The first thing we do, let's kill Cambridge MA 02139 | all the lawyers. Tel (Office) : (00 1) (617) 253 0229 | -- Wm. Shakespeare, Fax (Office) : (00 1) (617) 258 8559 | "Henry VI", Part IV http://augustine.mit.edu/~prudhomm | Following the hacker spirit |
|
From: Frank V. C. <fr...@co...> - 2000-07-20 14:52:59
|
Great reference, but without the frameworks I fear the core is not enough to compare yet. This, obviously, is the goal of CoreLinux++ and as such Mr. Iguaza would benefit from knowing this, although I am suprised that he doesn't consider RPC and CORBA to be the bedrock of object/component reuse enabled? Oh, well, anyone want to wear a publicist hat? Christophe Prud'homme wrote: > Hi, > > according to this article written by M de Iguaza (orthograph surely faulty) > the main guy behind gnome politics > http://lwn.net/ > Quote: > "Miguel is an open admirer of how Microsoft does software development. Microsoft's applications are built from components, > which are highly reusable. That not only helps Microsoft; it enables independent developers to make use of high-level > components from Office, Internet Explorer, and other applications. Linux has no equivalent set of components, and suffers > from a much lower level of code reuse. > " > > Unfortunately Miguel does not seem to know corelinux :) > we are still in the dark side > at least it is time to make ourself known > > regards > C. > > -- > Christophe Prud'homme | > MIT, 77, Mass Ave, Rm 3-243 | The first thing we do, let's kill > Cambridge MA 02139 | all the lawyers. > Tel (Office) : (00 1) (617) 253 0229 | -- Wm. Shakespeare, > Fax (Office) : (00 1) (617) 258 8559 | "Henry VI", Part IV > http://augustine.mit.edu/~prudhomm | > Following the hacker spirit > > _______________________________________________ > Corelinux-develop mailing list > Cor...@li... > http://lists.sourceforge.net/mailman/listinfo/corelinux-develop |
|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-20 19:23:59
|
Frank> Great reference, but without the frameworks I fear the core is not enough to compare yet.
Frank> This, obviously, is the goal of CoreLinux++ and as such Mr. Iguaza would benefit from
Frank> knowing this, although I am suprised that he doesn't consider RPC and CORBA to be the
Frank> bedrock of object/component reuse enabled?
Actually Gnome is using CORBA(through the bonobo component set) but CORBA is not a set
of components, you have to write it by yourself. It seems that he has a bad time(with
his company helixcode http://www.helixcode.com) developping gnome and the set of components
(they are mainly using C as the main language) and that's why he is angry at unix/linux.
Frank> Oh, well, anyone want to wear a publicist hat?
did you send the 0.4.25 to freshmeat ?
|
|
From: Frank V. C. <fr...@co...> - 2000-07-20 20:21:22
|
Christophe Prud'homme wrote: > Frank> Great reference, but without the frameworks I fear the core is not enough to compare yet. > Frank> This, obviously, is the goal of CoreLinux++ and as such Mr. Iguaza would benefit from > Frank> knowing this, although I am suprised that he doesn't consider RPC and CORBA to be the > Frank> bedrock of object/component reuse enabled? > Actually Gnome is using CORBA(through the bonobo component set) but CORBA is not a set > of components, you have to write it by yourself. It seems that he has a bad time(with > his company helixcode http://www.helixcode.com) developping gnome and the set of components > (they are mainly using C as the main language) and that's why he is angry at unix/linux. Take a look at the SourceForge MMXX project as well. > > > Frank> Oh, well, anyone want to wear a publicist hat? > did you send the 0.4.25 to freshmeat ? Yes, freshmeat is one of the three (3) I always go and do: freshmeat LinuxApp AppWatch |
|
From: Frank V. C. <fr...@co...> - 2000-07-20 21:14:26
|
Christophe Prud'homme wrote: > Frank> Great reference, but without the frameworks I fear the core is not enough to compare yet. > Frank> This, obviously, is the goal of CoreLinux++ and as such Mr. Iguaza would benefit from > Frank> knowing this, although I am suprised that he doesn't consider RPC and CORBA to be the > Frank> bedrock of object/component reuse enabled? > Actually Gnome is using CORBA(through the bonobo component set) but CORBA is not a set > of components, you have to write it by yourself. It seems that he has a bad time(with > his company helixcode http://www.helixcode.com) developping gnome and the set of components > (they are mainly using C as the main language) and that's why he is angry at unix/linux. > I read the article. He has a point, but is shortsighted. If you would like we can discuss distributed framework components that realize both business processing models and business processing rules, vs. the application rules. But there is a tremendous amount of work being done on UNIX/LINUX towards achieving these goals. check out http://www.semanticweb.org , this is the kind of work I am involved with on a day to day basis. frank |