mime
TNEF's Enough 2.2
TNEFs Enough brings you an interesting and simple to use tool that allows Macs to read and extract files from Microsoft TNEF stream files. more>>
TNEF's Enough 2.2 brings you an interesting and simple to use tool that allows Macs to read and extract files from Microsoft TNEF stream files. The files are usually received by SMTP based e-mail programs from Microsoft Exchange and Microsoft Outlook users. The SMTP based e-mail program will usually receive either a MIME attachment named "winmail.dat" or a MIME attachment with the type "application/ms-tnef."
The file is a rich text (or MAPI) message that is sent from Outlook to Exchange. When Exchange sends the message to an outside server it writes the MAPI message as a MIME attachment. The unfortunate side effect of this plan is if the Outlook user has someone in their address book as a person who can receive "Rich Text" then the user will receive the TNEF file whether the user uses Outlook or not.
Enhancements:
- Support PPC and Intel Macs for OS versions 10.5/10.6.
Calibre 0.6.20
Calibre is created to offer you a one stop solution to your e-book needs, which is free, open source and cross-platform in design. more>>
Calibre 0.6.20 is created to offer you a one stop solution to your e-book needs, which is free, open source and cross-platform in design.
Calibre is meant to be a complete e-library solution and thus includes library management, format conversion, news feeds to e-book conversion, as well as e-book reader sync features and an integrated e-book viewer.
Version 0.5.2 fixes the HTML to EPUB conversion error, supports reading metadata from Amazon Topaz books, automatically accesses your EPUB collection in Stanza, and other bug-fixes.
Major Features:
- Library management;
- Format conversion (all major ebook formats);
- Syncing to e-book reader devices;
- Fetching news from the Web and converting it into ebook form;
- Viewing many different e-book formats;
- Giving you access to your book collection over the internet using just a browser.
Enhancements:
- Fix #3861 (calibre locks zip file when plugin not found)
- Content Server: Add a mobile friendly interface. Now if you access the content server using a mobile browser, a list of books that is easy to browse on small/e-ink screens is returned.
- Fixes #3870 (Add a mobile user interface for calibre)
- Improved recipe for The Australian
- Fix #3824 (Version in .desktop files is used wrongly)
- Fix #3869 (Mobipocket mime-type is wrong.)
Logtalk 2.37.5
Logtalk brings you canvenience of using such an object-oriented logic programming language that can use most Prolog implementations as a back-end compiler. more>>
Logtalk 2.37.5 brings you canvenience of using such an object-oriented logic programming language that can use most Prolog implementations as a back-end compiler.
As a multi-paradigm language, Logtalk includes support for both prototypes and classes, protocols (interfaces), component-based programming through category-based composition, event-driven programming, and high-level multi-threading programming.
Major Features:
- Separation between interface and implementation: Predicate directives (declarations) can be contained inside protocols (interfaces), which can be implemented by any object.
- Parametric objects: Object identifiers can be compound terms containing free variables that can be used to parametrize object predicates. This allows us to interpret predicate clauses as providing instantiations of a parametric object identifier. I.e. through parametric object we can associate any number of methods with a compound term.
- Support for both class-based and prototype-based systems: You may have, in the same application, class-based hierarchies (with instantiation and specialization relations) and prototype-based hierarchies (with extension relations). Moreover, fundamental language features such as protocols (interfaces) and categories (components) can be used simultaneously by classes, instances, and prototypes.
- Support for multiple object hierarchies: No need to be constrained to a single, lengthy hierarchy rooted in some generic object.
- Private, protected, and public inheritance: Logtalk supports private, protected, and public inheritance in a way similar to C++. Moreover, any entity relation can be qualified using a scope keyword. E.g. an object can privately implement a protocol, thus making all protocol declared predicates private.
- Private, protected, and public object predicates: Set the scope of your object predicates to match your protocol design and let the runtime system enforce your choices.
- Static and dynamic objects: Objects can be either static or dynamic. Static objects are defined in source files which are compiled and loaded in the same way as Prolog files. Dynamic object can be either defined in source files or created at runtime.
- Static and dynamic object predicates: Any static object may contain both static and dynamic predicates.
- Logtalk syntax extends standard Prolog syntax: Logtalk uses standard Prolog syntax with the addition of a few operators and directives for a smooth learning curve. Prolog code can be easily encapsulated inside objects with little or no changes. Moreover, Logtalk can transparently interpret most Prolog modules as Logtalk objects for easy reusing of existing code (e.g. libraries).
- Event-driven programming: Predicates can be implicitly called when a spied event occurs, allowing programming solutions which minimize object coupling. In addition, events provide support for behavioral reflection and can be used to implement the concepts of pointcut and advice found on Aspect-Oriented Programming.
- Component-based programming: Predicates can be encapsulated inside categories, which can be virtually imported by any object, without any code duplication and irrespective of object hierarchies. Thus, objects may be defined through composition of categories, which act as fine-grained units of code reuse. Categories may also extend existing objects. Categories can be used to implement aspects and mixin-like behavior without resorting to inheritance.
- Multi-threading programming: High level multi-threading programming is available when running Logtalk with selected back-end Prolog compilers, allowing objects to support both synchronous and asynchronous messages. Independent and-parallelism and competitive or-parallelism are also supported. Easily take advantage of modern multi-processor and multi-core computers without bothering with the details of creating and destroying threads, implement thread communication, or synchronizing threads.
- Multi-inheritance support: Logtalk supports multi-inheritance of both protocol and implementation. An object may implement several protocols and extend, specialize, or instantiate several objects. Multi-inheritance conflicts are solved implicitly by the Logtalk lookup algorithms or explicitly by using predicate directives.
- Good performance: Logtalk code is compiled using the same technics that you use to write efficient Prolog code. In addition, Logtalk supports both static binding and dynamic binding (with method lookup caching), greatly improving performance. Benchmark results for some Prolog compilers are available here.
- Close integration with the ISO Prolog Standard: Logtalk is designed for smooth integration with any Prolog compiler that conforms or closely follows the ISO Prolog Standard.
- Compatible with most Prolog compilers: Logtalk interfaces with a specific back-end Prolog compiler via a minimal configuration file making it compatible with almost any modern compiler.
- Automatic generation of XML documentation files: Logtalk automatically generates a documentation file in XML format for every compiled object, protocol, or category. The system includes all the necessary XSL(T) files and scripts to convert documenting files to (X)HTML and PDF.
- Dynamic language: Logtalk is a dynamic language that allows hierarchies, objects, protocols, categories, and methods (predicates) to be freely created and modified at runtime. Other dynamic language features include support for meta-programming and both structural and behavioral reflection.
Enhancements:
- Updated the Logtalk multi-threading features, replacing all calls to the call_cleanup/2 built-in predicate with calls to the more reliable setup_call_cleanup/3 built-in predicate. This change requires recent versions of SWI-Prolog, XSB, and YAP when writing multi-threading code.
- Improved performance of the database built-in methods retractall/1 and retract/1 whenever their use requires updating the internal predicate definition lookup tables.
- Corrected a bug in the Logtalk runtime when printing a compatibility warning regarding the back-end Prolog compiler version being used.
- Corrected a bug in the implementation of the :/1 control construct when some but not all imported categories are compiled for static binding.
- Corrected a event handling bug in the processing of meta-calls whose meta-arguments have the format Object:Closure.
- Corrected a bug in the runtime error handler for top-level message sending calls where the reported exception term context argument would be unbound.
- Corrected a bug in the compilation of multifile directives and multifile predicate clauses within objects and categories for the pseudo-object
- "user". Corrected a bug in the compilation of multifile predicate clauses for other objects and categories.
- Corrected a safety meta-predicate compilation bug when using static binding to optimize a call to a local meta-predicate made by a normal, public predicate.
- Corrected a safety meta-predicate compilation bug when using a meta-predicate call in the body of a user-defined meta-predicate clause in order to change the number of extra arguments of a closure.
- Added a monitor/1 predicate to the library event registry objects. Updated the definition of the monitors/1 and monitored/1 predicates in order to avoid using the non-standard predicate sort/2.
- Added support for adding the Logtalk mime-type to systems supporting the freedesktop.org shared mime-info database.
- Added support for adding the Logtalk mime-type and the file description for Logtalk source files to the Windows installer.
- Updated the RPM spec file and build script to no longer require root access. The RPM package built from these files is no longer relocatable.
- Updated the POSIX (un)install shell scripts to print the version number of the Logtalk release being (un)installed.
- Updated the "lgt2pdf.sh" and "lgt2txt.sh" POSIX shell scripts in order to prevent accidental deletion of the "logtal.dtd" and "logtalk.xsd" files in the Logtalk installation directory. Thanks to Michael Igler for the bug report.
- Added information about using the Sublime Text Windows text editor for editing Logtalk source files.
- Added a set of Logtalk source code snippets and a set of compilation and documenting tools for the Gnome's Gedit text editor (see the file "wenv/gedit/NOTES.txt" for details).
- Replaced GeSHi support with a new language file written from scratch. Added syntax coloring support for the module directive reexport/1 to all supported text editors and syntax highlighters.
- Updated documentation in order to remove references to deprecated syntax for sequences of predicate indicators in predicate directives. Updated documentation on built-in meta-predicates to correctly described their semantics when used within categories.
- Added a simple example, "multifile", illustrating how to use multifile predicates within Logtalk objects and categories.
- Updated the "securemp" example in order to illustrate using a call to a meta-predicate to change the number of extra arguments of a closure.
Requirements:
- Compatible Prolog compiler.

