transactional leadership
JournaledFile 1.0
JournaledFile is a library that supports journaled transactional files more>>
JournaledFile allows writes to be done to a file without risking file corruption in the event that the process or OS crashes or the power goes out.
Main features:
- for each write, it logs the file position, length of write and the data to a log file (file.log)
- when JFile_sync() is called:
- it sets the log header status to "committed"
- the log writes are performed on output file
- the log file is truncated and its status set to "uncommitted"
- when JFile is opened, if it finds a log file then:
- if the log status is "committed":
- it assumes the log did not complete its write so it
- writes the log to the file again and removes the log and lock
- if the log status is "uncommitted":
- it assumes the log is not complete and removes it.
Artifactory 2.0.6
Free and open source Maven enterprise repository Artifactory offers advanced proxying, security and caching facilities to provide a robust, independent and reproducible build environment when using more>> Free and open source Maven enterprise repository
Artifactory offers advanced proxying, security and caching facilities to provide a robust, independent and reproducible build environment when using Maven.
Artifactory is being used by clients ranging from small startup teams to international corporate teams employing distributed development, thus improving the development experience for tens of thousands of developers. Artifactory exposes a robust artifacts management platform using rich Ajax web UI and can be run out-of-the-box with a simple "unzip and launch".
Main features:
- Runs out of the box
- Easy installation as a Unix Service
- Easy sensible configuration of local and remote (proxied) repositories
- Full system import/export (ala JIRA/Confluence) for smooth relocation and easy version updates
- Scheduled repository backups with selective content
- Import/Export and backup to standard Maven 2 file-based repositories
- Smart repository aggregation and routing logic, including merged artifact metadata
- Centrally controlled snapshots policy (unique/non-unique or end-user defined)
- Automatic cleanup of unique snapshots
- Strong security model with repository/path based permissions for administrators, deployers and viewers
- Support for anonymous readers
- Audit log for repository operations
- Transactional artifact deployments
- Extremely fast artifact searches!
- Strong deployment-time consistency checks for avoiding corrupt artifacts
- Concurrent access locks to prevent data corruption
- Ajax web UI
- Deploy artifacts through a convenient web interface!
- Complete WebDAV support for browsing, listing, deploying and undeploying
- Advanced cache tuning and support for repository blackout and offline mode
- Network proxies support, including NTLM proxies
- Support for "mesh" deployment of interconnected repositories
System requirements:
-
-
Enhancements
- Built-in UI configurable and UI-testable LDAP integration (other integrations possible via Spring Security).
- No more clear text passwords in your Maven settings.xml - Artifactory offers auto-generated encrypted passwords, which is extremely important when using external authentication.
- Ability to undeploy complete versions and remove in one go hundreds of old artifacts deployed from the same module.
- Sophisticated role-based access control (RBAC), e.g - you can allow only certain groups to see sources.
- Security domain level administrators.
- Real time view for the effective RBAC on a selected artifact/node.
- Ability to deploy a bundle of zipped artifacts and import a Maven local repository into Artifactory.
- True undeploy with immediate Maven metadata updates.
- Real time tailing of server logs from the UI.
- Remote checksum validations.
- Built-in support for MySql.
- Tomcat install script has been Improved and the ability to run as a Windows Service.
- Special support to run under IBM WebSphere.
- An artadmin command-line tool for performing various administrative tasks.
- The underlying architecture to support high volumes of concurrent
- downloads and uploads have been updated.
- Help on nearly every UI element.
- Improved, complete user guide.

