Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.244.678 Times

Ariadne 2.4.1

  Date Added: March 16, 2010  |  Visits: 1.243

Ariadne

Report Broken Link
Printer Friendly Version


Product Homepage
Download (100 downloads)



Ariadne is an Application Platform for the Web, built entirely on Open Source technology. What this means is that Ariadne is a Content Management System, using a WYSIWYG HTML editor, its also a Group Calendar, a Photo Album, an Addressbook, a Weblog and anything else you want it to be. Ariadne was built with PHP, the most popular web programming language, Apache, the most popular web server, and MySQL, the most popular database engine for web applications. PostgrSQL is also supported. All these are Free Software, as is Ariadne. Because Ariadne is completely free, you can download it, use it, even change it to your own needs or build new applications on top of it. Ariadne gives you all the tools you need to easily build a new website, an intranet or even an e-commerce system. You can build and manage all this simply with your webbrowser. When you create a website with Ariadne, it stores all your content, templates, files, etc. in a structured object store built on top of a database system, e.g. MySQL. This object store looks a lot like a normal file system, like your operating system uses. You can create directories and files and navigate through them with the Ariadne explorer just like a normal filesystem. But this filesystem can do a lot more. Ariadne allows you to seperate the content, layout and logic of your website or internet application. You can assign different people to manage these parts. Ariadne will combine all these parts dynamically when someone visits a webpage. The Store contains all the information for the website. This information is combined with the class descriptions to create Objects. These objects contain not only the information, but also contain operations (methods) that can work on this information and on the Store. Ariadne then applies the user defined templates on these objects to generate a webpage. Objects stored in the the Ariadne Store are exactly that, Objects. So you can have all the advantages of Object Oriented Programming when building your website or application. Including inheritance and polymorphy on everything you put in the Store. Templates defined for a specific Class of objects will be inherited in sub-classes or can be overridden with new templates. Templates also automaticcaly extend down the filesystem tree. Templates can be defined by users through the web, via the management interface of Ariadne. Templates can be any kind of text type: html, xml, rtf, etc. Information and special operations on the Ariadne store can be used in a template, via a scripting language PINP, which consists of a subset of PHP functions. Besides that each class also defines extra functions, which can be used in templates assigned to objects of that class. All this allows you to create a web application or website with a minimum of programming while keeping the content and layout seperate. Whats New in This Release: New Features: - files and images (pphotos) are now automatically cached if they are publicly readable, that also goes for generated images, through pphoto::build() - added support for subclasses, which you can define yourself and add to the typetree via a typetree.ini template. You can define templates for a specific subclass and you can add your own wizard pages to the normal set. Beware, this code is very fresh. - Numerous fixes and extensions (e.g. table editing, required fields) in the mod_edit editor (toolbar.php). Check the context menu when editing tables. - much enhanced WDDX export support, with converter from ax to wddx format - TinyMCE support by Stefan Schreinert. To use this you have to copy the contents of the tinyMCE packages (which you can download from their site) into ariadne/www/widget/htmledit/tinymce/. - Added a webdav loader (which is still under development, but already pretty useful). - added a rss module to help get and parse RSS feeds - Moved all the authentication code to lib/modules/mod_auth/ which is used in all the loaders. With this approach adding new authentication methods becomes very easy. - The psite object can now be configured to have a different URL for each language. - Shortcut objects do allow you to browse further on the target nodes. - Added a new option to pshortcut keep url which, if set, will inherit the target templates from the shortcut and keeps the URL from where the shortcut is defined. - Added a PINP interpreter to ariadne/bin/. You can use this to execute PINP files written in the PINP language. - Added an option to the sql syntax which lets you include shortcuts target property in the search. To use this you have to type the include target keywords at the end of the criteria (and before the limit, offset, etc keywords). - The pphoto class now has an identify() function to detect multiple pages/layers. - Stefan Schreinert updated some entries in the german translations. - Andres Marcos Bianciotto updated the Spanish translations. - Added support for changing the flow of the standard Ariadne wizards. - updated the wddx export module, it uses fwrite instead of echo, which made it possible to have debugging and/or verbose enabled during the export. This also makes the usage of ob_ functions obsolete and reduces the usage of memory. - Updated mod_soap.php with SOAP_Header and SOAP_Parser support. - Added a preference setting for the template editor, normal textarea or helene, the syntax highlighting editor. - Pinp library support is now available, allowing you to have a library of templates in a seperate tree in Ariadne that can be used anywhere in your site through a config.ini template. - Added a PINP XML wrapper module. The parse_curl() method was created by Lukasz Keler. - The open editor button now has an adjustable text. - Added a profiler, which can be used in pinp templates as well: pfTime, pfReset, pfPrint - Added a number of performance improvements to speed up finding the correct template to use. - path and query are now optional arguments to count_find - added a make_local_url method, which tries to stay within the current site/host, even when referencing a page below another psite. - added a quality setting to pphoto::convert(), which allows you to set the jpeg quality. - pressing apply in the template editor will now restore the cursor position. - added basename and dirname to the pinp allowed function list. These are now the officially sanctified methods to get parent path (dirname) and filename (basename) - added $ARCurrent->forcenls (putvar(forcenls,true)) option, to make sure that any object / template called after it uses the requested nls, whether or not any data for that language is available in the object. - changed the way templates are included, so now you can do a return true in pinp templates, and it works as youd expect. Bugs Fixed - fixed problems with setting hyperlink over linebreaks or accross block elements in the editor, no more www.example.com. - fixed default values for $path arguments in mod_edit - a number of templates where fixed to work with any language independant of the languages of the object. Mostly dialogs, but also workflow stuff. - fixed a bug in the ftp loader, it was giving the wrong time of templates - Fixed some repeat by ... bugs in the pcalitem object. Thanks to Fabian Steger. - Added a fix for ftp clients which do expect as linebreaks. Thanks to Klaasjan Tukker. - Fixed a couple of URL rewriting bugs when saving pages. - Workflow templates are now able to set $error. - Fixed a bug in the respawn feature of the authentication module: it will now login as public if the session respawn failed. - Fixed a bug in the stores sql compiler which made it impossible to order by multiple nls variants of the same property. - Added missing wmv mimetype to mod_mimetype.php - Fixed a small problem in the nls handling of the new wizards. Sometimes the tab and the actual language shown differed. - Fixed a Mozilla reserved keyword implements bug in the Ariadne Search window. Thanks to Stefan Schreinert. - particle will now fill the endtime and enddate with the starttime / startdate if not set. - Fixed pphoto to work around the bug that causes ImageMagick to break on a . in the ariadne path. Thanks to Stefan Schreinert for reporting this. - the parentsection() function now works, instead of not :) - Fixed bug 0000290: specifying 00:00 in the articles time fields, resets the time to current time (Thanks to Christoph Lindemann) - The editor doesnt cut off the last char in an image link after editing anymore. - Fixed the editor to not include the nls in the URL of images. - The pinp variant of user.login.html does now have access to the arReturnPath and arReturnTemplate variables. - Added a fix to pfile which should make Explorer download pfiles postfixed with a slash with their correct filename. Thanks to Johann Hanne. - Fixed URL rewriting in mod_url when a siteobject had not yet been configured with an URL. - Fixed a URL check in pbookmark which did not accept - as a valid domain character. - helene (the syntax highlighting editor) now understands javascript in templates - user.workflow.* didnt set $ARCurrent->nolangcheck, now they do ;-) - added a upgrade script which fixes the es nls name in objects which still have the latin1 encoding. - The pinp call for HTTPRequest in pobject is now equal to the php one. - added a call to fflush in export.wddx.object.phtml, to force flushing to output because some versions of php dont flush - fixed some output in mod_wddx_import - added the missing call to fclose - replaced php://stdout in php://output, because stdout is the wrong stream - added linking in wddx import, this was missing - the image dialog now works with images with special characters (quotes) in the name - fixed problems with special characters and custom fields - fixed a problem in the filestore, it can now handle directories with the name 0..

