Thread: [Mysql-cocoa-commits] CVS: Documentation/website index.html,1.13,1.14 styles.css,1.1.1.1,1.2
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2003-08-19 10:04:43
|
Update of /cvsroot/mysql-cocoa/Documentation/website In directory sc8-pr-cvs1:/tmp/cvs-serv31190/website Modified Files: index.html styles.css Log Message: Started a big update of the website. Added the latest 2 'new' updates (one for version 2.0, 25 Dec 2002, one for version 2.2.0, yesterday). Still a lot to do (moving most of the updates to an archive file a-la MacGPG, rewriting the about, file, documentation sections). 2003-08-19; Serge Cohen. Index: index.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/index.html,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** index.html 15 May 2002 12:52:37 -0000 1.13 --- index.html 19 Aug 2003 10:04:41 -0000 1.14 *************** *** 5,11 **** <TITLE>MySQL Cocoa Project</TITLE> <META name="author" content="Serge Cohen"> ! <META name="copyright" content="2002 MySQL Cocoa project"> ! <META name="keywords" content="free software, gnu, GNU, database, mysql, MySQL, Objective-C, objective-c, mac, macintosh, mac os x, Mac OS X, API, DB API, Cocoa, cocoa"> ! <META name="description" content="A project to bring a Objective-C API for MySQL to MacOS X Cocoa environment"> </HEAD> --- 5,11 ---- <TITLE>MySQL Cocoa Project</TITLE> <META name="author" content="Serge Cohen"> ! <META name="copyright" content="2002, Serge Cohen"> ! <META name="keywords" content="free software, gnu, GNU, database, mysql, MySQL, Objective-C, objective-c, mac, macintosh, mac os x, Mac OS X, API, DB API, Cocoa, cocoa, MacOS X, MacOSX"> ! <META name="description" content="A project to implement an Objective-C API for MySQL to MacOS X Cocoa environment"> </HEAD> *************** *** 26,29 **** --- 26,43 ---- <a name="updates"><h2>Updates</h2></a> + <p class="withlist"><em>18 August 2003:</em> Released the version 2.2.0 of the framework. The API is kept unchanged, the main difference is in the project organisation (in Project Builder). I also have tried to make the aim of each target more clear, and cleaned up the build-styles, in that respect I have defined 3 different names for each of the flavours (corresponding to 3 different targets) of the framework (which BTW have also changed):</p> + <ol class="intext"> + <li class="intext"><em>SMySQL :</em> A <em>system-wide</em> framework, using the <em>dynamic</em> version of libmysqlclient.</li> + <li class="intext"><em>SMySQL_static :</em> A <em>system-wide</em> framework, using the <em>static</em> version of libmysqlclient.</li> + <li class="intext"><em>SMySQL_bundled :</em> A <em>bundled</em> framework (for bundling within Cocoa application), using the <em>static</em> version of libmysqlclient.</li> + </ol> + <p class="afterwithlist">Also modified the way the libmysqlclient static library is used, now a binary version of the library is distributed with the sources of the framework (the sources of the libmysqlclient used to be included in the project and compiled when building the framework). This way makes it easier if someone prefers to use it's own version of the libmysqlcleint library.</p> + <p class="withlist"><em>24 December 2002:</em> Posted the file releases for the version 2.0 of the framework. This correspond to both a source and a binary release. This version of the framework has a new API:</p> + <ul class="intext"> + <li class="intext">The class prefix is changed to be MCP (for MySQL Cocoa Project), from the "longer" SMySQL (though the framework has not changed name, neither the main header SMySQl/SMySQL.h)</li> + <li class="intext">I have added some categories on MCPConnection and MCPResult to implement shortcuts to obtains fast some result (for exemple a column of a table, or just the first element --Row 0, Colulmn 0--...)</li> + <li class="intext">Also added a category on NSObject to provide a single method to check if an object is a instance of NSNull (used whenever a field is set to NULL in a retrieved table).</li> + </ul> + <p class="afterwithlist">I also have discontinued the distribution of <a href="Display">MySQL Display</a> application, mainly because their is a much better developed free software doing the same thing AND using the SMySQL framework <a href="http://cocoamysql.sourceforge.net/">CocoaMySQL</a>. At some point I'll try to implement a simple example application with a GUI, for easing the use of the framework.</p> <p><em>15 May 2002:</em> Important changes to the framework: The two connect (<code>connectToHost:.. connectToSocket:..</code>) method have been replaced by a single method (<code>connectWithLogin:password:host:port:socket:</code>). In the mean time the syntax of the list methods (<code>listDBs ...</code>) have been changed to look more like the SQL <code>SHOW</code> statments. Some shortcuts to such methods have been added. Any one using the framework should port to the new version, the interface will be kept until version 1.0 (with maybe adding method, but no removing nor renaming). This version is available on CVS and <a href="#sources">File Release</a>. At last a new binary of <a href="Display">MySQL Display</a> contain the last version of the framework.</p> <p><em>7 May 2002:</em> Cleaned up the methods from May 3rd, (databases, tables, fields list). Finished the proper encoding of the character sets (should run Ok with latin1, latin2, win1250, cp1251, euc_kr, sjis). Added methods to check the version of the protocole, the client library, the server, and to get info on the database server the host. The framework has been promoted to version 0.6.0. It's under CVS, but also on the <a href="#sources">File Release</a>.</p> *************** *** 164,167 **** --- 178,188 ---- <p class="linkinfo">Where to go to see the development.</p> </td></tr> + <tr><td> + <p class="link"><a href="http://cocoamysql.sourceforge.net/">CocoaMySQL</a></p> + </td> + <td> + <p class="linkinfo">A very nice Generic GUI MySQL client (in Cocoa)... and it's free software!!</p> + </td> + </tr> </table> </div> Index: styles.css =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/styles.css,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** styles.css 11 Jan 2002 16:19:54 -0000 1.1.1.1 --- styles.css 19 Aug 2003 10:04:41 -0000 1.2 *************** *** 73,76 **** --- 73,89 ---- text-align: justify; } + TD P { + margin-top: 0pt; + margin-bottom: 0pt; + } + + P.withlist { + margin-bottom: 0.5em; + } + + P.afterwithlist { + margin-top: 0pt; + margin-bottom: 0.5em; + } P.zeroIndent { *************** *** 118,122 **** } ! SPAN {} DT SPAN { --- 131,143 ---- } ! SPAN { ! margin-top: 0pt; ! margin-bottom: 0pt; ! } ! ! TR SPAN { ! margin-top: 0pt; ! margin-bottom: 0pt; ! } DT SPAN { *************** *** 159,163 **** TD.head P { color: #ffffff; ! text-indent: 0 pt; font-size: 10pt; font-family: Geneva, sans-serif; --- 180,184 ---- TD.head P { color: #ffffff; ! text-indent: 0pt; font-size: 10pt; font-family: Geneva, sans-serif; *************** *** 172,173 **** --- 193,217 ---- text-align: left; } + + LI.intext { + margin-bottom: 0.4em; + text-indent: 0pt; + font-family: RotisSemiSans, Helvetica, sans-serif; + text-align: left; + } + + UL {} + + UL.intext { + margin-top: 0pt; + margin-bottom: 0.5em; + } + + OL {} + + OL.intext { + margin-top: 0pt; + margin-bottom: 0.5em; + } + + |