contribute  :  web resources  :  past polls  :  calendar  :  advanced search  :  site statistics  
    TagCMA SourceForge.net LogoTag Applied Graphics Collaborative Modeling Application    
 Welcome to TagCMA
 Thursday, December 24 2009 @ 10:18 PM UTC

TagML Prototype Build Update

 Email Article To a Friend View Printable Version 

Collaborative NewsBuild Update:
- Updated the scale code to properly scale nodes, verteces, and position tracks. Use the 'e' key and scale the selected node with the left mouse button, or scale the entire model with the right mouse button.
- Updated [download link]
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/tagelflax co tagml



Post a comment

TagML Prototype Build Update

 Email Article To a Friend View Printable Version 

Collaborative NewsDescription:
TagML is where it all got started. TagML is written in C++ and is meant to be the prototype/demo of what TagCMA aims to be.

Change Log:
- Fixed a small bug where clicks where being allowed to go thru the toolbar into the scene when trying to a select a tool from the popup menu.
- Updated [download link].



Post a comment

Build Update 1.39

 Email Article To a Friend View Printable Version 

Collaborative NewsChange Log:
- Customizing toolbar, adding buttons
- Minor tooltip changes
- Added setfocus to setup dialogs
- Updated [download link]
- Created a [mailing list] for the project, [subscribe] and ask questions



Post a comment

Build Update 1.38

 Email Article To a Friend View Printable Version 

Collaborative NewsChange Log:
- Added ability to save UI layout by pressing Control and a Number.
- Added logic to scale the UI layout when the window is resized.
- Moved button texture specifics from ui_layout.xml to core.xml.
- Updated config files.
- Updated download link.



Post a comment

Build Update 1.37

 Email Article To a Friend View Printable Version 

Collaborative NewsChange Log:
- Added new setup connection wizard.
- Added connection dialog.
- Added user dialog.
- Added display dialog.
- Updated server (now running WinXP thru IIS for NW USA connection)
- Updated download link.



Post a comment

TagCMA Client Instance Connection Wizard

 Email Article To a Friend View Printable Version 

Collaborative NewsCreated a functional prototype for the Client Connection Dialog. Each connection listed is a standalone component that makes web requests against the server to measure speed and latency. The controls are autogenerated from settings found in the core.xml file.



Post a comment

TagCMA Client Instance Connection Wizard

 Email Article To a Friend View Printable Version 

Collaborative NewsHere is a mockup of a setup wizard that will guide users through the user setup process.



Post a comment

Optimizing MySQL Performance on Windows

 Email Article To a Friend View Printable Version 

Collaborative NewsIf you install your own TagCMA server, these settings will help you maximize the performance you can get out of MySQL.

First invoke the MySQLInstanceConfig.exe application.


Click thru the configuation based wizard.


Select Configure/Reconfigure Instance.


Select Detailed Configuration.


Select Server Machine.


Select Non-Transactional Database only.


Select Online Transaction Processing (OLTP).


Enable TCP/IP Networking across the 3306 port.


Select Standard Character Set (for now).


Enable the MySql Service and add the bin directory to your path.


Change the default root password so nobody can hack your database.


Execute the process to update the configuration.


Finish the wizard.



Post a comment

TagCMA server on Mandriva 2005 LE

 Email Article To a Friend View Printable Version 

Collaborative NewsThe process of installing a TagCMA server on a Mandriva 2005 LE is as follows.

1. Start with a fresh install of Mandriva, include default packages for Server, Web Server and Database.

2. Update package sources.
http://easyurpmi.zarb.org/

3. Install MONO.
urpmi mono

4. Install Apache2 development packages.
urpmi apache2-devel

5. Compile mod_mono.
wget http://www.go-mono.com/archive/1.0.8/mod_mono-1.0.8.tar.gz
tar zxvf mod_mono-1.0.8.tar.gz
cd mod_mono-1.0.8
./configure --prefix=/usr --with-preview=yes
make
make install

6. Compile XSP.
wget http://www.go-mono.com/archive/1.0.8/xsp-1.0.8.tar.gz
tar zxvf xsp-1.0.8.tar.gz
cd xsp-1.0.8
./configure --prefix=/usr --with-preview=yes
make
make install

7. Get the latest TagCMA code from CVS.
cd /var/www/mono/
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/tagelflax co tagml/TAGMLWS

8. Configure MONO to find TAGMLWS.
These lines have to be added to /etc/httpd/conf/commonhttpd.conf just after the section that reads "...Note that from this point forward you must specifically allow particular features to be enabled..." :
####################################
LoadModule mono_module modules/mod_mono.so

Alias /TAGMLWS "/var/www/mono/tagml/TAGMLWS"
MonoApplications "/TAGMLWS:/var/www/mono/tagml/TAGMLWS"

<Directory /var/www/mono/tagml/TAGMLWS>
Order allow,deny
Allow from all
SetHandler mono
<IfModule mod_dir.c>
DirectoryIndex ClientManager.aspx
</IfModule>
</Directory>
####################################

9. Compile the server.
cd /var/www/mono/tagml/TAGMLWS/
./CompileWithMono.sh

10. Install MySQL.
urpmi mysql
mv /etc/sysconfig/mysqld /etc/sysconfig/mysqld.old
/etc/init.d/mysqld start
mysqladmin -u root -h localhost password 'new-password'

11. Setup the TagCMA database schema.
cd /var/www/mono/tagml/TAGMLWS/Install
mysql -u root -p
\. database_config.sql
exit

AND THAT'S HOW IT'S DONE.



Post a comment

Connection Concept Sketch

 Email Article To a Friend View Printable Version 

Collaborative NewsUpon launching TagCMA, I invision a step by step wizard to help the user select that best connection to which will provide the least lag to boost the user experience.



Post a comment
 Copyright © 2009 TagCMA
 All trademarks and copyrights on this page are owned by their respective owners.
Powered By Geeklog 
Created this page in 0.14 seconds