CrossFTP 1.55
CrossFTP is launched to be a user-friendly and handy tool which uses a familiar, Explorer-like interface so that the novice user can master in minutes more>>
CrossFTP 1.55 is launched to be a user-friendly and handy tool which uses a familiar, Explorer-like interface so that the novice user can master in minutes. CrossFTP is an excellent FTP client. CrossFTP Pro is a FTP client supporting SFTP, FXP, WebDav, and Amazon S3.
Functions:
- Multi-tabs navigation.
- Archive browse, extraction, and compression.
- CrossFTP Server startup for easy file sharing.
- Unicode support for international sites.
- Text and Image Quick Viewer.
- Bonjour Service Discovery Protocol
- Quick File Filtering by Masks;
- Auto-reconnect and anti-idle,
- Mutli-Thread Queue Processing Engine.
- Secure File Transportation (SSL/TLS).
- FXP (Site to Site) File Transportation.
- FTPS/SSH File Transportation.
- WebDav(s) and iDisk support.
- Remote file edit and save.
- Search for FTP files and local archive files.
- Backup and Bi-directional Synchronization Tool.
- Amazon S3 support.
- And bit more...
Major Features
- Amazon S3 Support: Simply manage your on-demand storage, cost effectively!
- WebDAV(s) and MobileMe iDisk Support: Get files on WebDav(s) and MobileMe iDisk, faster than Browser!
- FXP (Site-to-Site) Transfers: Go server to server FTP transfers by tab-to-tab!
- FTP, SFTP/SSH, or TLS/SSL: Versatile secure protocol choices made transfer simple
- Turbo Engine: Up to 40x multi-thread enigne turbos the speed!
- Edit Anywhere: Edit any files in any app, even remote graph files
- Synchronization: Preview your sync, save/schedule in queue, powerful options
- Schedule: Put your transfer/synchronization tasks in plan
- HTTP/Sock/FTP Proxy: Flow along various proxy engines
- Sync-Browsing: Bind two tabs, so that one goes, the other also goes
- Speed Limit: Nicely grant your bandwidth to other programs
- Remote File Search: Search for certain files in the remote folder
- Much, Much More...
- IPV6, Account, Customized commands, CHMOD... one mege app!
- Tabs: Many site connections inside one window
- Encryption: Protect your site's safe by password encryption
- Archives: compress, extract, and browse archives
- Internalization: Unicode, CJK and international encoding support
- Quick Search: Narrow a long list of files in a flash
- Web Search: Search item on web by one click
- Batch Transfer: Drag a number of files and go!
- Previews with Zoom: Smoothly zoom and preview
- Sound & Event Notifier: Sound notify or command execution on events
- Favorites: Convenient favorites and history information
Enhancements:
- CrossFTP 1.55a is a major update, which includes:
-
- Significantly enhances Amazon S3 support with Metadata modification, gzip transfer compression, logging, MIME types modification, etc.
- Improves the compatibility for Snow Leopard and Windows 7
- Adds the OS/2,Netware, glFTPd ansi-color, etc., listing support, and SFTP/SSH's command and archiving support
- Introduces ident-server protocol support
- Adds checksum support in the property dialog
- Provides a lot of bug fixes
Requirements:
- Sun Java 1.5+. If your system is not Java enabled, go get it
- Mac OS X users: your system has already got Java installed, and you are ready to go!
- Java 1.4 users (e.g., Mac OS X 10.3)
StuffIt Expander 14.0.0
StuffIt Expander is a helpful and beneficial utility which easily expands and decodes any compressed file you download from the Internet or receive attached to an email. more>>
StuffIt Expander 14.0.0 is a helpful and beneficial utility which easily expands and decodes any compressed file you download from the Internet or receive attached to an email. It expands StuffIt archives, unzips Zip files (created by WinZip or other zip utilities) and decompresses Unix's .tar, .gzip and .bzip files. Expander works seamlessly with your favorite browsers like Safari, Firefox and more. From BinHex to Zip, StuffIt to MIME, Expander accesses more formats in less time with zero hassles! Just drag, drop and enjoy!
Enhancements: Expansion support for archives created with the latest versions of StuffIt
RCDefaultApp 2.1
RCDefaultApp is a preference pane that allows a user to set the default application used for various URL schemes, file extensions, file types, and MIME types more>> <<less

