BUILD FAILED
/Users/sgendler/src/euroclick/tacos/build.xml:61: The following error
occurred while executing this line:
/Users/sgendler/src/euroclick/tacos/build.xml:70:
/Users/sgendler/src/euroclick/tacos/lib not found.
On 5/4/06, Sam Gendler <[EMAIL PROTECTED]> wrote:
And are there build instructions anywhere?
On 5/4/06, Sam Gendler <[EMAIL PROTECTED]> wrote:
> The Readme.txt file in the trunk of tacos has a most recent entry of
> nearly a year ago. Is the trunk currently the latest code, or is that
> in some other branch?
>
> -sam
>
>
> On 5/4/06, Sam Gendler <[EMAIL PROTECTED]> wrote:
> > easy enough
> >
> > On 5/4/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote:
> > > If you view the source (subversion browser on sf ), any of the tacos
> > > components do this.. IE
> > >
> > > dojo.widget.createWidget(type, props {}, node);
> > >
> > >
> > > On 5/4/06, Sam Gendler <[EMAIL PROTECTED]> wrote:
> > > >
> > > Right now, the tapestry component just writes the appropriate div with
> > > dojoType attribute plus whatever else is necessary. THey can be
> > > modified easily enough, but I'm not entirely sure what you mean by
> > > 'create the widgets using javascript,' but if you can provide an
> > > example, we can get them modified.
> > >
> > > --sam
> > >
> > >
> > > On 5/4/06, Andreas Andreou <[EMAIL PROTECTED]> wrote:
> > > > There's one last thing...
> > > > How do you create the dojo widgets?
> > > > By using javascript or by using html + dojo's attributes (dojo:type
> > > > e.t.c.) ?
> > > >
> > > > I can't recall the initial reason (perhaps it was html validation)
> > > > but all tacos components are built with javascript and we even have
> > > > djConfig.parseWidgets=false
> > > >
> > > > Sam Gendler wrote:
> > > >
> > > > > Documentation? What's that. Seriously, I am working on doing the
> > > > > final polish and removal of proprietary code today, and I hope to have
> > > > > them available later today or tomorrow, depending on my schedule. I
> > > > > still have to change package names and such (and I am a vi guy, so I
> > > > > get no help from my editor, which kind of sucks). Once I've got a
> > > > > version of tacos that builds with them, I'd love to check it all into
> > > > > a branch until we can test the things mentioned by andy (and clean up
> > > > > the documentation - really there is a bug in our system specifically
> > > > > about that, but the guy it is assigned to is on vacation for the
> > > > > week), but I can just tar up the source repository and mail it to a
> > > > > committer for this first version. These will be the copmonents as
> > > > > they are used by our system, so there won't be some weird branch being
> > > > > developed within our company.
> > > > >
> > > > > --sam
> > > > >
> > > > >
> > > > > On 5/4/06, Jesse Kuhnert < [EMAIL PROTECTED]> wrote:
> > > > >
> > > > >> Indeed. They sound like great additions that would be welcome.
> > > (assuming
> > > > >> that they come with documentation/selenium or other sort of tests/
> > > > >> examples
> > > > >> in demo app). If they look like good components and all I'm sure
> > > > >> something
> > > > >> could be done about commit access.
> > > > >>
> > > > >>
> > > > >> On 5/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > > > >> > I see no reason NOT to integrate everything within tacos.
> > > > >> >
> > > > >> > Regarding AjaxForm, you normally don't have to do anything special.
> > > > >> > However, a tacos component should be tested and be functional when:
> > > > >> > - it is added to a page after the initial render (=through an ajax
> > > > >> response)
> > > > >> > - it exists in the page multiple times (=using @For).
> > > > >> > - it exists in another component that exists in the page multiple
> > > > >> times
> > > > >> >
> > > > >> > But anyway, I believe we can help on those...
> > > > >> > So, what should the next step be?
> > > > >> >
> > > > >> > From Sam Gendler < [EMAIL PROTECTED]>:
> > > > >> >
> > > > >> > > OK, I've been promising them for a while, but I am about to
> > > > >> deliver a
> > > > >> > > bunch of tapestry components that wrap various dojo widgets.
> > > > >> > >
> > > > >> > > I've implemented a slider that is similar to TurboSlider (but not
> > > > >> > > dependant on turbo, just dojo).
> > > > >> > >
> > > > >> > > I've got somethign called ReportGrid which is based on a grid
> > > > >> > > component that was submitted to dojo bug tracking. It has a
> > > header,
> > > > >> > > footer, sortable columns (client side), client side
> > > > >> > > internationalization, client side number and currency formatting,
> > > > >> > > client side paging, and the ability to filter the visible rows in
> > > > >> the
> > > > >> > > client based on a specified filter value and expression (greater
> > > > >> then,
> > > > >> > > equal to, etc). It is based on dojo plus mochikit for the
> > > > >> > > internationalization and number formatting. The ReportGrid is
> > > > >> > > intended as a read only grid with simple drill down (via
> > > > >> hyperlinks).
> > > > >> > > It does not yet support arbitrary html in a column, including
other
> > > > >> > > widgets. I figure the mythical dojo grid can handle that when it
> > > is
> > > > >> > > complete. I've got a wrapper for TurboGrid, too, but sorting is
> > > > >> just
> > > > >> > > too darn slow in TurboGrid when result sets are large. The
> > > > >> ReportGrid
> > > > >> > > component takes a standard contrib:TableModel as the model, and
> > > > >> > > otherwise emulates the contrib:table interface where possible.
> > > > >> > >
> > > > >> > > I've got components wrapping dojo Button2, dojo Tabs, dojo
> > > > >> > > SplitContainer, dojo context menu, and dojo accordion.
> > > > >> > >
> > > > >> > > ReportGrid is very functional, the rest only have the dojo
features
> > > > >> > > that we are using exposed as Tapestry component attributes, so
they
> > > > >> > > will require extra work in order to be as functional as raw
dojo. I
> > > > >> > > haven't yet attempted to integrate any of them in a tacos
AjaxForm,
> > > > >> > > and I have no idea if special consideration is required in order
> > > > >> to do
> > > > >> > > so.
> > > > >> > >
> > > > >> > > The ReportGrid and Slider are implemented as dojo widgets outside
> > > > >> the
> > > > >> > > source tree, so they can be included in your application without
> > > > >> > > modifying your dojo installation itself.
> > > > >> > >
> > > > >> > > Are folks interesting in integration with tacos, or should I
> > > release
> > > > >> > > them as a separate library?
> > > > >> > >
> > > > >> > > I am hopeful I can wrap up our internal development within 2 days
> > > > >> and
> > > > >> > > make it public, but I'm willing to give a sneak preview to a
tacos
> > > > >> > > committer or two, if anyone wants it, although it will be rough
> > > > >> around
> > > > >> > > the edges.
> > > > >> > >
> > > > >> > > --sam
> > > > >> > >
> > > > >> > >
> > > > >> > >
> > > -------------------------------------------------------
> > > > >> > > 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_______________________________________________
> > > > >>
> > > > >> > > Tacos-devel mailing list
> > > > >> > > [email protected]
> > > > >> > >
> > > > >>
> > > https://lists.sourceforge.net/lists/listinfo/tacos-devel
> > > > >> > >
> > > > >> > >
> > > > >> >
> > > > >> >
> > > > >> > --
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> >
> > > -------------------------------------------------------
> > > > >> > 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=lnk&kid=120709&bid=263057&dat=121642
> > > > >> > _______________________________________________
> > > > >> > Tacos-devel mailing list
> > > > >> > [email protected]
> > > > >> >
> > > https://lists.sourceforge.net/lists/listinfo/tacos-devel
> > > > >> >
> > > > >>
> > > > >>
> > > > >>
> > > > >> --
> > > > >> Jesse Kuhnert
> > > > >> Tacos/Tapestry, team member/developer
> > > > >>
> > > > >> Open source based consulting work centered around
> > > > >> dojo/tapestry/tacos/hivemind.
> > > > >
> > > > >
> > > > >
> > > > > -------------------------------------------------------
> > > > > 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_______________________________________________
> > > > >
> > > > > Tacos-devel mailing list
> > > > > [email protected]
> > > > >
> > > https://lists.sourceforge.net/lists/listinfo/tacos-devel
> > > > >
> > > > >
> > > >
> > > >
> > > > -------------------------------------------------------
> > > > 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=lnk&kid=120709&bid=263057&dat=121642
> > > > _______________________________________________
> > > > Tacos-devel mailing list
> > > > [email protected]
> > > > https://lists.sourceforge.net/lists/listinfo/tacos-devel
> > > >
> > >
> > >
> > > -------------------------------------------------------
> > > 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?cmdlnk&kid0709&bid&3057&dat1642
> > >
> > > _______________________________________________
> > > Tacos-devel mailing list
> > > [email protected]
> > > https://lists.sourceforge.net/lists/listinfo/tacos-devel
> > >
> > >
> > >
> > >
> > > --
> > > Jesse Kuhnert
> > > Tacos/Tapestry, team member/developer
> > >
> > > Open source based consulting work centered around
> > > dojo/tapestry/tacos/hivemind.
> >
>
-------------------------------------------------------
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=lnk&kid0709&bid&3057&dat1642
_______________________________________________
Tacos-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tacos-devel