Changes between Version 1 and Version 2 of WikiStart

Show
Ignore:
Timestamp:
06/03/11 15:01:08 (13 years ago)
Author:
bartek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v1 v2  
    1 = Welcome to Trac 0.12.2 = 
     1= QCG-Core = 
     2QCG-Core is an utility and interoperability layer for some QCG services (QCG-Computing and QCG-Notification). The library offers a set of standard functions that simplify the development of any Web Service in C language. In particular, QCG-Core provides stable mechanisms for handling Web Services configuration, loadable modules, transport protocols, as well as authentication and authorization. Moreover, it imposes some standard and best practices for developing new Web Services. Key features provided by SMOA Core are presented below: 
     3* configuration - it delivers XML Schema for the main configuration file together with a set of functions for parsing the file during Web Service runtime; 
     4* serialization and deserialization - it utilizes advanced gSoap routines for serialization and deserialization of XML data ; 
     5* reconfiguration - loadable modules are supported, so various modules can be specified in the configuration file and loaded automatically; 
     6* transport modules - QCG-Core wraps gSoap and libpurple libraries for networked applications, thus HTTP, HTTPS and XMPP are supported; 
     7* authentication modules - it is easy to use various security modules for services and clients; 
     8* database modules - a set of functions supporting highly efficient access to external database over the ODBC interface. 
    29 
    3 Trac is a '''minimalistic''' approach to '''web-based''' management of 
    4 '''software projects'''. Its goal is to simplify effective tracking and handling of software issues, enhancements and overall progress. 
     10== Basic Installation == 
     11=== Dependencies === 
     121. libxml2  >= 2.6.27 
     132. openssl >= 0.9.7 
     143. unixODBC >= 2.2.0 
     154. Python >= 2.4  
     165. [http://activemq.apache.org/cms/ActiveMQ-CPP] >= 3.0.1 (optional - needed only for [http://www.plgrid.pl/en PL-Grid] BAT accounting module) 
    517 
    6 All aspects of Trac have been designed with the single goal to  
    7 '''help developers write great software''' while '''staying out of the way''' 
    8 and imposing as little as possible on a team's established process and 
    9 culture. 
     18'''Note:''' If you are installing the libraries from binary packages check if those libraries were installed in '''devel''' versions (i.e. with headers files). 
    1019 
    11 As all Wiki pages, this page is editable, this means that you can 
    12 modify the contents of this page simply by using your 
    13 web-browser. Simply click on the "Edit this page" link at the bottom 
    14 of the page. WikiFormatting will give you a detailed description of 
    15 available Wiki formatting commands. 
     20=== Configuration, Compilation & Installation === 
     21{{{ 
     22#!div style="font-size: 90%" 
     23{{{#!sh 
     24tar xzf qcg-core-latest.tar.gz  
     25cd qcg-core-2.1.1 
     26./configure --prefix=/opt/qcg 
     27make 
     28sudo make install 
     29}}} 
     30}}} 
    1631 
    17 "[wiki:TracAdmin trac-admin] ''yourenvdir'' initenv" created 
    18 a new Trac environment, containing a default set of wiki pages and some sample 
    19 data. This newly created environment also contains  
    20 [wiki:TracGuide documentation] to help you get started with your project. 
    21  
    22 You can use [wiki:TracAdmin trac-admin] to configure 
    23 [http://trac.edgewall.org/ Trac] to better fit your project, especially in 
    24 regard to ''components'', ''versions'' and ''milestones''.  
    25  
    26  
    27 TracGuide is a good place to start. 
    28  
    29 Enjoy! [[BR]] 
    30 ''The Trac Team'' 
    31  
    32 == Starting Points == 
    33  
    34  * TracGuide --  Built-in Documentation 
    35  * [http://trac.edgewall.org/ The Trac project] -- Trac Open Source Project 
    36  * [http://trac.edgewall.org/wiki/TracFaq Trac FAQ] -- Frequently Asked Questions 
    37  * TracSupport --  Trac Support 
    38  
    39 For a complete list of local wiki pages, see TitleIndex. 
     32'''Note:''' You may need to pass some additional options to `./configure` script if you have specific requirements or dependencies installed in non-standard locations (type `./configure --help` for more info)