Workspace 1.12.2
Workspace 1.12.2 brings you a packaged e-commerce software for integrated e-business solutions. more>>
Workspace 1.12.2 brings you a packaged e-commerce software for integrated e-business solutions. Workspace is based on J2SE architecture and offers a reliable and easy-to-use solution with low total cost of ownership (TCO).
Workspace is reliable, expandable, easy to use aplication. You can use Workspace to build and publish e-commerce enabled websites e.g. b-to-c online stores, product catalogs and b-to-b extranet services.
Workspace is based on reliable technology and open standards. It is widely used and continuously developed and supported by Smilehouse.
The customers use Workspace to improve their processes aiming at automation, removal of manual routines, managed decrease of human workload and interest group integration. This is achieved by developing web-solutions with Workspace.
Workspace is a system for:
- Building, developing and managing an e-commerce site.
- Managing and distributing product information and related documents
- Receiving orders, invitation of bids and payments from various interfaces (www, wap, palm)
- Managing customer information, customer accounts and user privileges.
- Customer management and support
Major Features:
- Features for system manager.
- Workspace Operator version
- Features for users.
- System (System)
-
- Contains features for managing Workspace administration access rights and databases.
- Product Marketing Engine (Products)
-
- Contains all features for managing product data.
- Order Manager (Orders)
-
- Contains settings and features for managing orders and order process.
- Customer Manager (Customers)
-
- Contains settings and features for managing webshop customers, customer groups and access rights.
- Marketing
-
- Contains marketing tools such as coupons.
- Visual Toolkit (Visual)
-
- Contains all the features and settings to build the graphical appearance and structure.
- Payment Gateway (Payment)
-
- Contains settings to configure payment systems and delivery options.
- Features for developers and partners.
- Integrations
-
- Contains features for expanding Workspace.
- PaymentGateway
-
- Contains features for managing payments.
- Plugins
-
- Other expanding way of Workspace.
Enhancements:
- New features
-
- Smilehouse Workspace now supports the "Itella Noutopiste" service. More information can be found from http://verkkokauppiaalle.itella.fi/
- Improvements
-
- This release is a minor release focusing on improvements and bug fixes. Improvements are focused on performance on large datasets.
- Faster group letter functionality with large number of receivers
- Administration dropdown menus have been modified to work better with IE8 and Opera
- Bug fixes
-
- There were several bugfixes implemented in this version, including the following:
- Lots of fixes for Kreditor and Lindorff
- Filemanager does not produce wrong mime type anymore in response header if the request points to a directory but doesn't end with a slash
Requirements:
- Server software
-
- Apache Tomcat 5
- JDK 1.5.X or newer
- For SSL support JSSE 1.0.2 or higher.
- Database
-
- MySQL 4, MySQL 5, or PostgreSQL
- Operating systems
-
- All operating systems that support JDK 1.5.X, e.g.:
- Linux
- BSD
- Windows NT/2000/XP
- Solaris
- Mac OS X
- Hardware
-
- All hardware platforms that support required operating systems, databases and server software can be used. An example of a small test server:
- Intel / AMD Processor 2 Ghz
- 1 GB of RAM
- 1 GB of hard disk space