Requirements: No special requirements
Platforms: Linux
Keyword: Added Ariadne Content Management Editor Fixed Http Objects Pinp Stefan Schreinert Templates Url Web Application Web Application Server Web Application Server Content Management System
Users rating: 0/10

License: Freeware Size: 2.5 MB
USER REVIEWS
More Reviews or Write Review


ARIADNE RELATED
Network & Internet  -  AntiCMS Content Management System 0.2.1
AntiCMS is a minimalist content management system for small and simple websites. The main purpose of this system is to separate content, structure and layout. Layout is defined using templates; content and structure are stored in XML file -...
34.82 KB  
Network & Internet  -  PHP Content Management System 1.2.1pl2
phpCMS is a content management system, which convinces in particular by small system requirements, high performance and above all its flexibility. phpCMS is suitable for small private web pages and also for complex professional appearances and...
532.48 KB  
Network & Internet  -  Sitellite Content Management System 4.2.12
Sitellite Content Management System is an advanced Web-based Content Management System (CMS) and PHP content publishing framework.. Sitellite is an advanced Web-based Content Management System (CMS) and PHP framework.
5.1 MB  
Communication  -  Marjetica Content Management System 1.3.0
Marjetica Content Management System is a powerful, easy to use, multiuser, multilanguage, content publishing solution written in PHP using Smarty for templating, MySQL database for data storage and filesystem for file storage. System consists of...
 