Knights and Merchants 1.1
Thy kingdom is in grave danger. more>>
Thy kingdom is in grave danger. A captain of the palace guard, though hath faithfully served thy King for many years. But, alas, pain and sorrow hath much aged thy brave sovereign. For rebellious forces under the dastardly leadership of the rogue prince have gathered to bring about his downfall. The raging conflict hath laid waste large swathes of the kingdom?s once bountiful provinces.
MySQL Cluster 7.0.6
A real-time open source transactional database designed for fast, always-on access to data under high throughput conditions more>> <<less
Oracle Berkeley DB Java Edition 3.3.82
High performance transactional storage engine. more>> High performance transactional storage engine.
Oracle Berkeley DB Java Edition is a high performance, transactional storage engine written entirely in Java. Like the highly successful Berkeley DB product, Berkeley DB Java Edition executes in the address space of the application, without the overhead of client/server communication.
It stores data in the applications native format, so no runtime data translation is required. Berkeley DB Java Edition supports full ACID transactions and recovery. It provides an easy-to-use, programmatic interface, allowing developers to store and retrieve information quickly, simply and reliably.
Main features:
- Local, in-process data storage.
- Schema-neutral, application native data storage.
- Keyed and sequential data retrieval.
- Easy-to-use Java Collections API.
- Persistence API for accessing Java objects.
- Single process, multi-threading model.
- Record level locking for high concurrency.
- Support for secondary indexes.
- In-memory, on disk or both.
- Configurable background cleaner threads re-organize data and optimize disk use.
- Full ACID compliance.
- Selectable isolation levels and durability guarantees, configurable on a per-transaction basis.
- Managed transactions using the Java Transaction API (JTA).
- J2EE application server integration using J2EE Connector Architecture(JCA).
- Provides support for monitoring, auditing and administration using the Java Management Extensions (JMX).
- Catastrophic and routine failure recovery modes.
- Timeout based deadlock detection.
- Hot and cold backups, log file compaction, and full database dumps.
- 100% pure Java for portability and ease of development.
- Single JAR file - easy to install, runs in the same JVM as the application.
- Java 1.4.2 or later Standard Edition JVM required.
- Programmatic administration and management-zero human administration.
- API for routine administrative functions.
- Small footprint 772KB.
- Scalable to terabytes of data, millions of records.
- Source code, test suite included.
System requirements:
-
Enhancements
- Fix a bug that somtimes causes two log cleaner threads (when multiple threads are configured or multiple app threads call Environment.cleanLog) to select the same file to clean. This can result in two attempts to delete the log file after cleaning. The second attempt causes an exception to be traced repeatedly, but no other side effect. The problem is transient and goes away if the Environment is closed and re-opened. An example of the exception is below. The symptom is that this exception occurs repeatedly, and the file is not present.
- Fix a bug that could cause a LogFileNotFoundException when using an XAEnvironment, if a prepared transaction is not ended prior to a crash and then the prepared transaction is aborted after recovering from a crash. [#17022] (3.3.79)
- Fix a bug that prevented deferred-write record deletions from being made durable by Database.sync, if a crash occurs after Database.sync but prior to the next checkpoint. Under rare circumstances this could also result in a LogFileNotFoundException later when accessing the deleted entry. [#16864] (3.3.78)
- Fix a bug that prevents log cleaning from functioning properly when a temporary DB (DatabaseConfig.setTemporary) is large enough to overflow the JE cache. Also fix a bug that could in rare cirumstances cause an endless loop while performing log cleaning. [#16928] (3.3.78)
- Fix a bug that caused an infinite loop under certain timing dependent circumstances when using EnvironmentConfig.setSharedCache(true). This bug was reported in two different forum posts. Thanks to Kevin Jackson and Vyacheslav Lukianov for reporting it! [#16882] (3.3.78)
- Improve output of partial information in DatabaseEntry.toString. Thanks to archie172 for reporting this on OTN. [#16929] (3.3.78)
- Fix a bug in SecondaryCursor.dup that required the cursor to be initialized. This method, like Cursor.dup, may now be called whether the cursor is initialized or not. Thanks to archie172 for reporting this on OTN. [#16930] (3.3.78)
- Fix a bug that caused NullPointerException when opening an XAEnvironment under certain circumstances, when prepared but uncommitted transactions are present in the JE log and must be replayed during recovery. This bug was reported on the OTN forum by Matthieu Bentot -- thank you Matthieu! An example of the stack trace is below.
- Fix a bug that caused LogFileNotFoundException in rare circumstances for an Environment having one or more Databases configured for duplicates (or one or more SecondaryIndexes with MANY_TO_XXX relationships). The bug only occurs when a single secondary/duplicate key value is associated with a large number of records/entities; specifically, the sub-Btree for a single duplicate key value must have at least 3 levels. [#16712] (3.3.76)
- Fix a bug that caused BufferOverflowException while writing transactional records. This could occur if multiple threads were writing to an environment while using the same Transaction. [#17204]
- Direct Persistence Layer (DPL), Collections and Bind packages - Fix a bug that causes the EvolveStats returned by EntityStore.evolve to contain zeros, even when entities are evolved and written, when no EvolveListener is configured. Thanks to jhalex on OTN for reporting this. [#17024] (3.3.78)
TotalView 8.7.0
TotalView is a program useful for applications written for simulation and modeling, special effects, finance, telecommunications, scientific analysis, animation, biotechnology and many other fields. more>>
TotalView 8.7.0 is a program useful for applications written for simulation and modeling, special effects, finance, telecommunications, scientific analysis, animation, biotechnology and many other fields. Etnus TotalView leverages more than 19 years of continuous product development to maintain its clear leadership position.
Available on Linux, UNIX and Mac OS X, TotalView supports threads, MPI, OpenMP, C/C++, and Fortran, plus mixed-language codes. Advanced features like on-demand memory leak detection, other heap allocation debugging features, and Standard Template Library Viewer (STLView) are not found in average debuggers, and make debugging a breeze. Unique features like dive, a wide variety of breakpoints, the Message Queue Graph/Visualizer, powerful data analysis, and control at the thread level give you the power you need to solve tough problems.
PostgreSQL Database Server 8.3.0
PostgreSQL Database Server is a program functioning as an open source relational database system more>>
PostgreSQL Database Server 8.3.0 is a program functioning as an open source relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, SunOS, Tru64), BeOS, and Windows. PostgreSQL Database server already embedded a useful GUI - PGadmin. If you want to import MS Access or other formats to PostgreSQL, you can install a Mac OS X GUI Navicat PostgreSQL
PostgreSQL is an open-source descendant of this original Berkeley code. Also, PostgreSQL can be extended by the user in many ways.
It supports a large part of the SQL:2003 standard and offers many modern features:
- Complex queries
- Foreign keys
- Triggers
- Views
- Transactional integrity
- Multiversion concurrency control
OpenSIPS 1.4.4
An open source SIP server implementation more>> An open source SIP server implementation
OpenSIPS is an GPL implementation of a multi-functionality SIP Server that targets to deliver a high-level technical solution (performance, security and quality) to be used in professional SIP server platforms. OpenSIPS started as a fork of Fokus Fraunhofer SIP Express Router (SER) project.
OpenSIPS wants to be a more open project, not only from license point of view, but more open as project management, especially for external contributions.
OpenSIPSs goal is to overcome the development latency of current SER project and to ensure a shorter path into a release for new added features.
Main features:
- robust and performant SIP (RFC3261) Registrar server, Location server, Proxy server and Redirect server
- small footprint - the binary file is small size, functionality can be stripped/added via modules
- plug&play module interface - ability to add new extensions, without touching the core, therefore assuring a great stability of core components
- stateless and transactional statefull SIP Proxy processing
- support for UDP/TCP/TLS/SCTP transport layers
- IPv4 and IPv6
- support for SRV and NAPTR DNS
- SRV DNS failover
- IP Blacklists
- multi-homed (mhomed) and multi-domain support
- flexible and powerful scripting language for routing logic
- variables support in script - script variables, pseudo-variables (access to the SIP messages), AVPs (values persistent per SIP transactions)
- management interface via FIFO file and unix sockets
- authentication, authorization and accounting (AAA) via database (MySQL, Postgress, text files), RADIUS and DIAMETER
- digest and IP authentication
- Presence Agent support (many additional integration features)
- XCAP support for Presence Agent
- CPL - Call Processing Language (RFC3880)
- SNMP - interface to Simple Network Management Protocol
- management interface (for external integration) via FIFO file, XMLRPC or Datagram (UDP or unixsockets)
- NAT traversal support for SIP and RTP traffic
- ENUM support
- PERL Programming Interface - embed your extensions written in Perl
- Java SIP Servlet Application Interface - write Java SIP Servlets to extent your VoIP services and integrate with web services
- load balancing with failover
- least cost routing
- support for replication - REGISTER offer new functions for replicating client information (real source and received socket).
- logging capabilities - can log custom messages including any header or pseudo-variable and parts of SIP message structure.
- modular architecture - plug-and-play module interface to extend the servers functionality
- gateway to sms (AT based)
- multiple database backends - MySQL, PostgreSQL, Oracle, Berkeley, flat files and other database types which have unixodbc drivers
- straightforward interconnection with PSTN gateways
- dialog support (call monitoring, call termination from proxy side, call profiling)
- XMPP gateway-ing ( transparent server-to-server translation)
- impressive extension repository - over 70 modules are included in OpenSIPS repository
Scalability:
- OpenSIPS can run on embedded systems, with limited resources - the performances can be up to hundreds of call setups per second
- used a load balancer in stateless mode, OpenSIPS can handle over 5000 call setups per second
- on systems with 4GB memory, OpenSIPS can serve a population over 300 000 online subscribers
- system can easily scale by adding more OpenSIPS servers
- OpenSIPS can be used in geographic distributed VoIP platforms
- straightforward failover and redundancy
Enhancements
- After another month from 1.4.3 release, OpenSIPS improves itself with a new minor release, 1.4.4. Thanks to hard testing and fixing of a several people, new issues (critical and minor) were fixed on the OpenSIPS 1.4 branch.
- It is highly recommended to upgrade to this release, as it provides important stability improvements - OpenSIPS 1.4.4 is now available for download on project web site and SF download system.
PostgreSQL Database Server for Mac OS X 8.1.4
PostgreSQL Database Server for Mac OS X offers a simple and effective relational database system. more>>
PostgreSQL Database Server for Mac OS X 8.1.4 offers a simple and effective relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, SunOS, Tru64), BeOS, and Windows. If you need a PostgreSQL Database GUI, you can download NAVICAT PostgreSQL GUI.
It supports to import CSV, XML or other formats to PostgreSQL. PostgreSQL is an open-source descendant of this original Berkeley code. It supports a large part of the SQL: 2003 standard and offers many modern features: complex queries, foreign keys, triggers, views, transactional integrity, and multi-version concurrency control. Also, PostgreSQL can be extended by the user in many ways.
Enhancements: May include unspecified updates, enhancements, or bug fixes.
Services Wizard 1.1
Services Wizard - Allows small businesses throughout the globe to pick and choose the design services they need more>>
Sophic operates on our relationship-based transactional model.
This strategy fosters high volume, low-overhead style projects with fast turnarounds and lots of word-of-mouth advertising referrals that have a high signing rate.
Onepoint Project 9.0
Integrates project planning, progress tracking, monitoring, and reporting into a single, easy-to-use tool more>> Integrates project planning, progress tracking, monitoring, and reporting into a single, easy-to-use tool
Onepoint Project integrates project planning, monitoring, progress tracking, controlling and reporting into a single, easy-to-use tool.
Onepoint Project represents a new class of Project Leadership Software solutions that does not require you to compromise between ease-of-use and functionality. In addition, Onepoints different editions scale with your needs and the size of your business.
Global competition, changing customer requirements and short development cycles make it increasingly harder for companies of all sizes to be permanently successful.
Especially the management of time and resource critical development and deployment projects provides ever new challenges for the people in charge. For this, outdated or not integrated project management systems are either not capable of delivering decision relevant information, or at least not fast enough.
Onepoint Project integrates project planning, project controlling, monitoring and reporting into a single, easy to use and open project leadership solution providing you with all relevant information when and where you need it.
There are two Onepoint Project "flavors": Basic (single-user desktop app) and Open (multi-user Web 2.0 app). Basic Edition is targeted at the "rookie" solo project manager and the Open Edition is 100% Web-based and targeted at startups and small project teams.
Main features:
- Reduced project risks through integrated solution and high usability
- Minimized project management effort via project templates and team orientation
- Increased project transparency through ad-hoc monitoring, traffic light functions & plan-actual comparisons
- Significantly minimized costs via reduced risks and administration, but increased transparency
Enhancements
- Together with a major user interface "facelift" we added many practical usability enhancements including more easy to read edit tool buttons, improved visualization of the project detail context (name and description) and extended navigation between project overviews and details.
- Week-based Work Slips Milestone Trends
- Based on feedback from many existing and prospective users we totally redesigned our work slips. Actual time and costs can still be entered on a daily basis, but the visualization of the work slips has been changed to a week-based view speeding up data entry and improving overall usability.
- Issue Tracking Option * Issue Tracking
- The Issue Tracking Option allows to report, track and manage project-related issues directly within Onepoint Project. Issues can be prioritized and support simple escalation scenarios. Like ad hoc tasks, issues are shown in personal task lists and support tracking of time and costs.
- Project Traffic Light Traffic Light
- All multi-project overviews now feature a simple, but powerful project traffic light. The status of the traffic light can be set by the project manager and indicates the internal overall status of the project. In addition, the project status color is visualized in the multi-project schedule.
- Custom Report Wizard Report Wizard
- The new report wizard allows manager users of Onepoint Project to create their own tabular reports simply via point & click. Such custom reports can then be saved and shared with other users or groups within the project organization. Custom reports support grouping, sorting and filtering.
- Risk Management Option * Risk Management
- The Risk Management Option provides the project manager with the ability to manage a version-controlled risk matrix for each project including risk description, probability and impact. Optionally, global risk categories can be defined in order to m
monotone 0.24
monotone works out of a transactional version database stored in a regular file more>>
Monotone is a free distributed version control system.
It provides a simple, single-file transactional version store, with fully disconnected operation and an efficient peer-to-peer synchronization protocol.
It understands history-sensitive merging, lightweight branches, integrated code review and 3rd party testing.
It uses cryptographic version naming and client-side RSA certificates.
It has good internationalization support, has no external dependencies, runs on linux, solaris, OSX, windows, and other unixes, and is licensed under the GNU GPL.
Enhancements:
- Private keys are now stored per-user, rather than per-db, and in a more standard format. Several command line enhancements, for instance add --unknown, drop --missing, and revert --missing.
- A new "h:" selector to easily refer to branch heads.
- Enhancements to server permissions support to make granting/revoking access easy without restarting the server.
- More user-friendly handling of database lock contention.
- Fixes to multibyte character handling.
- Improved delta storage handling (gives 0-50% improvement in database size).
- Many small bugs were fixed and enhancements added.
Neo4j 1.0 Beta 7
A free and open source graph database more>>
A graph (mathematical lingo for a network) is a flexible data structure that allows a more agile and rapid style of development. You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database. The programmer works with an object-oriented, flexible network structure rather than with strict and static tables yet enjoys all the benefits of a fully transactional, enterprise-strength database.
In addition, Neo4j includes the usual database features: ACID transactions, concurrency control, transaction recovery, durable persistence, and everything else you would expect from an enterprise-strength database.
Major Features:
- An intuitive graph-oriented model for data representation. Instead of static and rigid tables, rows and columns, you work with a flexible graph network consisting of nodes, relationships and properties.
- Adisk-based, native storage manager completely optimized for storing graph structures for maximum performance and scalability.
- Massive scalability. Neo4j can handle graphs of several billion nodes/relationships/properties on a single machine and can be shared to scale out across multiple machines.
- A powerful traversal framework for high-speed traversals in the node space.
- A small footprint. Neo4j is a single
Enhancements:
- API: Removed a number of deprecated methods (primarily for relationship type management) from EmbeddedNeas per warning in the previous release.
- API: Transaction is now an interface.
- API: TraversalPosition now has an isStartNode() method.
- API: NotFound and NotInTransaction runtime exceptions have been moved from internal impl package the api package.
- API: getRelationshipById is now exposed in NeoService.
- API: A common base interface for Node and Relationship has been added that contains the set/get/remove property operations.
- Core: Made it easy embed Neo4j in a Spring application. Spring can be configured to use Neo4js transaction manager.
- Core: All known bugs have been fixed.
- Core: Removed singletons and made everything IoC.
- Core: Lots of minor optimization and improvements above native store layer (nioneo).
- Core: Cleanup of code (removed non used code) and improved exception handling.
- Core: Improved read performance and parallelism by implementing MVCC-like features. Nlocks are now taken during read-only operations, instead concurrent operations are working against snapshot versions.
PostgreSQL 8.4.1
PostgreSQL is regarded as an innovative and versatile database system which has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. more>>
PostgreSQL 8.4.1 is regarded as an innovative and versatile database system which has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, SunOS, Tru64), BeOS, and Windows. PostgreSQL Database server already embedded a useful GUI - PGadmin.
PostgreSQL is an open-source descendant of this original Berkeley code. It supports a large part of the SQL:2003 standard and offers many modern features.
Major Features:
- Complex queries
- Foreign keys
- Triggers
- Views
- Transactional integrity
- Multiversion concurrency control
License:Freeware
GeoServer 2.0 Beta 1 / 1.7.5
Open source server that will help you connect information to the Geospatial Web more>>
GeoServer is an Open Source server that connects your information to the Geospatial Web. With GeoServer you can publish and edit data using open standards.
Your information is made available in a large variety of formats as maps/images or actual geospatial data.
GeoServers transactional capabilities offer robust support for shared editing. GeoServers focus is ease of use and support for standards, in order to serve as glue for the geospatial web, connecting from legacy databases to many diverse clients.
GeoServer supports WFS-T and WMS open protocols from the OGC to produce JPEG, PNG, GML, PDF, SVG, KML/KMZ, Shapefiles and more.
GeoServer is built on Geotools, the same Java toolkit that udig uses. GeoServer is a truly open community, with a well documented and modular codebase, so don't hesitate to get involved.
- Fully compliant to WMS, WFS (1.0 and 1.1) and WCS specifications, as tested by the CITE conformance tests.Commercial grade installation, support, customization and improvements available from an eco-system of companies, non-profits, and consulting individuals.
- Easy to use web-based configuration tool - no need to touch long, complicated config files.
- Mature support for PostGIS, Shapefile, ArcSDE, DB2 and Oracle.
- VPF, MySQL, MapInfo, and Cascading WFS are also supported formats.
- On the fly reprojection, with an embedded EPSG database supporting hundreds of projections by default.
- Web Map output as jpeg, gif, png, SVG, GeoJSON GeoRSS.
- Excellent Google Earth Support
- Raw vector data available as GML and zipped Shapefiles through the WFS.
- WCS and WMS Raster support, including support for
- Anti-aliased images.
- Integrated OpenLayers as a default ajax viewer.
- Standards compliant by default - no need to figure out complex configuration options just to serve basic data.
- Streaming data readers: no memory bound limit to the amount of data that can be returned.
- Full SLD support, both user defined (POST and GET), as well as used in styling configuration.
- Full Filter support on all data formats in WFS (but optimized for backend format where possible).
- Support for atomic database transactions through the standard WFS-T protocol, available on all data formats.
- Long Transactions through a full implementation of the Locking portion of the WFS specification.
- Innovative Validation Engine that checks inserted features against a configured set of topological and attributed based rules, to maintain backend integrity.
- Java (J2EE) servlet-based, can run in any servlet container.
- Designed for extension, source code thats a pleasure to read.
- Easy to write new data formats with GeoTools DataStore interfaces and helper classes, making GeoServer the standards based interface to legacy data.
- No need to recompile to support more data formats, GeoTools DataStores instantly plug-in to GeoServer, even showing up as an option in the configuration gui.
- True open source development style, built by a strong community, that you can join and become a part of, tailoring GeoServer for your needs.
- Documentation that details everything in easy to understand language.
- Active email lists for quick support.
- [GEOS-2095] - Create BBOX Wicket Component
- [GEOS-2114] - Add capabilities link back to the home page
- [GEOS-2161] - Welcome Page
- [GEOS-2663] - move JAIInfo to be a first class part of configuration, rather than metadata
- [GEOS-2727] - Making logging configuration its own object
- [GEOS-2764] - Add a root interface for all catalog and config objects
- [GEOS-2857] - Refactor Data Store Configuration page as Data Access New Page and Data Access Edit Page to match convention
- [GEOS-2859] - Refactor web.data.coverage and web.data.datastore packages into a single web.data.store one
- [GEOS-2860] -Refactor Coverage Store Configuration page as Coverage Store New Page and Coverage Store Edit Page to match convention
- [GEOS-2964] - Clear the layers list on the add layer page when the "choose one" option is selected
- [GEOS-2988] - Remove Mortbay package from geoserver main module
- [GEOS-3025] - Port Data Store Utils and its clients to DataAccess
- Page: 1 of 2
- 1
- 2