oscar
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 20
Pidgin 2.1.0
Pidgin, previously known as Gaim, is a multi-protocol instant messaging client for Linux, BSD, MacOS X, and Windows. more>>
Pidgin, previously known as Gaim, is a multi-protocol instant messaging client for Linux, BSD, MacOS X, and Windows. Pidgin messenger is compatible with AIM and ICQ (Oscar protocol), MSN Messenger, Yahoo!, IRC, Jabber, SILC, Gadu-Gadu, GroupWise Messenger, and Zephyr networks.
Pidgin users can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AOL Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.
Pidgin supports many features of the various networks, such as file transfer, away messages, typing notification, and MSN window closing notification. It also goes beyond that and provides many unique features.
A few popular features are Buddy Pounces, which give the ability to notify you, send a message, play a sound, or run a program when a specific buddy goes away, signs online, or returns from idle; and plugins, consisting of text replacement, a buddy ticker, extended message notification, iconify on away, spell checking, tabbed conversations, and more.
Pidgin runs on a number of platforms, including Windows, Linux, and Qtopia (Sharp Zaurus and iPaq).
Pidgin integrates well with GNOME 2 and KDE 3.1s system tray, as well as Windowss own system tray. This allows you to work with Pidgin without requiring the buddy list window to be up at all times.
Pidgin is under constant development, and releases are usually frequent. The latest news regarding Pidgin can be found on the news page.
Enhancements:
- libpurple:
- Core changes to allow UIs to use second-granularity for scheduling. Pidgin and Finch, which use the glib event loop, were changed to use g_timeout_add_seconds() on glib >= 2.14 when possible. This allows glib to better group our longer timers to increase power efficiency. (Arjan van de Ven with Intel Corporation)
- No longer linkifies screennames containing @ signs in join/part notifications in chats
- With the HTML logger, images in conversations are now saved. NOTE: Saved images are not yet displayed when loading logs.
- Added support for QIP logs to the Log Reader plugin (Michael Shkutkov)
Pidgin:
- Ensure only one copy of Pidgin is running with a given configuration directory. The net effect of this is that trying to start Pidgin a second time will raise the buddy list. (Gabriel Schulhof)
- Undo capability in the conversation window
- The formatting toolbar has been reorganized to be more concise.
- A new status area has been added to the top of conversations to provide additional detail about the buddy, including buddy icon, protocol and status message.
- Show idle times in the buddy list as days, hours, seconds
Finch:
- Theres support for workspaces now (details in the manpage)
- Theres a new custom window manager, Irssi
- Some improvements for tab-completion, tooltip and the password entries
- Some bugs regarding search results fixed
- A new DBus-script to create a docklet for finch
- Support for showing empty groups in the buddy list (Eric Polino)
<<lessPidgin users can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AOL Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.
Pidgin supports many features of the various networks, such as file transfer, away messages, typing notification, and MSN window closing notification. It also goes beyond that and provides many unique features.
A few popular features are Buddy Pounces, which give the ability to notify you, send a message, play a sound, or run a program when a specific buddy goes away, signs online, or returns from idle; and plugins, consisting of text replacement, a buddy ticker, extended message notification, iconify on away, spell checking, tabbed conversations, and more.
Pidgin runs on a number of platforms, including Windows, Linux, and Qtopia (Sharp Zaurus and iPaq).
Pidgin integrates well with GNOME 2 and KDE 3.1s system tray, as well as Windowss own system tray. This allows you to work with Pidgin without requiring the buddy list window to be up at all times.
Pidgin is under constant development, and releases are usually frequent. The latest news regarding Pidgin can be found on the news page.
Enhancements:
- libpurple:
- Core changes to allow UIs to use second-granularity for scheduling. Pidgin and Finch, which use the glib event loop, were changed to use g_timeout_add_seconds() on glib >= 2.14 when possible. This allows glib to better group our longer timers to increase power efficiency. (Arjan van de Ven with Intel Corporation)
- No longer linkifies screennames containing @ signs in join/part notifications in chats
- With the HTML logger, images in conversations are now saved. NOTE: Saved images are not yet displayed when loading logs.
- Added support for QIP logs to the Log Reader plugin (Michael Shkutkov)
Pidgin:
- Ensure only one copy of Pidgin is running with a given configuration directory. The net effect of this is that trying to start Pidgin a second time will raise the buddy list. (Gabriel Schulhof)
- Undo capability in the conversation window
- The formatting toolbar has been reorganized to be more concise.
- A new status area has been added to the top of conversations to provide additional detail about the buddy, including buddy icon, protocol and status message.
- Show idle times in the buddy list as days, hours, seconds
Finch:
- Theres support for workspaces now (details in the manpage)
- Theres a new custom window manager, Irssi
- Some improvements for tab-completion, tooltip and the password entries
- Some bugs regarding search results fixed
- A new DBus-script to create a docklet for finch
- Support for showing empty groups in the buddy list (Eric Polino)
Download (MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
39126 downloads
Net::Oscar 1.0
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients. more>>
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients.
<<less Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
859 downloads
POE::Component::OSCAR 0.05
POE::Component::OSCAR is a POE component for the Net::OSCAR module. more>>
POE::Component::OSCAR is a POE component for the Net::OSCAR module.
SYNOPSIS
use POE qw(Component::OSCAR);
[ ... POE set up ... ]
sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new();
# start an OSCAR session with automatic throttling of new connections
# to prevent being banned by the server
$oscar = POE::Component::OSCAR->new( throttle => 4 );
# set up the "im_in" callback to call your state, "im_in_state"
$oscar->set_callback( im_in => im_in_state);
# its good to detect errors if you dont want to get banned
$oscar->set_callback( error => error_state );
$oscar->set_callback( admin_error => admin_erro_stater );
$oscar->set_callback( rate_alert => rate_alert_state );
# sign on
$oscar->signon( screenname => $MY_SCREENNAME, password => $MY_PASSWORD );
}
sub im_in_state { my ($nothing, $args) = @_[ARG0..$#_]; my ($object, $who, $what, $away) = @$args;
print "Got $what from $whon";
}
<<lessSYNOPSIS
use POE qw(Component::OSCAR);
[ ... POE set up ... ]
sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new();
# start an OSCAR session with automatic throttling of new connections
# to prevent being banned by the server
$oscar = POE::Component::OSCAR->new( throttle => 4 );
# set up the "im_in" callback to call your state, "im_in_state"
$oscar->set_callback( im_in => im_in_state);
# its good to detect errors if you dont want to get banned
$oscar->set_callback( error => error_state );
$oscar->set_callback( admin_error => admin_erro_stater );
$oscar->set_callback( rate_alert => rate_alert_state );
# sign on
$oscar->signon( screenname => $MY_SCREENNAME, password => $MY_PASSWORD );
}
sub im_in_state { my ($nothing, $args) = @_[ARG0..$#_]; my ($object, $who, $what, $away) = @$args;
print "Got $what from $whon";
}
Download (0.006MB)
Added: 2007-04-18 License: Perl Artistic License Price:
919 downloads
OSCAR Cluster 5.0
OSCAR Cluster is a Linux cluster installer based on best known practices. more>>
OSCAR version 4.0 is a snapshot of the best known methods for building, programming, and using clusters. OSCAR Cluster project consists of a fully integrated and easy to install software bundle designed for high performance cluster computing.
Everything needed to install, build, maintain, and use a modest sized Linux cluster is included in the suite, making it unnecessary to download or even install any individual software packages on your cluster.
<<lessEverything needed to install, build, maintain, and use a modest sized Linux cluster is included in the suite, making it unnecessary to download or even install any individual software packages on your cluster.
Download (5.8MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1088 downloads
jcq2k 1.0.5
jcq2k is an ICQ Java client, implemented as an opensource LGPL library, for handling the TCP-based ICQ2000 OSCAR v.7 protocol. more>>
jcq2k is an ICQ Java client, implemented as an opensource LGPL library, for handling the TCP-based ICQ2000 OSCAR v.7 protocol. Incoming offline messages do not work but it looks like that the fix by James Hui solves this issue.
<<less Download (0.35MB)
Added: 2006-07-18 License: LGPL (GNU Lesser General Public License) Price:
1198 downloads
wmapmmon 1.0
wmapmmon is a WindowMaker dock application that reads the APM information file in /proc/apm in APM enabled kernels. more>>
wmapmmon is a WindowMaker dock application that reads the APM information file in /proc/apm in APM enabled kernels. Then it shows the actual battery charge and its expected remaining time.
When the charge falls below 20%, the background turns red reflecting the need for AC power.
<<lessWhen the charge falls below 20%, the background turns red reflecting the need for AC power.
Download (0.021MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1075 downloads
Twisted Words 0.4.0
Twisted Words provides implementations of a handful of IM protocols, including IRC, MSNP8, OSCAR, TOC, and Jabber. more>>
Twisted Words library provides implementations of a handful of IM protocols, including IRC, MSNP8, OSCAR, TOC, and Jabber.
Twisted Words provides two separate high-level end-user features:
a multiprotocol instant messaging server
a multiprotocol instant messaging client
These are both still in the early stages of development and are not expected to work flawlessly in all configurations, however each is quite usable for a limited set of functionality. A Twisted Words server can be created with just a couple commands:
$ mktap words --irc-port 6667 --pb-port 8787 --passwd password_file --group somegroup
$ twistd -f words.tap
The Twisted Words client is named im and is usable as an IRC client, and possibly an AIM client (depending on the phase of the moon).
Low Level Functionality:
Twisted Words also includes:
Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM).
Jabber libraries.
Prototypes of chat server and client frameworks built on top of the protocols.
<<lessTwisted Words provides two separate high-level end-user features:
a multiprotocol instant messaging server
a multiprotocol instant messaging client
These are both still in the early stages of development and are not expected to work flawlessly in all configurations, however each is quite usable for a limited set of functionality. A Twisted Words server can be created with just a couple commands:
$ mktap words --irc-port 6667 --pb-port 8787 --passwd password_file --group somegroup
$ twistd -f words.tap
The Twisted Words client is named im and is usable as an IRC client, and possibly an AIM client (depending on the phase of the moon).
Low Level Functionality:
Twisted Words also includes:
Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM).
Jabber libraries.
Prototypes of chat server and client frameworks built on top of the protocols.
Download (0.13MB)
Added: 2006-05-29 License: MIT/X Consortium License Price:
1246 downloads
Lua Messaging Engine 0.1.0
Lua Messaging Engine is a set of scripts that offer abstract functions for communication via AOLs OSCAR protocol. more>>
Lua Messaging Engine (LuME) is a set of scripts that offer abstract functions for communication via AOLs OSCAR protocol (as used by ICQ and AIM clients), Microsoft Messengers MSNP, and Yahoos YIM protocol. Lua Messaging Engine also includes utility functions for string operations, SHA hashing, and basic HTTPS communication.
An increasing number of software developers are making use of the simplicity and power behind employing a Lua script interface.
Meetroduction, LLC has been using a Lua script interface as a core design concept for the multi protocol messaging component of its proximity based people finder client: Meetro. Beyond that, the interface offers its users a flexible way to vastly extend the clients functionality.
<<lessAn increasing number of software developers are making use of the simplicity and power behind employing a Lua script interface.
Meetroduction, LLC has been using a Lua script interface as a core design concept for the multi protocol messaging component of its proximity based people finder client: Meetro. Beyond that, the interface offers its users a flexible way to vastly extend the clients functionality.
Download (0.089MB)
Added: 2006-01-26 License: MIT/X Consortium License Price:
1368 downloads
ptyaim 0.5.7
ptyaim is a very simple, extra special curses client for AOLs Instant Messenger (AIM) and ICQ services, plus IRC. more>>
ptyaim is a very simple, extra special curses client for AOLs Instant Messenger (AIM) and ICQ services, plus Internet Relay Chat (IRC). ptyaims project interface is somewhat inspired by naim. However, it uses no code from naim.
The latest version of ptyaim has been tested on Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Tru64 Unix, Mac OS 10.3, and Microsoft Windows 2000. Most likely, it will work on other platforms, too.
Enhancements:
- This new version of ptyaim features improvements to the OSCAR plugin, including support for group chat.
- The TOC plugin has also been removed.
<<lessThe latest version of ptyaim has been tested on Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Tru64 Unix, Mac OS 10.3, and Microsoft Windows 2000. Most likely, it will work on other platforms, too.
Enhancements:
- This new version of ptyaim features improvements to the OSCAR plugin, including support for group chat.
- The TOC plugin has also been removed.
Download (0.10MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
BBCD - Bootable Cluster CD 2.2.1c
The BCCD was created to facilitate instruction of parallel computing aspects and paradigms. more>>
BCCD - Bootable Cluster CD was created to facilitate instruction of parallel computing aspects and paradigms. Part of the difficulty instructors face is lack of dedicated resources to explore distributed computing aspects lack of time to preconfigure and test the supporting environment.
The BCCD image addresses this problem by providing a non-destructive overlay way to run a full-fledged parallel computing environment on just about any workstation-class system...Were happy to say that this now includes the MAC too!
The BCCD does share similarities with a few diskless solutions for clustering, such as the Warewulf project, the thin-OSCAR approach, Cluster Knoppix (only an openMosix system, no MPI/LAM/PVM build tools, ...), and so on. This is definitely the trend in HPC. But the main differences are that the BCCD will always fit in your pocket, be highly customizable for specific institutions needs, and will always be geared toward education and not dedicated clusters.
The "gar" build system also sets the BCCD apart from other projects. "gar" is a mix between BSDs "ports" system, Linux from scratch, and gentoo Linux. With gar, you can build an entire BCCD image from net-fetched sources in about two hours (assuming you have a primed ccache!).
The BCCD is also distinctly different from NPACI-Rocks, OSCAR, Cluster in a box or other type of mass-imaging clustering project for two reasons:
1. Its a non-destructive overlay on top of the current hardware. Once a system is rebooted, it reverts back to its original state. It is intended to be booted "over top" of a currently-configured Windows/Linux/BSD/etc. system.
2. Its focus in on educational aspects of High-Performance Computing (HPC) instead of the HPC core. Students will have a much better appreciation and understanding of how to tweak an MTU setting or wire the topology across a cluster if they understand how a distributed computation is laid out! Emphasis is placed upon building, configuring, and running distributed applications.
<<lessThe BCCD image addresses this problem by providing a non-destructive overlay way to run a full-fledged parallel computing environment on just about any workstation-class system...Were happy to say that this now includes the MAC too!
The BCCD does share similarities with a few diskless solutions for clustering, such as the Warewulf project, the thin-OSCAR approach, Cluster Knoppix (only an openMosix system, no MPI/LAM/PVM build tools, ...), and so on. This is definitely the trend in HPC. But the main differences are that the BCCD will always fit in your pocket, be highly customizable for specific institutions needs, and will always be geared toward education and not dedicated clusters.
The "gar" build system also sets the BCCD apart from other projects. "gar" is a mix between BSDs "ports" system, Linux from scratch, and gentoo Linux. With gar, you can build an entire BCCD image from net-fetched sources in about two hours (assuming you have a primed ccache!).
The BCCD is also distinctly different from NPACI-Rocks, OSCAR, Cluster in a box or other type of mass-imaging clustering project for two reasons:
1. Its a non-destructive overlay on top of the current hardware. Once a system is rebooted, it reverts back to its original state. It is intended to be booted "over top" of a currently-configured Windows/Linux/BSD/etc. system.
2. Its focus in on educational aspects of High-Performance Computing (HPC) instead of the HPC core. Students will have a much better appreciation and understanding of how to tweak an MTU setting or wire the topology across a cluster if they understand how a distributed computation is laid out! Emphasis is placed upon building, configuring, and running distributed applications.
Download (200MB)
Added: 2006-03-26 License: GPL (GNU General Public License) Price:
1316 downloads
py-icq 0.0.2
Spartan-style ICQ clone written in Python more>>
Spartan-style ICQ clone written in Python.
INSTALLATION
unpack the source code into directory you want py-icq to be stored in.
cd YOUR_DIR; gunzip -c py-icq-(release_num).tar.gz | tar xfv -
cd py-icq
sudo make install
what actually happens is tiny shell script created in your bin catalog, that calls python interpreter with ./src/main.py as aparameter.
at this point, your shell may want you to rehash search paths and hopefully you can run the client.
Main features:
- free, under BSD-style license
- runs on any platform with Python installed (*NIX, Mac, Win32, others)
- able to support different GUI fron-ends
- uses AIM Oscar protocol
Enhancements:
- path hook added to give an ability to run
- normally from any place
- socket errors exceptions handling
- ugly install added
- tkinter GUI changes:
- password prompt when starting
- buddy status in the contact list
- offgoing/ongoing buddy handlinG
<<lessINSTALLATION
unpack the source code into directory you want py-icq to be stored in.
cd YOUR_DIR; gunzip -c py-icq-(release_num).tar.gz | tar xfv -
cd py-icq
sudo make install
what actually happens is tiny shell script created in your bin catalog, that calls python interpreter with ./src/main.py as aparameter.
at this point, your shell may want you to rehash search paths and hopefully you can run the client.
Main features:
- free, under BSD-style license
- runs on any platform with Python installed (*NIX, Mac, Win32, others)
- able to support different GUI fron-ends
- uses AIM Oscar protocol
Enhancements:
- path hook added to give an ability to run
- normally from any place
- socket errors exceptions handling
- ugly install added
- tkinter GUI changes:
- password prompt when starting
- buddy status in the contact list
- offgoing/ongoing buddy handlinG
Download (0.02MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1241 downloads
Tinyquizz 2.3
Tinyquizz is a deliberately simplistic tool to produce self-assessment quizzes. more>>
Tinyquizz project is a deliberately simplistic tool to produce self-assessment quizzes. Quizzes consist of a single entirely self-contained XHTML file. There is no need for a web server, PHP, database server, or e-learning platform to run them. A simple web browser is enough. It even fully works offline.
Quizzes produces by Tinyquizz can only be used for self-assessment because the answers are contained in the quizz file.
How does Tinyquizz work ?
Quizzes are written in XML, that is raw text with tags to delimit sections. For instance here is a question (tags are in bold):
< question>
< statement>You can cross when the light is < /statement>
< answer correct="no">Red< /answer>
< answer correct="yes">Green< /answer>
< /question>
Once you wrote the quizz you transform it with an XSLT processor or using the online transformer which does not require any installation.
Any basic text editor is ok to write Tinyquizz quizzes. However you may prefer to use a dedicated XML text editor such as Jaxe which can additionally ensure that the syntax is correct. Indeed you need to use the right tag at the right place
Enhancements:
- Input widgets are now locked once the result is displayed.
- A new reset button has been added.
- A new optional < justification > tag can now be added after each answer to provide the user with individualized feedback.
- Disc bullets are used for answers when there is no correct answer.
- New reference documentation is now available on the Web site as well as in the distribution.
<<lessQuizzes produces by Tinyquizz can only be used for self-assessment because the answers are contained in the quizz file.
How does Tinyquizz work ?
Quizzes are written in XML, that is raw text with tags to delimit sections. For instance here is a question (tags are in bold):
< question>
< statement>You can cross when the light is < /statement>
< answer correct="no">Red< /answer>
< answer correct="yes">Green< /answer>
< /question>
Once you wrote the quizz you transform it with an XSLT processor or using the online transformer which does not require any installation.
Any basic text editor is ok to write Tinyquizz quizzes. However you may prefer to use a dedicated XML text editor such as Jaxe which can additionally ensure that the syntax is correct. Indeed you need to use the right tag at the right place
Enhancements:
- Input widgets are now locked once the result is displayed.
- A new reset button has been added.
- A new optional < justification > tag can now be added after each answer to provide the user with individualized feedback.
- Disc bullets are used for answers when there is no correct answer.
- New reference documentation is now available on the Web site as well as in the distribution.
Download (0.015MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1292 downloads
DJWrap 0.9.4
DJWrap is an open format for combining several mp3s into one. more>>
DJWrap is an open format for combining several mp3s into one (wrapping) , without losing information about where the songs begin and where they end, or what file names they had, allowing them to later be turned back into separate files.
The idea of DJWrap is in many ways the same as the AlbumWrap (ALBW) format, and the MP3Wrap format, though DJWrap has some extra features.
libdjwrap is a library that eases the handling of these wrapped files. It can parse DJWrap, AlbumWrap and MP3Wrap files, as well as output DJWrap files. It can be incorporated into software which wants a more intelligent handling of wrapped files. This would mainly be music players and CD writing software.
The library, libdjwrap, comes with a tool, aptly named djwrap. It gives a command line interface to various functions of the library, allowing a user to extract songs from a DJWrap, AlbumWrap or MP3Wrap file, as well as create their own DJWrap files.
There is also a graphical tool, using libdjwrap, for handling wrapped files. Its due for release any time now.
Enhancements:
- There is a bug in DJWrap 0.9.3 that became apparent when its used in MooseWrap.
- A function in the library returns the wrong value at a point, which makes software using DJWrap stop before writing a wrap do disk.
<<lessThe idea of DJWrap is in many ways the same as the AlbumWrap (ALBW) format, and the MP3Wrap format, though DJWrap has some extra features.
libdjwrap is a library that eases the handling of these wrapped files. It can parse DJWrap, AlbumWrap and MP3Wrap files, as well as output DJWrap files. It can be incorporated into software which wants a more intelligent handling of wrapped files. This would mainly be music players and CD writing software.
The library, libdjwrap, comes with a tool, aptly named djwrap. It gives a command line interface to various functions of the library, allowing a user to extract songs from a DJWrap, AlbumWrap or MP3Wrap file, as well as create their own DJWrap files.
There is also a graphical tool, using libdjwrap, for handling wrapped files. Its due for release any time now.
Enhancements:
- There is a bug in DJWrap 0.9.3 that became apparent when its used in MooseWrap.
- A function in the library returns the wrong value at a point, which makes software using DJWrap stop before writing a wrap do disk.
Download (0.070MB)
Added: 2006-02-23 License: LGPL (GNU Lesser General Public License) Price:
1341 downloads
Syntax CMS 1.3.0
Syntax CMS simplifies publishing varied content to a site. more>>
SyntaxCMS simplifies publishing various types of content to a site, facilitates creating and managing arbitrary relationships among content items, automates and accelerates custom development, and encourages reuse of site components with other SyntaxCMS installations.
Syntax CMS is built using PHP and MySQL.
For Content Managers and Creators
- Create and edit site content online.
- Approve content before publishing to web.
- Set content items to publish/expire at a given time.
- Build complex site hierarchies using sections to organize content without creating HTML or template files.
- Restrict access and actions to content types by groups of users.
For Developers
- Define new content types on-the-fly. SyntaxCMS automatically provides forms for adding and editing content and base classes for working with content types in PHP code.
- Use the Collections and Filters API to query the database for matching objects without having to write SQL.
- Customize the look and layout of any part of the site using PHP.
Enhancements:
- Various performance enhancements and API improvements.
- New modules for working with RSS/Atom feeds, publishing a blog, and better default behavior.
<<lessSyntax CMS is built using PHP and MySQL.
For Content Managers and Creators
- Create and edit site content online.
- Approve content before publishing to web.
- Set content items to publish/expire at a given time.
- Build complex site hierarchies using sections to organize content without creating HTML or template files.
- Restrict access and actions to content types by groups of users.
For Developers
- Define new content types on-the-fly. SyntaxCMS automatically provides forms for adding and editing content and base classes for working with content types in PHP code.
- Use the Collections and Filters API to query the database for matching objects without having to write SQL.
- Customize the look and layout of any part of the site using PHP.
Enhancements:
- Various performance enhancements and API improvements.
- New modules for working with RSS/Atom feeds, publishing a blog, and better default behavior.
Download (2.9MB)
Added: 2006-05-05 License: Common Public License Price:
1267 downloads
SIM Instant Messenger 0.9.4.3
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols. more>>
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols.
Based on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
<<lessBased on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
979 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above oscar 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