ms
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 302
Ah3 Beta 3
Ah3 project is an invoicing and inventory system for repair shops. more>>
Ah3 project is an invoicing and inventory system for repair shops. Out of the box it is focused towards autmotive repair shops but can be readily changed for any sort of shop without any knowledge of coding or recompiling the application.
Main features:
- Customer and vehicle database
- Inventory management
- Customizable invoice generation
- Forms which can be redily customized without code changes
- Minimal data changes from Ah2
- Building on MS Windows is possible
<<lessMain features:
- Customer and vehicle database
- Inventory management
- Customizable invoice generation
- Forms which can be redily customized without code changes
- Minimal data changes from Ah2
- Building on MS Windows is possible
Download (0.003MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
796 downloads
Tk::after 804.027
Tk::after can execute a command after a time delay. more>>
Tk::after can execute a command after a time delay.
SYNOPSIS
$widget->after(ms)
$id = $widget->after(ms?,callback?)
$id = $widget->repeat(ms?,callback?)
$widget->afterCancel($id)
$id = $widget->afterIdle(callback)
$widget->afterInfo?($id)?
$id->time(?delay?)
This method is used to delay execution of the program or to execute a callback in background sometime in the future.
In perl/Tk $widget->after is implemented via the class Tk::After, and callbacks are associated with $widget, and are automatically cancelled when the widget is destroyed. An almost identical interface, but without automatic cancel, and without repeat is provided via Tk::after method.
Internal Details
The internal Tk::After class has the following synopsis:
$id = Tk::After->new($widget, tid, $time, once, callback);
$id = Tk::After->new($widget, tid, $time, repeat, callback);
$id->cancel;
$id->time(?delay?);
$id is a Tk::After object, an array of 5 elements:
$widget is the parent widget reference.
tid is the internal timer id, a unique string.
$time is the string idle, representing an idle queue timer, or a integer millisecond value.
once or repeat specifies whether the timer is a one-time after event, or a repeating repeat event.
callback specifies a Perl/Tk Tk::Callback object.
Changing a repeat timer interval
Its posible to change a repeat timers delay value, or even cancel any timer, using the time method. If delay is specified and non-zero, a new timer delay is established. If delay is zero the timer event is canceled just as if $id->cancel were invoked. In all cases the current millisecond timer delay is returned.
Note: the new timer delay will take effect on the subsequent timer event - this command will not cancel the pending timer event and re-issue it with the new delay time.
The after() method has several forms as follows:
$widget->after(ms)
The value ms must be an integer giving a time in milliseconds. The command sleeps for ms milliseconds and then returns. While the command is sleeping the application does not respond to events.
$widget->after(ms,callback)
In this form the command returns immediately, but it arranges for callback be executed ms milliseconds later as an event handler. The callback will be executed exactly once, at the given time. The command will be executed in context of $widget. If an error occurs while executing the delayed command then the Tk::Error mechanism is used to report the error. The after command returns an identifier (an object in the perl/Tk case) that can be used to cancel the delayed command using afterCancel.
$widget->repeat(ms,callback)
In this form the command returns immediately, but it arranges for callback be executed ms milliseconds later as an event handler. After callback has executed it is re-scheduled, to be executed in a futher ms, and so on until it is cancelled.
$widget->afterCancel($id)
$id->cancel
Cancels the execution of a delayed command that was previously scheduled. $id indicates which command should be canceled; it must have been the return value from a previous after command. If the command given by $id has already been executed (and is not scheduled to be executed again) then afterCancel has no effect.
$widget->afterCancel(callback)
This form is not robust in perl/Tk - its use is deprecated. This command should also cancel the execution of a delayed command. The callback argument is compared with pending callbacks, if a match is found, that callback is cancelled and will never be executed; if no such callback is currently pending then the afterCancel has no effect.
$widget->afterIdle(callback)
Arranges for callback to be evaluated later as an idle callback. The script will be run exactly once, the next time the event loop is entered and there are no events to process. The command returns an identifier that can be used to cancel the delayed command using afterCancel. If an error occurs while executing the script then the Tk::Error mechanism is used to report the error.
$widget->afterInfo?($id)?
This command returns information about existing event handlers. If no $id argument is supplied, the command returns a list of the identifiers for all existing event handlers created by the after and repeat commands for $widget. If $id is supplied, it specifies an existing handler; $id must have been the return value from some previous call to after or repeat and it must not have triggered yet or been cancelled. In this case the command returns a list with three elements. The first element of the list is the callback associated with $id, the second element is either idle or the integer timer millisecond value to indicate what kind of event handler it is, and the third is a string once or repeat to differentiate an after from a repeat event.
The after(ms) and afterIdle forms of the command assume that the application is event driven: the delayed commands will not be executed unless the application enters the event loop. In applications that are not normally event-driven, the event loop can be entered with the vwait and update commands.
<<lessSYNOPSIS
$widget->after(ms)
$id = $widget->after(ms?,callback?)
$id = $widget->repeat(ms?,callback?)
$widget->afterCancel($id)
$id = $widget->afterIdle(callback)
$widget->afterInfo?($id)?
$id->time(?delay?)
This method is used to delay execution of the program or to execute a callback in background sometime in the future.
In perl/Tk $widget->after is implemented via the class Tk::After, and callbacks are associated with $widget, and are automatically cancelled when the widget is destroyed. An almost identical interface, but without automatic cancel, and without repeat is provided via Tk::after method.
Internal Details
The internal Tk::After class has the following synopsis:
$id = Tk::After->new($widget, tid, $time, once, callback);
$id = Tk::After->new($widget, tid, $time, repeat, callback);
$id->cancel;
$id->time(?delay?);
$id is a Tk::After object, an array of 5 elements:
$widget is the parent widget reference.
tid is the internal timer id, a unique string.
$time is the string idle, representing an idle queue timer, or a integer millisecond value.
once or repeat specifies whether the timer is a one-time after event, or a repeating repeat event.
callback specifies a Perl/Tk Tk::Callback object.
Changing a repeat timer interval
Its posible to change a repeat timers delay value, or even cancel any timer, using the time method. If delay is specified and non-zero, a new timer delay is established. If delay is zero the timer event is canceled just as if $id->cancel were invoked. In all cases the current millisecond timer delay is returned.
Note: the new timer delay will take effect on the subsequent timer event - this command will not cancel the pending timer event and re-issue it with the new delay time.
The after() method has several forms as follows:
$widget->after(ms)
The value ms must be an integer giving a time in milliseconds. The command sleeps for ms milliseconds and then returns. While the command is sleeping the application does not respond to events.
$widget->after(ms,callback)
In this form the command returns immediately, but it arranges for callback be executed ms milliseconds later as an event handler. The callback will be executed exactly once, at the given time. The command will be executed in context of $widget. If an error occurs while executing the delayed command then the Tk::Error mechanism is used to report the error. The after command returns an identifier (an object in the perl/Tk case) that can be used to cancel the delayed command using afterCancel.
$widget->repeat(ms,callback)
In this form the command returns immediately, but it arranges for callback be executed ms milliseconds later as an event handler. After callback has executed it is re-scheduled, to be executed in a futher ms, and so on until it is cancelled.
$widget->afterCancel($id)
$id->cancel
Cancels the execution of a delayed command that was previously scheduled. $id indicates which command should be canceled; it must have been the return value from a previous after command. If the command given by $id has already been executed (and is not scheduled to be executed again) then afterCancel has no effect.
$widget->afterCancel(callback)
This form is not robust in perl/Tk - its use is deprecated. This command should also cancel the execution of a delayed command. The callback argument is compared with pending callbacks, if a match is found, that callback is cancelled and will never be executed; if no such callback is currently pending then the afterCancel has no effect.
$widget->afterIdle(callback)
Arranges for callback to be evaluated later as an idle callback. The script will be run exactly once, the next time the event loop is entered and there are no events to process. The command returns an identifier that can be used to cancel the delayed command using afterCancel. If an error occurs while executing the script then the Tk::Error mechanism is used to report the error.
$widget->afterInfo?($id)?
This command returns information about existing event handlers. If no $id argument is supplied, the command returns a list of the identifiers for all existing event handlers created by the after and repeat commands for $widget. If $id is supplied, it specifies an existing handler; $id must have been the return value from some previous call to after or repeat and it must not have triggered yet or been cancelled. In this case the command returns a list with three elements. The first element of the list is the callback associated with $id, the second element is either idle or the integer timer millisecond value to indicate what kind of event handler it is, and the third is a string once or repeat to differentiate an after from a repeat event.
The after(ms) and afterIdle forms of the command assume that the application is event driven: the delayed commands will not be executed unless the application enters the event loop. In applications that are not normally event-driven, the event loop can be entered with the vwait and update commands.
Download (5.7MB)
Added: 2007-08-21 License: Perl Artistic License Price:
795 downloads
FreeBASIC Compiler 0.16 / 0.18.1b
FreeBASIC Compiler is an open-source, free, 32-bit, MS-QuickBASICs syntax-compatible compiler. more>>
FreeBASIC - as the name suggests - is a free, open-source, 32-bit, MS-QuickBASICs syntax-compatible compiler, that adds new features such as pointers, unsigned data types, inline-assembly and many others.
Main features:
- syntax compatible with Microsofts QBASIC/QuickBASIC/PDS/VBDOS interpreters/compilers
- clean syntax
- great number of variables types, like BYTE/SHORT/INTEGER, SINGLE/DOUBLE and STRING
- user defined types (UDTs)
- enums (Enumerations)
- arrays
- pointers
- optional function arguments (numeric only)
- inline assembly
- pre-processor
- creates OBJs, LIBs, DLLs/Shared Libs, console and GUI EXEs
- as a 32-bit application
- optimized code generation
- completely *FREE*
- portability
<<lessMain features:
- syntax compatible with Microsofts QBASIC/QuickBASIC/PDS/VBDOS interpreters/compilers
- clean syntax
- great number of variables types, like BYTE/SHORT/INTEGER, SINGLE/DOUBLE and STRING
- user defined types (UDTs)
- enums (Enumerations)
- arrays
- pointers
- optional function arguments (numeric only)
- inline assembly
- pre-processor
- creates OBJs, LIBs, DLLs/Shared Libs, console and GUI EXEs
- as a 32-bit application
- optimized code generation
- completely *FREE*
- portability
Download (3.1MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
803 downloads
KnowledgeTree 3.4.2
KnowledgeTree is a feature-rich document management system featuring knowledge management. more>>
KnowledgeTree is a feature-rich document management system featuring knowledge management, document version control, hierarchical document management, support for common file formats (MS Word, MS Excel, PDF, TXT, HTML), extensible meta data, creation of custom document types, application managed document links that guarantees consistent data and eliminates emailing documents, easy publication of documents, subscription agents, archiving according to expiry date, expiry time period, or utilisation for enhanced speed, and much more.
KnowledgeTree is free software released under the GPL license.
Main features:
- Fully web-based
- Includes document version control
- Search within common file formats (MS Word, MS Excel, PDF, TXT, HTML)
- Entry and search of user-defined metadata fields
- Subscription agents provide notification of changes to documents or to document directories
- Archives by expiry date, expiry time period, or by document usage, ensures fast searching
- Document-specific discussion forums
- Configurable browsing of information in the repository by folder, by category, or by document type
- Customizable dashboard allows you to view subscriptions, pending documents, checked-out documents, and quick links
- Displays configurable metadata when browsing
- Supports bulk uploads of multiple files to a folder
- Translations available for most of the user interface
Enhancements:
- This is a bugfix release that mainly addresses some webservices and XSS issues as well as several smaller issues related to i18n and issues created by the XSS fixes.
<<lessKnowledgeTree is free software released under the GPL license.
Main features:
- Fully web-based
- Includes document version control
- Search within common file formats (MS Word, MS Excel, PDF, TXT, HTML)
- Entry and search of user-defined metadata fields
- Subscription agents provide notification of changes to documents or to document directories
- Archives by expiry date, expiry time period, or by document usage, ensures fast searching
- Document-specific discussion forums
- Configurable browsing of information in the repository by folder, by category, or by document type
- Customizable dashboard allows you to view subscriptions, pending documents, checked-out documents, and quick links
- Displays configurable metadata when browsing
- Supports bulk uploads of multiple files to a folder
- Translations available for most of the user interface
Enhancements:
- This is a bugfix release that mainly addresses some webservices and XSS issues as well as several smaller issues related to i18n and issues created by the XSS fixes.
Download (MB)
Added: 2007-08-08 License: MPL (Mozilla Public License) Price:
808 downloads
Fingerfox 1.0
Fingerfox works like a workaround to make MS Fingerprint Reader fill the forms of a web page shown in Firefox. more>>
Fingerfox works like a workaround to make MS Fingerprint Reader fill the forms of a web page shown in Firefox. To avoid security problems (with login and password storage in particular), it relies with DigitalPersona to do it and just act as a popup window which repeats the login forms (including the buttons).
Then it remembers on which page and which form it has been used and popup automatically the next time you need to log in so that you can use firefox with your fingerprint almost as easily as IE.
It is now compatible with HTACCESS type logins.
<<lessThen it remembers on which page and which form it has been used and popup automatically the next time you need to log in so that you can use firefox with your fingerprint almost as easily as IE.
It is now compatible with HTACCESS type logins.
Download (0.034MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
873 downloads
TableTools 0.20
TableTools sorts, filters or copies any HTML table. more>>
TableTools supercedes the TableSort extension. TableTools sorts, filters or copies any HTML table (ctrl+alt+click sorts, ctrl+shift+click shows/hides filter, ctrl+z+click etc. allows copying in various formats).
Sorting/filtering are smart as they auto-detect the data types such as date/time stamps, numbers (including scientific notations), major currencies, IP addresses, or plain text.
Context menu allows users to force sorting column data as any of the predefined data types. Please check my demo page at http://www.mingyi.org/other/tabletools.html for the detailed feature list.
This extension is the perfect first-glance tool for HTML tables, providing better sorting and filtering capabilities than MS Excel (and directly in FF!), but if you need to make a graph or sth., just use the extension to copy the whole table into Excel!
<<lessSorting/filtering are smart as they auto-detect the data types such as date/time stamps, numbers (including scientific notations), major currencies, IP addresses, or plain text.
Context menu allows users to force sorting column data as any of the predefined data types. Please check my demo page at http://www.mingyi.org/other/tabletools.html for the detailed feature list.
This extension is the perfect first-glance tool for HTML tables, providing better sorting and filtering capabilities than MS Excel (and directly in FF!), but if you need to make a graph or sth., just use the extension to copy the whole table into Excel!
Download (0.036MB)
Added: 2007-07-31 License: MIT/X Consortium License Price:
817 downloads
phpBB 2.0.22 / 3.0 RC4
phpBB is a UBB-style dissussion board written in PHP backended by a MySQL database. more>>
phpBB project is a fully scalable, high powered and highly customizable Open Source bulletin board package. phpBB has a user-friendly interface, simple and straightforward administration panel, and helpful FAQ.
Based on the powerful PHP server language and your choice of MySQL, MS-SQL, PostgreSQL or Access/ODBC database servers, phpBB is the ideal free community solution for all web sites.
Main features:
- Supports popular database servers
- Unlimited forums and posts
- Multiple language interface
- Private or public forums
- Powerful search utility
- Private messaging system
- Complete customisation with templates
- See the complete feature list...
<<lessBased on the powerful PHP server language and your choice of MySQL, MS-SQL, PostgreSQL or Access/ODBC database servers, phpBB is the ideal free community solution for all web sites.
Main features:
- Supports popular database servers
- Unlimited forums and posts
- Multiple language interface
- Private or public forums
- Powerful search utility
- Private messaging system
- Complete customisation with templates
- See the complete feature list...
Download (0.50MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
841 downloads
Gnumeric 1.7.11
Gnumeric is a powerful and easy to use spreadsheet using GNOME. more>>
Gnumeric is a powerful and easy to use spreadsheet using GNOME. Its goal is to provide a full featured spreadsheet and a smooth migration path for people and organizations currently using proprietary applications.
Gnumeric provides more sheet functions and greatly improved accuracy when compared to Microsofts Excel. A plugin system lets you extend Gnumeric, adding functions, I/O formats, and real time data capabilities.
The existing Python, Guile, and Perl plugins let you define complex functions. Gnumeric is capable of reading and writing MS Excel, and reading Lotus, Applix, Quattro Pro, OpenCalc, XBase, DIF, SYLK, HTML, Psion, MPS, oleo, sc, misc. text formats, and its native XML. It can also generate Latex, HTML, and others.
<<lessGnumeric provides more sheet functions and greatly improved accuracy when compared to Microsofts Excel. A plugin system lets you extend Gnumeric, adding functions, I/O formats, and real time data capabilities.
The existing Python, Guile, and Perl plugins let you define complex functions. Gnumeric is capable of reading and writing MS Excel, and reading Lotus, Applix, Quattro Pro, OpenCalc, XBase, DIF, SYLK, HTML, Psion, MPS, oleo, sc, misc. text formats, and its native XML. It can also generate Latex, HTML, and others.
Download (16.5MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
825 downloads
GNOME Structured File Library 1.14.5
The GNOME Structured File Library is a utility library for reading and writing structured file formats. more>>
GNOME Structured File Library is a utility library for reading and writing structured file formats. Support for MS OLE2 streams is complete, as is zip import.
There is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to other languages.
This library replaces libole2 and is used in gnumeric, mrproject, abiword, libwv2, koffice. It is also part of the AAF format.
Enhancements:
- This release reverts jump to dynamic types, as they arent thread-safe.
- A compilation glitch on Windows has been fixed.
- Problems building without gconf macros installed are avoided.
- Configure breakage with --without-gnome has been fixed.
<<lessThere is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to other languages.
This library replaces libole2 and is used in gnumeric, mrproject, abiword, libwv2, koffice. It is also part of the AAF format.
Enhancements:
- This release reverts jump to dynamic types, as they arent thread-safe.
- A compilation glitch on Windows has been fixed.
- Problems building without gconf macros installed are avoided.
- Configure breakage with --without-gnome has been fixed.
Download (0.70MB)
Added: 2007-07-17 License: LGPL (GNU Lesser General Public License) Price:
831 downloads
Jackcess 1.1.9
Jackess is a pure Java library for reading and writing MS Access databases. more>>
Jackcess ia a pure Java library for reading from and writing to MS Access databases. Jackcess is not an application.
There is no GUI. Its a library, intended for other developers to use to build Java applications. Jackcess is licensed under the GNU Lesser General Public License.
Enhancements:
- Support for writing large table definitions was added.
- Handling of usage maps for large tables was fixed.
- Some edge cases for reading numeric columns were fixed.
<<lessThere is no GUI. Its a library, intended for other developers to use to build Java applications. Jackcess is licensed under the GNU Lesser General Public License.
Enhancements:
- Support for writing large table definitions was added.
- Handling of usage maps for large tables was fixed.
- Some edge cases for reading numeric columns were fixed.
Download (0.10MB)
Added: 2007-07-13 License: LGPL (GNU Lesser General Public License) Price:
833 downloads
xcalib 0.7
xcalib project is a tiny monitor calibration loader for XFree86 (or X.org) and MS-Windows. more>>
xcalib project is a tiny monitor calibration loader for XFree86 (or X.org) and MS-Windows.
Usage:
xcalib [-options] ICCPROFILE
or
xcalib [-options] -alter
where the available options are:
-display or -d
-screen or -s
-clear or -c
-noaction or -n
-verbose or -v
-printramps or -p
-loss or -l
-invert or -i
-gammacor or -gc
-brightness or -b
-contrast or -co
-red
-green
-blue
-alter or -a
-help or -h
-version
Last parameter MUST be an ICC profile containing a vcgt or mLUT tag or empty if the "-a" or "-alter" paramter is used or the LUT is to be cleared.
Use profiles gamma_1_0.icc and gamma_2_2.icc for testing. Profiles with vcg-tables can be created with most profile creation suites. An example profile with a vcg-table is inclued, named bluish.icc, which simulates a very high whitepoint (without further intentions).
<<lessUsage:
xcalib [-options] ICCPROFILE
or
xcalib [-options] -alter
where the available options are:
-display or -d
-screen or -s
-clear or -c
-noaction or -n
-verbose or -v
-printramps or -p
-loss or -l
-invert or -i
-gammacor or -gc
-brightness or -b
-contrast or -co
-red
-green
-blue
-alter or -a
-help or -h
-version
Last parameter MUST be an ICC profile containing a vcgt or mLUT tag or empty if the "-a" or "-alter" paramter is used or the LUT is to be cleared.
Use profiles gamma_1_0.icc and gamma_2_2.icc for testing. Profiles with vcg-tables can be created with most profile creation suites. An example profile with a vcg-table is inclued, named bluish.icc, which simulates a very high whitepoint (without further intentions).
Download (0.031MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
853 downloads
Kexi 1.1.3
Kexi is a KDE app to potentially act as a replacement for Microsoft Access. more>>
Kexi is an integrated environment for managing data. Kexi project helps in creating database schemas, inserting, querying and processing data.
As Kexi is a real member of the KDE and KOffice projects, it integrates fluently into both. It is designed to be fully usable also without KDE on Linux/Unix and MS Windows platforms (Mac OS X version planned).
Kexi is also considered as long awaited MS Access replacement.
<<lessAs Kexi is a real member of the KDE and KOffice projects, it integrates fluently into both. It is designed to be fully usable also without KDE on Linux/Unix and MS Windows platforms (Mac OS X version planned).
Kexi is also considered as long awaited MS Access replacement.
Download (54.2MB)
Added: 2007-06-08 License: LGPL (GNU Lesser General Public License) Price:
872 downloads
C# Java Virtual Machine 1.0.1
C# Java Virtual Machine is a tiny implementation of the Java VM, including simple native classes. more>>
C# Java Virtual Machine is a tiny implementation of the Java VM, including simple native classes. This project is written using the C# language. The VM is very easily expandable by writing additional native or Java classes.
Enhancements:
- The DbConnection class, which provides a connection to MS SQL or PostgreSQL using ADO.NET, was added.
- The Syst.MachineName method, which returns the machine name, was added.
- String.startsWith and String.endsWith functions were added.
- Some comments for VM.cs were written.
<<lessEnhancements:
- The DbConnection class, which provides a connection to MS SQL or PostgreSQL using ADO.NET, was added.
- The Syst.MachineName method, which returns the machine name, was added.
- String.startsWith and String.endsWith functions were added.
- Some comments for VM.cs were written.
Download (0.40MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
884 downloads
Db::Mediasurface 0.03
Db::Mediasurface is a Perl module that manipulates a Mediasurface database. more>>
Db::Mediasurface is a Perl module that manipulates a Mediasurface database.
SYNOPSIS
use Db::Mediasurface;
$path = /opt/ms/3.0/etc/ms.properties;
$ms = Db::Mediasurface->new( config_file=>$path );
print ("Schema version: ".$ms->version."n");
use Db::Mediasurface;
use Db::Mediasurface::ReadConfig;
$path = /opt/ms/3.0/etc/ms.properties;
$config = Db::Mediasurface::Readconfig->new( config=>$path );
$ms = Db::Mediasurface->new( config=>$config );
print ("Schema version: ".$ms->version."n");
Db::Mediasurface is a wrapper for most other Db::Mediasurface:: modules. At present, only the new() and version() methods are supported.
Constructor
$ms = Db::Mediasurface->new( config=>$config_object );
$ms = Db::Mediasurface->new( config_file=>$path2config );
Create a new Db::Mediasurface object by supplying either the path to a valid Mediasurface configuration file (usually named ms.properties), or a Db::Mediasurface::ReadConfig object.
Methods
$ms_version = $ms->version;
Returns the database schema version.
<<lessSYNOPSIS
use Db::Mediasurface;
$path = /opt/ms/3.0/etc/ms.properties;
$ms = Db::Mediasurface->new( config_file=>$path );
print ("Schema version: ".$ms->version."n");
use Db::Mediasurface;
use Db::Mediasurface::ReadConfig;
$path = /opt/ms/3.0/etc/ms.properties;
$config = Db::Mediasurface::Readconfig->new( config=>$path );
$ms = Db::Mediasurface->new( config=>$config );
print ("Schema version: ".$ms->version."n");
Db::Mediasurface is a wrapper for most other Db::Mediasurface:: modules. At present, only the new() and version() methods are supported.
Constructor
$ms = Db::Mediasurface->new( config=>$config_object );
$ms = Db::Mediasurface->new( config_file=>$path2config );
Create a new Db::Mediasurface object by supplying either the path to a valid Mediasurface configuration file (usually named ms.properties), or a Db::Mediasurface::ReadConfig object.
Methods
$ms_version = $ms->version;
Returns the database schema version.
Download (0.003MB)
Added: 2007-05-24 License: Perl Artistic License Price:
883 downloads
KDE 3.5.x Alternate logout 1.2
KDE 3.5.x Alternate logout package is an alternative logout for KDE, background wipe, based on shadowfade patch. more>>
KDE 3.5.x Alternate logout package is an alternative logout for KDE, background wipe, based on shadowfade patch http://kde-apps.org/content/show.php/shadowfade+at+logout+for+KDE+3.5.x?content=35731
It is provided as patches for KDE 3.5.6 (kubuntu), but can be easily adapted to other distros as well.
When patch is in effect, it is possible to control speed/opacity/greylevel on wipe, and revert back to default logout if needed.
Use following settings in ~/.kde/share/config/ksmserverrc:
------- snip -------
[Logout]
doFancyLogout=0/1 (new fade on/off)
doUbuntuLogout=0/1 (new gui on/off)
doFancyLogoutAdditionalDarkness=0.6 (default value is a double)
doFancyLogoutFadeTime=4000 (in ms, fade in)
doFancyLogoutFadeBackTime=1000 (in ms, fade out on cancel)
------- snip -------
<<lessIt is provided as patches for KDE 3.5.6 (kubuntu), but can be easily adapted to other distros as well.
When patch is in effect, it is possible to control speed/opacity/greylevel on wipe, and revert back to default logout if needed.
Use following settings in ~/.kde/share/config/ksmserverrc:
------- snip -------
[Logout]
doFancyLogout=0/1 (new fade on/off)
doUbuntuLogout=0/1 (new gui on/off)
doFancyLogoutAdditionalDarkness=0.6 (default value is a double)
doFancyLogoutFadeTime=4000 (in ms, fade in)
doFancyLogoutFadeBackTime=1000 (in ms, fade out on cancel)
------- snip -------
Download (MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
884 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ms search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed