|
From: <mat...@us...> - 2008-01-11 13:59:46
|
Revision: 652
http://webical.svn.sourceforge.net/webical/?rev=652&view=rev
Author: mattijshoitink
Date: 2008-01-11 05:59:43 -0800 (Fri, 11 Jan 2008)
Log Message:
-----------
Readme and installation scripts updated
Modified Paths:
--------------
trunk/doc/AUTH_setup.sql
trunk/doc/DB_setup.sql
trunk/doc/README
Modified: trunk/doc/AUTH_setup.sql
===================================================================
--- trunk/doc/AUTH_setup.sql 2008-01-11 13:47:07 UTC (rev 651)
+++ trunk/doc/AUTH_setup.sql 2008-01-11 13:59:43 UTC (rev 652)
@@ -4,8 +4,6 @@
-- --
-- *********************************************** --
-use webical;
-
-- create the table to hold the auth users --
CREATE TABLE `_auth_user` (
`username` varchar(250) NOT NULL,
Modified: trunk/doc/DB_setup.sql
===================================================================
--- trunk/doc/DB_setup.sql 2008-01-11 13:47:07 UTC (rev 651)
+++ trunk/doc/DB_setup.sql 2008-01-11 13:59:43 UTC (rev 652)
@@ -4,8 +4,6 @@
-- --
-- ***************************************************** --
-use webical;
-
-- --------------------------------------------------------
--
@@ -352,3 +350,21 @@
KEY `FK8704333BA446C95D` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+--
+-- Table structure for table `user_settings`
+--
+
+DROP TABLE IF EXISTS `user_settings`;
+CREATE TABLE `user_settings` (
+ `id` bigint(20) NOT NULL,
+ `defaultCalendarView` int(11) default NULL,
+ `firstDayOfWeek` int(11) default NULL,
+ `numberOfAgendaDays` int(11) default NULL,
+ `dateFormat` varchar(255) default NULL,
+ `timeFormat` varchar(255) default NULL,
+ `user` varchar(255) default NULL,
+ PRIMARY KEY (`id`),
+ KEY `FK58861617263CBF35` (`user`),
+ KEY `FK58861617A446C95D` (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+
Modified: trunk/doc/README
===================================================================
--- trunk/doc/README 2008-01-11 13:47:07 UTC (rev 651)
+++ trunk/doc/README 2008-01-11 13:59:43 UTC (rev 652)
@@ -88,11 +88,10 @@
For more information see http://www.webical.org/.
If you find any bugs, or have any feature requests, please use our
- trackers:
- http://sourceforge.net/tracker/?group_id=176849
+ issue tracker: http://code.google.com/p/webical/issues/
For support, please join our mailing list and ask your questions:
- http://sourceforge.net/mail/?group_id=176849
+ http://groups.google.com/group/webical-developers
-Thank you for using Webical!
\ No newline at end of file
+Thank you for using Webical!
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|