VMD 1.8.7
VMD 1.8.7 offers you a perfect and extremely useful which is designed for modeling, visualization, and analysis of biological systems such as proteins, nucleic acids, lipid bilayer assemblies, etc. more>>
VMD 1.8.7 offers you a perfect and extremely useful which is designed for modeling, visualization, and analysis of biological systems such as proteins, nucleic acids, lipid bilayer assemblies, etc. It may be used to view more general molecules, as VMD can read standard Protein Data Bank (PDB) files and display the contained structure. VMD provides a wide variety of methods for rendering and coloring a molecule: simple points and lines, CPK spheres and cylinders, licorice bonds, backbone tubes and ribbons, cartoon drawings, and others. VMD can be used to animate and analyze the trajectory of a molecular dynamics (MD) simulation. In particular, VMD can act as a graphical front end for an external MD program by displaying and animating a molecule undergoing simulation on a remote computer.
Major Features:
- Support for all major computer platforms
- Support for multicore processors
- Support for GPU accelerated computation
- Many excellent VMD tutorials developed locally, and by the research community at large
- No limits on the number of molecules, atoms, residues or number of trajectory frames, except available memory
- Many molecular rendering and coloring methods
- Stereo display capability
- Extensive atom selection syntax for choosing subsets of atoms for display (includes boolean operators, regular expressions, and more)
- Support for over 60 molecular file formats and data types through an extensive library of built-in file reader/writer plugins and translators
- VMD includes a multiple sequence alignment plugin, a unified bioinformatics analysis environment that allows one to organize, display, and analyze both sequence and structure data for proteins and nucleic acids.
- Ability to export displayed graphics to files which may be processed by a number of popular ray tracing and image rendering packages, including POV-Ray, Rayshade, Raster3D, and Tachyon.
- User-extensible graphical and text-based user interfaces, built-on standard Tcl/Tk and Python scripting languages
- Extensions to the Tcl language which enable researchers to write their own routines for molecular analysis
- Modular, extensible source code using an object-oriented design in C++, with a programmers guide describing the program architecture and source code
- Integration with the program NAMD, a fast, parallel, and scalable molecular dynamics program developed in conjunction with VMD in the Theoretical and Computational Biophysics Group at the University of Illinois.
- VMD works well with projected display systems like the 3-D Projection Facility maintained by the Theoretical and Computational Biophysics Group.
- VMD can be used to concurrently display and interact with a running NAMD simulation.
- Using VMD as a Web/MIME Helper Application
- VMD script library
- Portable and Intuitive GUI
- Interfacing with MD Programs (i.e. SIGMA, NAMD)
- Interactive MD and VR Device Support
- Making Movies with VMD
Gerrit 2.0.17
Gerrit offers users a fantastic web based code review system, facilitating online code reviews for projects using the Git version control system. more>> Gerrit 2.0.17 offers users a fantastic web based code review system, facilitating online code reviews for projects using the Git version control system.
- Makes reviews easier by showing changes in a side-by-side display
- Allows inline comments to be added by any reviewer.
- Simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer. This functionality enables a more centralized usage of Git.
Enhancements:
- New Features:
-
- Add 'and '' shortcuts to PatchScreen: The keys 'and '' can be used to navigate to previous and next file in a patch set.
- GERRIT-241 Always show History panel in PatchScreen: The History panel in a patch screen is now always shown, even if there is only one patch set for this file. This permits viewing the number of comments more easily when navigating through files with ']'.
- Add 'Reply' button to comments on diff screen: There is now a 'Reply' button on the last comment, making it easier to create a new comment to reply to a prior comment on the same line. However, Gerrit still does not quote the prior comment when you reply to it.
- GERRIT-228 Apply syntax highlighting when showing file content: Files are now syntax highlighted. The following languages are supported, keyed from common file extensions: C (and friends), Java, Python, Bash, SQL, HTML, XML, CSS, JavaScript, and Makefiles.
- GERRIT-139 Allow mimetype.NAME.safe to enable viewing files: The new configuration option mimetype.NAME.safe can be set to enable unzipped download of a file, for example a Microsoft Word document.
- GERRIT-179 Display images inline for compare if mimetype.image/....: If mimetype.image/TYPE.safe is true images can be viewed inline in order to more easily visually compare them when an image is modified. Primarily useful for viewing icons in an icon library.
- File review status tracking: Per-user green check marks now appear when you view a file. This makes it easier to keep track of which patch set you last looked at, and within a patch set, which files you have looked at, and which ones you have not.
- GERRIT-247 Allow multiple groups to own a project: The owner of a project was moved from the General tab to the Access Rights tab, under a new category called Owner. This permits multiple groups to be designated the Owner of the project (simply grant Owner status to each group).
- Bug Fixes
-
- Permit author Signed-off-by to be optional: If a project requires Signed-off-by tags to appear the author tag is now optional, only the committer/uploader must provide a Signed-off-by tag.
- GERRIT-197 Move 'f' and 'u' navigation to PatchScreen: The 'f' and 'u' keystrokes in a patch screen were disabled when there were no differences to view. This was fixed, they are now always available.
- Remove annoying 'no differences' error dialog
- GERRIT-248 Fix server crash when showing no difference: The "No Differences" error dialog has been removed. Instead the "No Differences" message is displayed in the patch screen. This makes navigation through a pair of patch sets easier with ']' (no dialog stopping to interrupt you when you encounter a file that has not changed and has no comments).
- GERRIT-244 Always enable Save button on comment editors: Some WebKit based browsers (Apple Safari, Google Chrome) didn't always enable the Save button when selecting a word and deleting it from a comment editor. This is a bug in the browser, it doesn't send an event to the Gerrit UI. As a workaround the Save button is now just always enabled.
- GERRIT-206 Permit showing changes to gitlinks (aka submodule poin...: You can now view a change made to a gitlink (aka a submodule path).
- GERRIT-171 Don't crash the submit queue when a change is a criss-...: Instead of crashing on a criss-cross merge case, Gerrit unsubmits the change and attaches a message, like it does when it encounters a path conflict.
- Other Changes
-
- Start 2.0.17 development
- Move 'and '' key bindings to Navigation category
- Use gwtexpui 1.1.2-SNAPSHOT to fix navigation keys
- A few Javadocs and toString() methods for Patch and Pa...
- Merge change 10646
- Include the mime-util library to guess file MIME types
- Merge change 10667
- Added missing access method for accountPatchReviews
- Fix bad upgrade014_015 ALTER TABLE command
- GERRIT-245 Update PatchBrowserPopup when reviewed status is modif...
- Remove DiffCacheContent.isNoDifference
- Fix upgrade014_015 part1 scripts WHERE clause
- Don't allow users to amend commits made by Gerrit Code...
- Fix bad formatting in UnifiedDiffTable appendImgTag
- GERRIT-228 Add google-code-prettify 21-May-2009 version
- GERRIT-228 Load Google prettify JavaScript into client
- Fix formatting errors in PatchScreen
- Remove unused imports
- GERRIT-250 Fix syntax highlighting of multi-line comments
- Use gwtexpui 1.1.2

Navicat Oracle Lite 8.1.1
Navicat Oracle Lite offers users a useful and user-friendly Database administration tool for Oracle. more>>
Navicat Oracle Lite 8.1.1 offers users a useful and user-friendly Database administration tool for Oracle. It works with any Oracle Database Server from version 8i or above, and supports most of the latest Oracle objects features including Directory, Tablespace, Synonym, Materialized View, Trigger, Sequence, and Type, etc. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to Oracle.
With Navicat well-designed Graphical User Interface (GUI), Navicat for Oracle lets you quickly and easily create, organize, access and share information in a secure and easy way, taking Oracle administration to the next level.
Benefits:
- Latest Oracle Versions Support: Navicat for Oracle a powerful Oracle Database Server administration and development tool. Highlights of supported features:
-
- Support of Oracle versions 8.1.7 or above
- Support of Multiple Connections to local or remote Oracle Server
- Support of Unicode / Character Set
- Support of Triggers and Foreign Keys
- Support of Views and Stored Procedures creation
- Support of Oracle Objects like Directory, Synonym and Materialized View
- Additional Connection Options
-
- Native Connection Options: Navicat for Oracle offers two connection modes to the Oracle server: connection through the Oracle Call Interface (OCI) in Basic mode and alias entry from a tnsnames.ora file in TNS mode.
- Other Connection Options: You can set the role for user to connect with Default, SYSOPER or SYSDBA system privilege. Besides, you can pass control of user authentication to the operating system by means of OS authentication option.
- Support of SSH Tunnel: Establish a secure SSH session through SSH Tunneling in Navicat. Enjoy a strong authentication and secure encrypted communications between two hosts. The authentication method can use a password or public / private key pair.
- Comprehensive Management of Oracle objects
-
- Create, edit and drop table's fields, indexes, foreign keys, uniques, checks, triggers and privileges: With Table Designer the basic Navicat for Oracle tool for working with tables, you can create, edit and drop table's fields, indexes, foreign keys, checks, triggers, privileges and much more.
- Support of tablespace, package, sequence, synonym, trigger, type and more: Navicat allows you to create, edit and drop directories, tablespaces, publice database links, public synonyms, database links, indexes, materialized views, materialized view logs, packages, sequences, synonyms, triggesr and more.
- SQL Preview: The SQL Preview area shows you SQL representation of the oracle objects you are creating. This ability allows you to preview SQL before execution.
- Dump object definition as sql file: Backup object definition and data with ease by dumping as sql file.
- View Schema / Table Structure: Present the schema / table definition by printing their structures in Navicat. Understand the respective object structure fully at a glance.
- Diversified Import and Export Competence
-
- Import data up to 5 most popular formats including XLS, CSV, TXT, DBF and XML: Import Wizard allows you to import data into a table from diverse format. On top of that, you can save your settings as an import profile for setting schedule.
- Export Data to different file formats: TXT, CSV, DBF and XML: Likewise, Export Wizard allows you to export data into various format. Save your settings as an export profile for setting schedule.
- Powerful Data Manipulation Tools
-
- Support of Foreign Key Data Selection: With the GUI tool Foreign Key Data Selection, you can locate the foreign key values from the reference table. Stop shifting the view to a master table to look for the available values!
- Data and Structure Synchronization: You can transfer data from one Oracle schema to another with detailed analytical process. Likewise, you can compare and modify the table structures. For both Data and Structure Synchronization, the target schema can be on the same server as the source or on another server.
- Support of Data Transfer between local / remote Oracle schemas: Transfer tables/views/stored procedures/functions/sequences from one Oracle schema to another, or to a plain text file.
- Create Schedule for Import / Export, Data Transfer, Saved Queries and Data Synchronization: Create a batch job for setting schedule to execute at one or more regular intervals, beginning and ending at a specific date and time. Batch job can be created for Query, Data Transfer, Data Synchronization, Import and Export.
- Powerful Security Management
-
- Visual User Manager: Navicat provides users a visual tool for user management. You can easily add, delete, edit users / roles, and grant privileges on the selected schemas, tables / views, fields and stored procedures.
- Well-Designed Visual Builder / Editor
-
- Visual Query / View Builder: Visual Query / View Builder which is divided into two portions: the upper Graphical View, and the lower Syntax View, allows you to create and edit queries / views visually without knowledge of SQL.
- Query Editor: It allows you to create and edit SQL text for a query, prepare and execute selected queries.
- Support of Parameter Query: Set query parameters to add variable values to a query each time you run it.
- More great features
-
- Virtual Grouping: Have a better organization over objects in Navicat. You can categorize objects into groups with the Virtual Grouping feature. Virtual Grouping can be applied on Connection, Table, View, Stored Procedure/Function and Schedule.
- Server Monitor: Select the servers that you want to monitor by checking them in the checklist box of the Server Monitor Window. Click on either Process List, Variables or Status icon to show and/or modify the properties of Oracle servers.
- SQL Console: To use a command-line interface, you can open SQL Console in Navicat. It provides you an interactive text-based screen to query input and result output from database.
- Tabbed Windows: Customize your window behaviour style. Navicat supports you of dragging windows in and out of the tabbed windows.
-
- Oracle Objects Management
- Support Oracle servers 8i or above
- Create/drop schemas
- Support all Oracle objects: tables (Normal, External and Index Organized), views, stored procedures/functions
- Support all subobjects: fields, indices, foreign keys, uniques, checks and triggers
- Managing tablespaces, public database links and public synonyms
- Managing database links, indices, java, materialized views, materialized view logs, packages, sequences, synonyms, triggers, types, XML Schema and Recycle Bin
- Support of physical attributes
- Support of character set and unicode
- Connection Management and Navigation
- Multiple local/remote Oracle server connections
- Support of Basic Connection
- Support of TNS Connection
- Connection to Oracle server through SSH
- Data Viewer and Editor
- Grid view
- TEXT, Hex and BLOB/BFile viewer/editor
- Copying and pasting selected records
- Customize display formats
- Incremental search, sorting and formatting table grid
- Ability to show/hide ROWID
- Ability to set number of records showing on each page
- SQL Processing
- Ability to create parameter queries
- Multiple SQL editors with syntax highlighted feature
- Ability to preview SQL before execution
- Server Security and Maintenance Services
- Visual user manager to administer users, roles and privileges
- Maintaining tables like Table Lock, Row Movement, Shrink Space, Table Move, Validate Table Structure and Collect Table Statistics
- Other Useful Features
- Empty/truncate tables
- Backing up schema/table to SQL script
- Executing SQL script
- Create table/view shortcut on desktop
- Support of docking/tab windows
- Ability to run profile from command line
- Log files: keep track on the actions that have been performed in Navicat
- Ability to copy Connection Information into Clipboard
- Improvements:
-
- Support choosing server version for SQL to be generated in Data Transfer, support more transfer options.
- Added connection tree to support batch jobs from different databases.
- Compatibility and speed improvement in exported excel format.
- Notification email in batch job is now delivered in MIME format.
- Allow setting fonts in Data Grid, and apply Editor Font to View/Edit Text.
- Added DateTime picker in Table View for Oracle server.
- Bug Fixes:
-
- Navicat could not quit normally in some senarios.
- View Builder did not display properly.
- Slow problem when opening Query View.
- Improper ordering of the generated SQL during Structure Synchronization.
- Mac OS X 10.3 Panther, 10.4 Tiger or 10.5 Leopard
- Universal Binary

Navicat PostgreSQL Manager Lite 8.1.1
Navicat PostgreSQL Manager Lite is an extremely useful Database administration and development tool for PostgreSQL. more>>
Navicat PostgreSQL Manager Lite 8.1.1 is an extremely useful Database administration and development tool for PostgreSQL. It works with any PostgreSQL Database Server from version 8.0 or above, and supports most of the latest PostgreSQL features including Trigger, Function, View, and Manage User, etc. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to PostgreSQL.
With Navicat well-designed Graphical User Interface (GUI), Navicat for PostgreSQL lets you quickly and easily create, organize, access and share information in a secure and easy way, taking PostgreSQL administration to the next level
Benefits:
- Latest PostgreSQL Versions Support: Navicat PostgreSQL a powerful PostgreSQL Database Server administration and development tool. Highlights of supported features:
-
- Support of PostgreSQL versions from 8.0 or above
- Support of Multiple Connections to local or remote PostgreSQL Server
- Support of Unicode / Character Set
- Support of PostgreSQL Views and Functions creation
- Support of Triggers
- Support of Foreign Keys
- Additional Connection Options
-
- Support of SSH Tunnel: Establish a secure SSH session through SSH Tunneling in Navicat. Enjoy a strong authentication and secure encrypted communications between two hosts. The authentication method can use a password or public / private key pair.
- Support of HTTP Tunnel: Navicat comes with you HTTP Tunneling while your ISPs do not allow direct connections to their PostgreSQL server but allows establishing HTTP connections. HTTP Tunneling is a method for connecting to a PostgreSQL server that uses the same protocol (http://) and the same port (port 80) as a webserver does.
- Comprehensive Management of PostgreSQL objects
-
- Create, edit and drop table's fields, indexes, foreign keys, uniques, checks, rules, triggers and privileges: With Table Designer the basic Navicat PostgreSQL tool for working with tables, you can create, edit and drop table's fields, indexes, foreign keys, checks, rules, triggers, privileges and much more.
- Dump object definition as sql file: Backup object definition and data with ease by dumping as sql file.
- View Database / Table Structure: Present the database / table definition by printing their structures in Navicat. Understand the respective object structure fully at a glance.
- Diversified Import and Export Competence
-
- Import data up to 5 most popular formats including XLS, CSV, TXT, DBF and XML
- Import Wizard allows you to import data into a table from diverse format. On top of that, you can save your settings as an import profile for setting schedule.
- Export Data to different file formats: TXT, CSV, DBF and XML
- Likewise, Export Wizard allows you to export data into various format. Save your settings as an export profile for setting schedule.
- Export data and create records as INSERT statements in sql file
- During Data Transfer, you can choose to export data as sql file with record options like complete insert statements etc.
- Powerful Data Manipulation Tools
-
- Support of Foreign Key Data Selection: With the GUI tool Foreign Key Data Selection, you can locate the foreign key values from the reference table. Stop shifting the view to a master table to look for the available values!
- Data and Structure Synchronization: Navicat for PostgreSQL allows you to transfer data from one PostgreSQL database to another with detailed analytical process. Likewise, you can compare and modify the table structures. For both Data and Structure Synchronization, the target database can be on the same server as the source database or on another PostgreSQL server.
- Support of Data Transfer between local / remote PostgreSQL databases: Transfer tables / views / functions from one PostgreSQL database to another PostgreSQL database, or to a plain text file.
- Support of Backup and Restore PostgreSQL databases: Regular backup on database is important to users. Backup / restore all tables and records, views and functions for your PostgreSQL database using Navicat. You can also schedule backups between databases.
- Create Schedule for Backup, Import / Export, Data Transfer, Saved Queries and Data Synchronization: Create a batch job for setting schedule to execute at one or more regular intervals, beginning and ending at a specific date and time. Batch job can be created for Query, Backup, Data Transfer, Data Synchronization, Import and Export.
- Powerful Security Management
-
- Visual User Manager: Navicat provides users a visual tool for user management. You can easily add, duplicate, delete users, and edit global user privileges, and grant privileges on the selected databases, schemas, tables / views and tablespaces / functions.
- Well-Designed Visual Builder / Editor
-
- Visual Query / View Builder: Visual Query / View Builder which is divided into two portions: the upper Graphical View, and the lower Syntax View, allows you to create and edit queries / views visually without knowledge of SQL.
- Query Editor: It allows you to create and edit SQL text for a query, prepare and execute selected queries.
- Support of Parameter Query: Set query parameters to add variable values to a query each time you run it.
- More great features
-
- Virtual Grouping: Have a better organization over connections in Navicat. You can categorize them into groups with the Virtual Grouping feature.
- Server Monitor: Select the servers that you want to monitor by checking them in the checklist box of the Server Monitor Window. Click on either Process List, Variables or Status icon to show and / or modify the properties of PostgreSQL servers.
- SQL Console: To use a command-line interface, you can open SQL Console in Navicat. It provides you an interactive text-based screen to query input and result output from database.
- Tabbed Windows: Customize your window behaviour style. Navicat supports you of dragging windows in and out of the tabbed windows.
- Text / Blob View: Navicat provides Text / Blob Viewer and Editor to view and edit TEXT / BLOB fields content. The editor allows you to view, update, insert or delete data in a table.
Major Features:
- PostgreSQL Objects Management
- Supports PostgreSQL Servers 7.3 or above
- Create /drop databases and schemas
- Support all PostgreSQL objects: tables, views and functions
- Support all subobjects: fields, indices, foreign keys, uniques, checks, rules and triggers
- Managing tablespace
- Managing cast and languages
- Managing aggregates, conversions, domains, trigger functions, operators and classes, sequences and types
- Support of character set and unicode
- Connection Management and Navigation
- Multiple local/remote PostgreSQL server connections
- Connection to PostgreSQL Server through SSH
- Connection to PostgreSQL Server through HTTP
- Support SSL secure connection
- Customize selected databases to work with
- Data Viewer and Editor
- Grid view
- Text, Hex and BLOB viewer/editor
- Copying and pasting selected records
- Customize display formats
- Incremental search, sorting and formatting table grid
- Support of raw mode edit: apply PostgreSQL built-in function
- Ability to set number of records showing on each page
- SQL Processing
- Ability to preview SQL before execution
- SQL console
- Backup/Restore
- Backing up/restoring database
- Restoring database with chosen database objects
- Converting backup file into SQL script
- Compressing/Decompressing Backup files
- Backing up database/table to SQL script
- Executing SQL script
- Server Security and Maintenance Services
- Visual user manager to administer users, groups (roles) and privileges
- Analyzing, vacuuming and reindexing tables
- Other Useful Features
- Duplicate/empty/ truncate tables
- Create table/view shortcut on desktop
- Support of docking/tab windows
- Support of virtual grouping: provide logical organization over connections
- Log files: keep track on the actions have been performed in Navicat
- Ability to copy Connection Information into Clipboard
Enhancements:
- Improvements:
-
- Support of PostgreSQL server version 8.4.
- Support choosing server version for SQL to be generated in Data Transfer, support more transfer options.
- Added connection tree to support batch jobs from different databases.
- Compatibility and speed improvement in exported excel format.
- Notification email in batch job is now delivered in MIME format.
- Allow setting fonts in Data Grid, and apply Editor Font to View/Edit Text.
- Bug Fixes:
-
- Navicat could not quit normally in some senarios.
- View Builder did not display properly.
- Slow problem when opening Query View.
- Improper ordering of the generated SQL during Structure Synchronization.
- Field lengths are not synchronized correctly for PostgreSQL server.
-
Requirements: Mac OS X 10.4 Tiger or 10.5 Leopard

Enigmail 0.96
Encrypt & sign emails with GPG in Thunderbird and Seamonkey. more>>
Enigmail 0.96 is a useful tool allowing users to access the authentication and encryption features provided by GnuPG. Sending and receiving encrypted and digitally signed email gets just simple using Enigmail. When starting it for the first time, you are guided through the basic setup.
Major Features:
- Tightly integrated suport for OpenPGP with the Mozilla Thunderbird and Mozilla Seamonkey mail clients
- Encrypt/sign mail when sending, decrypt/authenticate received mail
- Support for inline-PGP (RFC 4880) and PGP/MIME (RFC 3156)
- Per-Identity based encryption and signing defaults
- Per-Recipient rules for automated key selection, and enabling/disabling encryption and signing
- OpenPGP key management user interface
- Automatically encrypt or sign attachments for inline PGP messages
- Powerful GUI for easy configuration and OpenPGP key management
- Detailed user preferences for advanced configuration
- Integrated OpenPGP PhotoID viewer
- Supports OpenPGP key retrieval via proxy servers
- Integrates with GnuPG, version 1.4.x and 2.0.x
- Supports Mozilla's Multiple Identities feature
- Available for: Windows / Mac OSX / Linux x86-32 (all in one official release file), and contributed / distribution builds for other operating systems such as Linux, Solaris, *BSD and OS/2)
- Many Language Packs, (mostly) included in the official releases, and available separately for localization of contributed builds
Enhancements:
- Contains improvements to the user interface and
- Addresses more than 80 bugs.
JHOVE 1.3
Provides functions to perform format-specific identification JHOVE provides functions to perform format-specific identification, validation, and characterization of digital objects more>> Provides functions to perform format-specific identification
JHOVE provides functions to perform format-specific identification, validation, and characterization of digital objects.
The set of characteristics reported by JHOVE about a digital object is known as the objects representation information, a concept introduced by the Open Archival Information System (OAIS) reference model [ISO/IEC 14721].
The standard representation information reported by JHOVE includes: file pathname or URI, last modification date, byte size, format, format version, MIME type, format profiles, and optionally, CRC32, MD5, and SHA-1 checksums [CRC32, MD5, SHA-1].
Additional media type-specific representation information is consistent with the NISO Z39.87 Data Dictionary designed for digital still images and the draft AES metadata standard for digital audio.
Enhancements
- According to the PDF 1.6 specification, table 3.4, parameters for a
- stream filter can be either a dictionary or the null object. The null
- object was treated as an error; it is now allowed.
- Object stream handling was seriously buggy, causing rejection of
- well-formed and valid files; its better now.
- In PDF 1.4, an outline dictionary unconditionally must have a "First"
- and a "Last" entry. JHOVE follows this requirement, declaring a file
- invalid if it isnt met. However, PDF 1.6 relaxes the requirement,
- applying it only "if there are any open or closed outline entries."
- Thus, an empty outline dictionary with no "First" or "Last" entry
- is valid. It is now accepted (for all PDF versions).
- If a page number tree in a PDF file is missing an expected "Nums"
- entry, this was being reported as an invalid date. A more appropriate
- error message is now given.
MxGraph 1.0.0.2
Javascript library that uses built-in browser capabilities to provide an interactive drawing and diagramming solution more>>
Based on the latest web technologies, mxGraph is the ultimate solution for drawing diagrams in a browser. Using open standards, mxGraph does not depend on any third-party plugins and proprietary software.
mxGraph works straight out of the box, no client configuration, no plugin installation, no platform dependencies - it just works! mxGraph outperforms all existing solutions in startup time, functionality and interactivity.
Differentiate your product in the marketplace by enabling your customers to draw and share complex diagrams through a web browser, across every platform.
Major Features:
- Centralised updating managed at the server
- No client plug-ins or installation required
- Deployment using Java, .NET, PHP, static HTML and more
- Easy configuration of the application using XML
- User interface is HTML and the data is exchanged in XML
- Java, .NET or PHP backend for concurrent diagram editing
Enhancements:
- Adds checkType hook in mxMultiplicity
- Fixes position for children of relative edge children
- Fixes origin for relative edge children in mxGraphView.validatePoints
- Replaces double with single quotation marks in mxUtils for JavaScript
- Uses java Serialized Object Mime Type in mxGraph Transferable for Java
- Checks editor size in mxCellEditor.getEditorBounds for Java
- Adds scale argument in mxCellEditor.getEditorBounds for Java
- Fixes preview if drag disabled in mxGraph Component for Java
- Adds mxGraph.zoom in JavaScript, mxGraph Component.zoom in Java
- Fixes minor bug in mxGraphView.set Scale for PHP
- Resets index in mxCellHandler.reset for Java
Requirements:
- Java 5.0 and later
- .NET 1.1 and later
- PHP 5.0 and later (with libxml for the I/O module, libgd for creating bitmaps).
MediaWiki 1.15
Collaborative editing software that runs Wikipedia, the free encyclopedia, and other projects. MediaWiki is an extremely powerful, scaleable software and a feature-rich wiki implementation, that uses more>> Collaborative editing software that runs Wikipedia, the free encyclopedia, and other projects.
MediaWiki is an extremely powerful, scaleable software and a feature-rich wiki implementation, that uses PHP to process and display data stored in its MySQL database.
MediaWiki is designed to handle a large number of users and pages without imposing too rigid a structure or workflow. It is licensed under the GNU General Public License (GPL).
Pages use MediaWikis wikitext format, so that users without knowledge of XHTML or CSS can edit them easily.
When a user submits an edit to a page, MediaWiki writes it to the database, but without deleting the previous versions of the page, thus allowing easy reverts in case of vandalism or spamming.
MediaWiki can manage image and multimedia files, too, which are stored in the filesystem. For large wikis with lots of users, MediaWiki supports caching and can be easily coupled with Squid proxy server software.
System requirements:
- PHP 5 (5.1 recommended). PHP 4 is no longer supported.
- MySQL 3.23.x is no longer supported; some older hosts may need to upgrade. At this time we still recommend 4.0, but 4.1/5.0 will work fine in most cases.
- Apache
Enhancements
- Removed category redirect feature, implementation was incomplete.
- (bug 18846) Remove update_password_format(), unnecessary, destroys all passwords if a wiki with $wgPasswordSalt=false is upgraded with the web installer.
- (bug 19127) Documentation warning for PostgreSQL users who run update.php: use the same user in AdminSettings.php as in LocalSettings.php.
- Fixed possible web invocation of some maintenance scripts, due to the use of include() instead of require(). A full exploit would require a very strange web server configuration.
- Localisation updates.
Configuration changes:
- Added $wgNewPasswordExpiry, to specify an expiry time (in seconds) to temporary passwords
- Added $wgUseTwoButtonsSearchForm to choose the Search form behavior/look
- Added $wgNoFollowDomainExceptions to allow exempting particular domain names from rel="nofollow" on external links
- (bug 12970) Brought back $wgUseImageResize.
- Added $wgRedirectOnLogin to allow specifying a specifc page to redirect users to upon logging in (ex: "Main Page")
- Add $wgExportFromNamespaces for enabling/disabling the "export all from namespace" option (disabled by default)
New features:
- (bug 2242) Add an expiry time to temporary passwords
- (bug 9947) Add PROTECTIONLEVEL parser function to return the protection level for the current page for a given action
- (bug 17002) Add &minor= and ?mary= as parameters in the url when editing, to automatically add a summary or a minor edit.
- (bug 16852) padleft and padright now accept multiletter pad characters
- When using UserCreateForm hook to add new checkboxes into Special:UserLogin/signup, the messages can now contain HTML to allow hyperlinking to the sites Terms of Service page, for example
- Add new hook UserLoadFromDatabase that is called while loading a user from the database.
- (bug 17045) Options on the block form are prefilled with the options of the existing block when modifying an existing block.
- (bug 17055) "(show/hide)" links to Special:RevisionDelete now use a CSS class rather than hardcoded HTML tags
- Added new hook WantedPages:getSQL into SpecialWantedpages.php to allow extensions to alter the SQL query which is used to get the list of wanted pages
- (bugs 16957/16969) Add show/hide to preferences for RC patrol options on specialpages
- (bug 11443) Auto-noindex user/user talk pages for blocked user
- (bug 11644) Add $wgMaxRedirects variable to control how many redirects are recursed through until the "destination" page is reached.
- Add $wgInvalidRedirectTargets variable to prevent redirects to certain special pages.
- Use HTML5 rel attributes for some links, where appropriate
- Added optional alternative Search form look - Go button & Advanced search link instead of Go button & Search button
- (bug 2314) Add links to user custom CSS and JS to Special:Preferences
- More helpful error message on raw page access if PHP_SELF isnt set
- (bug 13040) Gender switch in user preferences
- (bug 13040) {{GENDER:}} magic word for interface messages
- (bug 3301) Optionally sort user list according to account creation time
- Remote description pages for foreign file repos are now fetched in the content language.
- (bug 17180) If $wgUseFileCache is enabled, $wgShowIPinHeader is automatically set to false.
- (bug 16604) Mark non-patrolled edits in feeds with "!"
- (bug 16604) Show title/rev in IRC for patrol log
- (bug 16854) Whether a page is being parsed as a preview or section preview can now be determined and set with ParserOptions.
- Wrap message confirmemail_pending into a div with CSS classes "error" and "mw-confirmemail-pending"
- (bug 8249) The magic words for namespaces and pagenames can now be used as parser functions to return the desired namespace or normalized title/title part for a given title.
- (bug 17110) Styled #mw-data-after-content in cologneblue.css to match the rest of the font
- (bug 7556) Time zone names in signatures lack i18n
- (bug 3311) Automatic category redirects
- (bug 17236) Suppress watch user page link for IP range blocks
- Wrap message searchresulttext (Special:Search) into a div with class "mw-searchresult"
- (bug 15283) Interwiki imports can now fetch included templates
- Treat svn:// URLs as external links by default
- New function to convert namespace text for display (only applies on wiki with LanguageConverter class)
- (bug 17379) Contributions-title is now parsed for magic words.
- Preprocessor output now cached in memcached.
- (bug 14468) Lines in classic RecentChanges and Watchlist have classes "mw-line-odd" and "mw-line-even" to make styling using css possible.
- (bug 17311) Add a note beside the gender selection menu to tell users that this information will be public
- Localize time zone regions in Special:Preferences
- Add NUMBEROFACTIVEUSERS magic word, which is like NUMBEROFUSERS, but uses the active users data from site_stats.
- Add a tag on redirected page views
- Replace hardcoded ... as indication of a truncation with the ellipsis message
- Wrap warning message editinginterface into a div with class mw-editinginterface
- (bug 17497) Oasis opendocument added to mime.types
- Remove the link to Special:FileDuplicateSearch from the "file history" section of image description pages as the list of duplicated files is shown in the next section anyway.
- Added $wgRateLimitsExcludedIPs, to allow specific IPs to be whitelisted from rate limits.
- (bug 14981) Shared repositories can now have display names, located at Mediawiki:Shared-repo-name-REPONAME, where REPONAME is the name in $wgForeignFileRepos
- Special:ListUsers: Sort list of usergroups by alphabet
- (bug 16762) Special:Movepage now shows a list of subpages when possible
- (bug 17585) Hide legend on Special:Specialpages from non-privileged users
- Added $wgUseTagFilter to control enabling of filter-by-change-tag
- (bug 17291) MediaWiki:Nocontribs now has an optional $1 parameter for the username
- Wrap special page summary message $specialPageName-summary into a div with class mw-specialpage-summary
- $wgSummarySpamRegex added to handle edit summary spam. This is used *insteadof $wgSpamRegex for edit summary checks. Text checks still use $wgSpamRegex.
- New function to convert content text to specified language (only applies on wiki with LanguageConverter class)
- (bug 17844) Redirect users to a specific page when they log in, see $wgRedirectOnLogin
- Added a link to Special:UserRights on Special:Contributions for privileged users
- (bug 10336) Added new magic word {{REVISIONUSER}}, which displays the editor of the displayed revisions author user name
- LinkerMakeExternalLink now has an $attribs parameter for link attributes and a $linkType parameter for the type of external link being made
- (bug 17785) Dynamic dates surrounded with a tag, fixing sortable tables with dynamic dates.
- (bug 4582) Provide preference-based autoformatting of unlinked dates with the dateformat parser function.
- (bug 17886) Special:Export now allows you to export a whole namespace (limited to 5000 pages)
- (bug 17714) Limited TIFF upload support now built in if tif extension is enabled. Image width and height are now recognized, and when using ImageMagick, optional flattening to PNG or JPEG for inline display can be enabled by setting $wgTiffThumbnailType
- Renamed two input IDs on Special:Log from page and user to mw-log-page and mw-log-user, respectively
- Added $wgInvalidUsernameCharacters to disallow certain characters in usernames during registration (such as "@")
- Added $wgUserrightsInterwikiDelimiter to allow changing the delimiter used in Special:UserRights to denote the user should be searched for on a different database
- Add a class if missingsummary is triggered to allow styling of the summary line
Bug fixes:
- (bug 16968) Special:Upload no longer throws useless warnings.
- (bug 17000) Special:RevisionDelete now checks if the database is locked before trying to delete the edit.
- (bug 16852) padleft and padright now handle multibyte characters correctly
- (bug 17010) maintenance/namespaceDupes.php now add the suffix recursively if the destination page exists
- (bug 17035) Special:Upload now fails gracefully if PHPs file_uploads has been disabled
- Fixing the caching issue by using -{T|xxx}- syntax (only applies on wiki with LanguageConverter class)
- Improving the efficiency by using -{A|xxx}- syntax (only applies on wiki with LanguageConverter class)
- (bug 17054) Added more descriptive errors in Special:RevisionDelete
- (bug 11527) Diff on page with one revision shows "Next" link to same diff
- (bug 8065) Fix summary forcing for new pages
- (bug 10569) redirects to Special:Mypage and Special:Mytalk are no longer allowed by default. Change $wgInvalidRedirectTargets to re-enable.
- (bug 3043) Feed links of given page are now preceded by standard feed icon
- (bug 17150) escapeLike now escapes literal properly
- Inconsistent use of sysop, admin, administrator in system messages changed to administrator
- (bug 14423) Check block flag validity for block logging
- DB transaction and slave-lag avoidance tweaks for Email Notifications
- (bug 17104) Removed [Mark as patrolled] link for already patrolled revisions
- (bug 17106) Added redirect=no and mw-redirect class to redirects at "user contributions"
- Rollback links on new pages removed from "user contributions"
- (bug 15811) Re-upload form tweaks: license fields removed, destination locked, comment label uses better message
- Whole HTML validation ($wgValidateAllHtml) now works with external tidy
- Parser tests no longer fail when $wgExternalLinkTarget is set in LocalSettings
- (bug 15391) catch DBQueryErrors on external storage insertion. This avoids error messages on save were the edit in fact is saved.
- (bug 17184) Remove duplicate "z" accesskey in MonoBook
- Parser tests no longer fail when $wgAlwaysUseTidy is set in LocalSettings.php
- Removed redundant dupe warnings on reupload for the same title. Dupe warnings for identical files at different titles are still given.
- Add change tagging facility, where changes can be tagged internally with certain designations, which are displayed on various summaries of changes, and the entries can be styled with CSS.
- (bug 17207) Fix regression breaking category page display on PHP 5.1
- Categoryfinder utility class no longer fails on invalid input or gives wrong results for category names that include pseudo-namespaces
- (bug 17252) Galician numbering format
- (bug 17146) Fix for UTF-8 and short word search for some possible MySQL configs
- (bug 7480) Internationalize database error message
- (bug 16555) Number of links to mediawiki.org scaled back on post-installation
- (bug 14938) Removing a section no longer leaves excess whitespace
- (bug 17304) Fixed fatal error when thumbnails couldnt be generated for file history
- (bug 17283) Remove double URL escaping in show/hide links for log entries and RevisionDeleteForm:__construct
- (bug 17105) Numeric table sorting broken
- (bug 17231) Transcluding special pages on wikis using language conversion no longer affects the page title
- (bug 6702) Default system messages updated/improved
- (bug 17190) User ID on preference page no longer has delimeters
- (bug 17341) "Powered by MediaWiki" should be on the left on RTL wikis
- (bug 17404) "userrights-interwiki" right was missing in User:$mCoreRights
- (bug 7509) Separation strings should be configurable
- (bug 17420) Send the correct content type from action=raw when the HTML file cache is enabled.
- (bug 12746) Do not allow new password e-mails when wiki is in read-only mode
- (bug 17478) Fixed a PHP Strict standards error in maintenance/cleanupWatchlist.php
- (bug 17488) RSS/Atom links in left toolbar are now localized in classic skin
- (bug 17472) use print