Miscellaneous  -  WikiCMS - Content Management System 1.4
WikiCMS is a simple PHP and MySQL based content management system for websites. Predefined contents like a guestbook, an image gallery or a contact form makes web design easy.Main features of WikiCMS:- Write content in a wiki or a WYSIWYG editor-...
4.39 MB  
Network & Internet  -  Xitnalta Content Management System 0.5.80
Xitnalta Content Management System (xcms) provides a virtual filesystem library to deal with content from different sources (a real filesystem, a database, etc.) and in different formats. Xitnalta Content Management Systems goal is to provide...
215.04 KB  
Development Editors  -  PHP MicroCMS - PHP Web Content Management System Script 1.0.1
Welcome to PHP MicroCMS PHP MicroCMS (PHP MCMS) is a simple, but very powerful Content Management System that everyone can use. The PHP MCMS can be installed easily by web developers, webmasters, graphic designers, etc. PHP MCMS was developed in...
86 KB  
Content Management  -  Simple Web Content Management System 1.1
A simple content management system based on PHP and the free and fast MySQL database. Simple to setup and administer. All site settings are easily customized with the administration interface.Runs on an Apache or IIS webserver with PHP and MySQL....
 
Content Management  -  Light PHP Content Management System 2.0.2p1 1.0
Light PHP Content Management System is a very lightweight drop-in database driven content managment system targeted for personal and small business use. It includes support for MySQL, SQLite, ODBC, PostgreSQL, and XML.
 
Content Management  -  Simple Web Content Management System for Scripts 1.1
A simple content management system based on PHP and the free and fast MySQL database. Simple to setup and administer.All site settings are easily customized with the administration interface.Runs on an Apache or IIS webserver with PHP and MySQL....
645.12 KB  
NEW DOWNLOADS IN LINUX SOFTWARE, NETWORK & INTERNET
Linux Software  -  EasyEDA PCB Designer for Linux 2.0.0
EasyEDA, a great web based EDA(Electronics Design Automation) tool, online PCB tool, online PCB software for electronics engineers, educators, students, makers and enthusiasts. Theres no need to install any software. Just open EasyEDA in any...
34.4 MB  
Linux Software  -  wpCache® WordPress HTTP Cache 1.9
wpCache® is a high-performance, distributed object, caching system application, generic in nature, but intended for use in speeding up dynamic web applications, by decreasing database load time. wpCache® decreases dramatically the page...
3.51 MB  
Linux Software  -  Polling Autodialer Software 3.4
ICTBroadcast Auto Dialer software has a survey campaign for telephone surveys and polls. This auto dialer software automatically dials a list of numbers and asks them a set of questions that they can respond to, by using their telephone keypad....
488 B  
Linux Software  -  Total Video Converter Mac Free 3.5.5
Total Video Converter Mac Free developed by EffectMatrix Ltd is the official legal version of Total Video Converter which was a globally recognized brand since 2006. Total Video Converter Mac Free is a free but powerful all-in-one video...
17.7 MB  
Linux Software  -  Skeith mod_log_sql Analyzer 2.10beta2
Skeith is a php based front end for analyzing logs for Apache using mod_log_sql.
47.5 KB  
Network & Internet  -  Free WiFi Hotspot 3.3.1
Free WiFi Hotspot is a super easy solution to turn your laptop or notebook into a portable Wi-Fi hotspot, wirelessly sharing your internet connections like DSL, Cable, Bluetooth, Mobile Broadband Card, Dial-Up, etc. through the built-in wireless...
1.04 MB  
Network & Internet  -  Easy Uploads 1.8
Easy uploads is a file storage media streaming application designed by Filestreamers that allows you to upload, store, and stream your files from their virtually unlimited file storage server. Easy Uploads can backup,share, and stream your files...
615.97 KB  
Network & Internet  -  PacketFence ZEN 3.1.0
PacketFence is a fully supported, trusted, Free and Open Source network access control (NAC) system. Boosting an impressive feature set including a captive-portal for registration and remediation, centralized wired and wireless management, 802.1X...
1024 MB  
Network & Internet  -  django-dbstorage 1.3
A Django file storage backend for files in the database.
10.24 KB  
Network & Internet  -  SQL Inject Me 0.4.5
SQL Inject Me is a Firefox extension used to test for SQL Injection vulnerabilities. The tool works by submitting your HTML forms and substituting the form value with strings that are representative of an SQL Injection attack.
133.12 KB