|
From: Ivo v. D. <ivo...@gm...> - 2007-09-14 09:19:28
|
On 9/14/07, Zoran Kovacevic <zo...@fu...> wrote: > > I still have some remarks though :) > > 1. Bootstrap stuff: after a restart the database is reset to its > original state (all added calendars and settings are gone). This should > be fixed before 0.2 release. > - how about adding a bootstrap SQL that the installer (person) needs to > run? The bootstrap is only meant for development purposes. This should not be included in the release. A maven profile should be created specifically for the releases, here these kinds of issues can be addressed (by not including the bootstrap spring configuration) 2. The /app/configuration URL is protected by admin:admin u:p. > - how about telling the installer to change those default values? This is a side effect of the bootstrap bean. If the bootstrap bean is not included the firstrunwizard is shown and the administrator must fill in those details himself. 3. Split the README authentication section in: > - MySQL container managed > - LDAP container managed (only refer to the Webical wiki, since this > probably won't be the most used config. please ask Thijs to place his > notes there) > > 4. Split up the README database section in: > - webical db config, with a webical-bootstrap.sql > - if applicable: webical auth config, with a webical-auth.sql (by > default use the same database as webical db. > > 5. Are the README, webical.xml, and *.sql in subversion? if not, please > put them there. > > 6. The default u/p for accessing (webical:webical) the database are not > mentioned in te README. Please mention what u/p you assume, and what > rights to the database it should have. > > 7. You forgot to mention to put the webical.war in tomcat/webapps ;) > > Do you think we should ship with default u/p/dbname values or should > everything be explicitly filled out? > > I have attached the files from the 0.2 RC (excluding webical.war since > it is too big) for reference for others. > > Perhaps you can dump the next RC on some (tmp) webspace for download for > others to preview/test? > > Best, Zoran > > Zoran Kovacevic wrote: > > I have just tested your 0.2 preview and it is great. I am amazed with > > the new template, had not seen it before! > > > > Enough styling to be done, but very nice for a 0.2 release. > > > > Go go go! > > > > Mattijs Hoitink wrote: > >> Hi all, > >> > >> Well, after a lot of testing today, i finished packaging the release > 0.2 > >> :) The package contains the new Webical style and i wrote a readme with > >> install instructions. > >> After some dog food eating > >> (http://en.wikipedia.org/wiki/Eating_one%27s_own_dog_food, a lesson > from > >> Zoran :) ) and of course some serious final testing, i will hopefully > be > >> releasing it tomorrow. > >> > >> The people who follow the wiki may have noticed i added a fifth > >> increment to the project > >> (http://www.webical.org/twiki/bin/view/Main/Developers#Increment_V). I > >> hope to start the first Ajax POC tomorrow, if school doesn't pull me > >> away from coding with their paperwork :( > >> > >> cheers, > >> > >> Mattijs > >> > >> > >> > >> Zoran Kovacevic wrote: > >>>> file for the basepage where the link is hidden. Stating that the > >>>> ajax-part suck goes a bit far by the way :) > >>>> > >>> hehehe > >>> > >>> > >>>> 4. Do a webical-0.3 AJAX version somewhere in the next 2-3 months > >>>> > >>>> > >>>> Would this be the complete ajax version or do we want an intermediate > >>>> release as well? > >>>> > >>> depends on how fast Mattijs goes ;) > >>> > >>> > >> -- > >> Mattijs Hoitink > >> Func. Internet Integration > >> W http://www.func.nl > >> T +31 20 4230000 > >> F +31 20 4223500 > >> > >> > >> > ------------------------------------------------------------------------ > >> > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2005. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> > >> > >> > ------------------------------------------------------------------------ > >> > >> _______________________________________________ > >> Webical-developers mailing list > >> Web...@li... > >> https://lists.sourceforge.net/lists/listinfo/webical-developers > > > > > > > -- > Zoran Kovacevic > Func. Internet Integration > W http://www.func.nl > M +31 6 48104284 > T +31 20 4230000 > F +31 20 4223500 > GPG http://www.func.nl/keys/z.k...@fu... > > Webical 0.2 Release README > > 1. Version information > This is the readme for Webical release 0.2. This is a special release, > sadly without Ajax support. > Ajax support will be released in version 0.3. > > This version has a few functionality improvements and a furthermore a new > style. See http://www.webical.org for more information. > > 2. Requirements > - Java 1.5 (or higher) > - Tomcat 5.5 > - MySql 5 > - MySql-connector-j (http://dev.mysql.com/downloads/connector/j/) > > 3. Installation > This readme assumes that MySql is running at localhost:3306, tomcat is > running at http://localhost:8080 and you install everything by default. > > 3.1 Setting up the database: > You need 2 databases to run Webical: > One database for Webical to cache the calendar data and one database for > the Tomcat authentication realm (this can be changed to LDAP, see > http://tomcat.apache.org/tomcat-5.5-doc/realm-howto.html) > > - Log into the database and run DB_setup.sql > This script will create the databases `auth` and `webical` for you, and > registers the first user. > If you want to change the user credentials, alter this script. See > DB_setup.sql for more infomation > > - Create a database user that has at least SELECT, UPDATE, DELETE, ALTER, > INDEX, CREATE and DROP access to the databases. > > 3.2 Setting up tomcat: > - Copy webical.xml to 'tomcat/conf/Catalina/localhost/webical.xml' > !! If you changed the DB_setup.sql script, please edit webical.xml as > well !! > - Extract and copy the MySql-connector-j to 'tomcat/common/lib/' > > 3.3 Configure Webical > (Re)Start tomcat and visit http://localhost:8080/webical/. You can > configure webical by visiting /app/configuration. > A default configuration is set by the installer. > > > Your done! > Visit http://localhost:8080/webical/calendar and login with > webical/webical. > > For more information see > http://www.webical.org/twiki/bin/view/Main/HowToInstallWebical > > > > -- *********************************************** > -- > -- Setup for the Webical databases > -- > -- *********************************************** > > -- > -- > > > -- > -- create the table to hold the auth users > -- > > CREATE TABLE `_auth_user` ( > `username` varchar(250) NOT NULL, > `userpass` varchar(250) NOT NULL, > PRIMARY KEY (`username`) > ) ENGINE=MyISAM DEFAULT CHARSET=latin1; > > -- create the table to hold the auth user roles > CREATE TABLE `_auth_userrole` ( > `username` varchar(250) NOT NULL, > `role` varchar(250) NOT NULL, > PRIMARY KEY (`username`,`role`) > ) ENGINE=MyISAM DEFAULT CHARSET=latin1; > > -- **************************************** > -- Create a new user. > -- Change these values if you want to use a different username and > password > -- **************************************** > INSERT INTO _auth_user (username, userpass) VALUES ("webical", "webical"); > > -- **************************************** > -- Create a new usergroup > -- > -- note: if you change the userrole in something else than webicaluser, > -- make sure you change the <role-name> in > tomcat/webapps/webical/WEB-INF/web.xml > -- > -- **************************************** > INSERT INTO _auth_userrole (username, role) VALUES ("webical", > "webicaluser"); > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Webical-developers mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webical-developers > > > -- Ivo van Dongen Func. Internet Integration W http://www.func.nl T +31 20 4230000 F +31 20 4223500 |