Paragon

Paragon provides a fast application development framework.
Download

Paragon Ranking & Summary

Advertisement

  • Rating:
  • License:
  • LGPL
  • Price:
  • FREE
  • Publisher Name:
  • Rob Alfaro
  • Publisher web site:

Paragon Tags


Paragon Description

Paragon provides a fast application development framework. Paragon provides a fast application development framework.Paragon is a powerful, robust, and flexible fast application development framework. It contains a structured library of extensible components used for modelling real world objects and processes, and is a true 3-tier system defining an abstraction between the presentation, business logic, and data access layers. It provides a set of extensible APIs for modelling custom business logic and employs a simplified Model-View-Controller design paradigm. APIs are also provided for a multi-lingual and mark-up agnostic graphical user interface display, relational database connection and communication, and more.Here are some key features of "Paragon":· flexible graphical user interface display that is multi-lingual and mark-up agnostic· easy to use relational database connection and communication for relational databases supported by PHP (currently Postgresql and MySql supported).· simple SMTP/MIME message generation using Internet or Unix domain sockets· flexible authentication and authorisation of HTTP(s) requests.· configurable error handling· configurable file uploading via HTTP(s)These extensible components are abstracted from a set of flexible and extensible API's used to model the custom business logic required by any web application.The typical applications that Paragon can be used to create are.user management with subscription.content management systems.product catalogue/shopping cart.threaded multi-view bulletin board systems.intranet systems.extranets systems.groupware systemsWhat's New in This Release:Added the following classes* common.AbstractAttributesObject - New abstract class that abstracts model.AbstractDatabaseObject into a common API that provides a mechanism to model a real world "entity" with a unique set of data attributes.* http.Cookie - Simple class for encapsulating a HTTP cookie in Paragon.* model.FileDatabaseObject - Implementation of the AssociatedDatabaseObject used to define a common API that models a data object with a computer files meta data in its attributes.* model.actions.AddFileAction - New action class that handles the general case add action for a FileDatabaseObject* model.actions.DecrementSortOrderAction - New class that handles decrementing the sort order of the marshaled instance.* model.actions.EditFileAction - New action class that handles the general case edit action for a FileDatabaseObject* model.actions.IncrementSortOrderAction - New class that handles incrementing the sort order of the marshaled instance.* model.actions.PublishAction - New action class that handles publishing the marshaled instance.* model.actions.RemoveFileAction - New action class that handles the general case remove action for a FileDatabaseObject* model.actions.TogglePublishAction - New action class that handles toggling the publish status of the marshaled instance.* model.actions.UnpublishAction - New action class that handles unpublishing the marshaled instance.* model.attributes.DateTimeAttribute - New attribute class that models a datetime database field.* model.attributes.EnumAttribute - New attribute class that models an enumerated database field.* model.attributes.FloatAttribute - New attribute class that models a float database field.* tools.ArrayIterator - New class which defines an API for iteration through the elements in a array* tools.CsvParser - New class which defines an API for reading/writing CSV data* Moved, renamed and modified the class tools.HttpFileUpload to http.FileUploadModified configure.pl script. Bug fix that did not allow numeric characters in config file names.Modified the prepend.php file.1) Added call to system_sendHeaders()2) Added call to system_verifyProjectEnabled()Modified the errorHandling.inc function library1) Modified function errorHandling_initialiseErrorHandling(). Required change due to change in ParagonSettings.incModified the system.inc function library1) Modified function system_includeProjectPrependFile(). Bug fix.2) Added new function system_verifyProjectEnabled()3) Added new function system_verifyHttpsEnabled()4) Modified function system_fileExists(). Required change due to change in ParagonSettings.inc and bug fix.5) Modified function system_headersSent(). Bug fix.6) Modified function system_includeFile(). Security/bug fix.7) Modified system_getUserAgentDetails().8) Modified function system_getDisplay(). Required change due to change in ParagonSettings.inc.9) Modified function system_getRequest(). Required change due to change in ParagonSettings.inc.10) Added new function system_getTemplate().11) Modified function system_getDatabase(). Required change due to change in ParagonSettings.inc.12) Modified function system_getSqlQuery(). Required change due to change in ParagonSettings.inc.13) Modified function system_getSession(). Required change due to change in ParagonSettings.inc.14) Modified function system_startSession(). Removed redundant error message.15) Modified function system_getAuthenticator(). Required change due to change in ParagonSettings.inc.16) Modified function system_getUser(). Required change due to change in ParagonSettings.inc.17) Modified function system_getMailer(). Required change due to change in ParagonSettings.inc.18) Modified function system_email(). Required change due to change in ParagonSettings.inc.19) Modified function system_handleFileUpload(). Renamed and tools.HttpFileUpload to http.FileUpload. New package http.20) Added new function system_verifyFileUploaded()21) Modified function system_getCookie(). Uses new http.Cookie API22) Modified and renamed function system_setCookieValue() to system_setCookie(). Uses new http.Cookie API and bug fixes23) Modified and renamed function system_unsetCookieValue() to system_unsetCookie(). Uses new http.Cookie API and bug fixes24)Modified and renamed function system_unsetCookieValues() to system_unsetAllCookies(). Uses new http.Cookie API and bug fixes25) Modified function system_redirect(). Bug fix26) Modified function system_sendHeaders(). Minor API change.27) Modified function system_initialiseErrorHandler(). Required change due to change in ParagonSettings.inc.Modified the ParagonSettings.inc.in object template1) Added new class scope var $_projectEnabled2) Added new class scope var $_allowedIpAddresses3) Added new class scope var $_template4) Renamed function _getSettings() to getSettings(). Made function public from private.5) Renamed function _getSettingAttribute() to getSettingAttribute(). Made function public from private.6) Removed function getEmailSettings()7) Removed function getDatabaseSettings()8) Removed function getDisplaySettings()9) Removed function getModulesSettings()10) Removed function getAuthSettings()11) Removed function getErrorHandlingSettings()12) Removed function getAuthSettings()13) Added new function getProjectEnabled()14) Added new function getAllowedIpAddresses()auth.AbstractAuthenticator.inc1) Modified function setAuthenticationIdentifier(). Required change due to change in ParagonSettings.inc.2) Modified function setSession(). Removed redundant error handling3) Added new function getUserIdentifierParameterName()4) Added new function getAuthenticationFailureMessages()5) Modified and renamed function _displayLoginForm() to displayLoginForm(). Made function public from private.6) Removed function _displayAuthenticatedMessage()7) Modified function _setInvalidUserDetailsFailureMessage(). Bug fix.8) Modified function _setSessionLifetimeExceededFailureMessage(). Bug fix.9) Modified function _setSessionIdleTimeExceededFailureMessage(). Bug fix.10) Modified function _setMismatchedClientIpAddressFailureMessage(). Bug fix.11) Modified function _setInvalidUserSessionDataFailureMessage(). Bug fix.12) Modified function handleLogin(). Bug fix13) Modified function authenticate(). Abstracted logic to new function.14) Removed function _getSessionAuthenticationSettings(). Required change due to API change.15) Modified function _getSessionUserSettings(). Required change due to API change.16) Modified function _storeAuthentication(). Required change due to API change.17) Modified function _removeAuthentication(). Required change due to API change.18) Modified function _verifySessionLifetime(). Required change due to API change.19) Modified function _verifySessionIdleTime(). Required change due to API change.20) Modified function _verifyClientIpAddress(). Required change due to API change.21) Modified function isAuthenticated(). Required change due to API change.auth.AbstractUser.inc1) Modified constructor2) Modified function setAuthenticationIdentifier(). Required change due to change in ParagonSettings.inc.3) Modified function getUserSessionAttributeName()4) Modified function initialiseFromSession()auth.session.AbstractSession.inc1) Added new class scope var $_dateCreatedAttributeName2) Modified function setAuthenticationIdentifier(). Required change due to change in ParagonSettings.inc.3) Added new function getDateCreatedAttributeName()4) Added new interface function setSessionAccessAttributes()5) Added new interface function unsetSessionAccessAttributes()6) Added new interface function getSessionAccessAttributes()auth.session.PhpSession.inc1) Modified function startSession(). Bug fix2) Added new function setSessionAccessAttributes()3) Added new function unsetSessionAccessAttributes()4) Added new function getSessionAccessAttributes()5) Modified function register(). Bug fix.6) Modified function unregister(). Bug fix.auth.session.AbstractDatabaseSession.inc1) Removed class scope var $_authenticationAttributeNames2) Moved class scope vars $_attributeDefinitions3) Added new class scope var $_numberOfDefaultSetCookieAttempts4) Added new class scope var $_testCookieName5) Added new class scope var $_testCookieValue6) Modified function setAuthenticationIdentifier(). Required change due to change in ParagonSettings.inc.7) Added new function getDateCreatedAttributeName().8) Modified function setSessionCookie(). Required change due to API change.9) Modified function unsetSessionCookie(). Required change due to API change.10) Remove function unsetSessionCookies().11) Modified function initialiseSession(). Required change due to API change.12) Modified function startSession(). Required change due to API change.13) Modified function verifyClientAllowsCookies(). Required change due to API change.14) Modified function unsetSession(). Required change due to API change.15) Modified function getSessionAttribute(). Required change due to API change.16) Added new function setSessionAccessAttributes()17) Added new function unsetSessionAccessAttributes()18) Added new function getSessionAccessAttributes()19) Modified function register(). Required change due to API change.20) Modified function isRegistered(). Required change due to API change.21) Modified function unregister(). Required change due to API change.common.AbstractObject1) Added new function getUri()2) Modified function includeFile(). Added new input parameter3) Modified function getIncludedFileBuffer(). Added new input parameterdatabase.AbstractDatabaseConnection1) Added new function getNumberOfRecordsAffected()database.AbstractSqlQuery1) Modified function getUpdateStatement().2) Modified function getDeleteStatement().database.MySqlDatabaseConnection1) Modified function executeQuery(). Changed error handle condition2) Added new function executeQuerygetNumberOfRecordsAffected()database.PostgreSqlDatabaseConnection1) Modified function executeQuery(). Changed error handle condition2) Added new function executeQuerygetNumberOfRecordsAffected()database.SqlRecordIterator1) Updated documentation2) Renamed function _seekToRecord() to seekToRecord(). Made function public from privatedisplay.AbstractDisplay1) Modified function includeFile(). Added new input parameter2) Modified function getIncludedFileBuffer(). Added new input parameterdisplay.AbstractForm1) Updated documentation2) Modified function getValidationFailureMessage()display.AbstractRequest1) Modified function setParameter(). Corrected error handling conditiondisplay.AbstractTemplate1) Added new function getRegionContent()2) Added new function startSession()email.MimeMail1) Updated documentation2) Modified function setFileContentsAsBody()3) Modified function addFileAsAttachment ()4) Modified function _getBodyData(). Made all newline chars be prefixed by carraige return as per RFC 20455) Modified function _getMailData(). Made all newline chars be prefixed by carraige return as per RFC 20456) Modified function _getMultipartData(). Made all newline chars be prefixed by carraige return as per RFC 20457) Modified function _getPartData(). Made all newline chars be prefixed by carraige return as per RFC 2045email.SmtpMail1) Added new class scope var $_ignoreEmailAddressVaidation2) Modified function connect(). Corrected error handling condition3) Added new function isConnected()4) Modified function disconnect()5) Added new function setIgnoreEmailAddressVaidation()6) Modified function setFrom(). Bug fix7) Modified function addRecipient()6) Added new function unsetHeaders()7) Modified function removeRecipient(). Corrected error handling condition8) Modified function _sendRecipientData()9) Modified function _getHeaderData(). Made all newline chars be prefixed by carraige return as per RFC 204510) Modified function _getMailData(). Made all newline chars be prefixed by carraige return as per RFC 204511) Modified function _sendData(). Made all newline chars be prefixed by carraige return as per RFC 204512) Modified function _validateSmtpServerResponse(). Corrected error handling condition.13) Modified function _sendCommand(). Corrected error handling condition. Bug fix14) Modified function send()15) Modified function reset()model.actions.AbstractAction1) Added new class scope var $_nameIdentifier2) Added new class scope var $_setActionRequestedParameter3) Added new function getNameIdentifier()4) Added new function setNameIdentifier()5) Added new function getSetActionRequestedParameter()6) Modified function _getActionRequest()model.actions.AddAction1) Removed redundant class scope var $_authorisationRules2) Modified function performAction()model.actions.EditAction1) Removed redundant class scope var $_authorisationRulesmodel.actions.EditPasswordAction1) Removed redundant class scope var $_authorisationRulesmodel.actions.EditUserPasswordAction1) Removed redundant class scope var $_authorisationRulesmodel.actions.RemoveAction1) Added new class scope var $_setActionRequestedParameter2) Removed redundant class scope var $_authorisationRulesmodel.actions.ViewAction1) Added new class scope var $_setActionRequestedParameter2) Added new function _displayActionForm()model.attributes.AbstractAttribute1) Added new function getDefaultValue()model.attributes.DateAttribute1) Updated documentation2) Removed class scope var $_yearRange3) Removed class scope var $_monthOffset4) Modified class scope var $_dateRegExp5) Added new class scope var $_allowedSeparatorCharacters6) Added new class scope var $_dateSeparatorCharacter7) Modified class scope var $_definedSettings8) Modified function _validateDateValue().model.attributes.DomainNameAttribute1) Added new class scope var $_allowUriSuffixmodel.attributes.EmailAddressAttribute1) Modified function _validateEmailAddress()model.attributes.IdentifierAttribute1) Removed class scope var $_defaultValue2) Added new class scope var $_bannedValues3) Modified class scope var $_definedSettings4) Modified function _validateIdentifierValue()model.attributes.IntegerAttribute1) Modified class scope var $_defaultValue2) Modified class scope var $_definedSettings3) Modified function _validateIntegerValue()4) Modified function _verifyLowerLimit()5) Modified function _verifyUpperLimit()model.attributes.TextAttribute1) Modified class scope var $_definedSettingsmodel.AbstractActionMarshaler1) Updated documentation2) Added new class scope var $_actionLinksHeading3) Modified constructor. Abstracted logic to new function4) Added new function _assignObjectInstance()5) Modified function setAuthenticationIdentifier().6) Added new function setActionLinksHeading()7) Added new function getActionLinksHeading()8) Added new function setDisplaySearchFormInSelectInstance()9) Added new function setDisplayListSelectInstance()10) Modified function getMarshaledInstanceRequest(). Added new input parameter11) Modified function getRequest(). Added new input parameter12) Added new function displayRequest()13) Modified function _getAction()14) Modified function _getAuthorisedActions(). Performance enhancement15) Added new function _displayAuthorisedActionLink()16) Modified function displayAuthorisedActionsAsLinks().17) Modified function _handleInitialisation()18) Added new function _getSelectInstanceActionSettings()19) Modified function _selectInstance(). Removed input parameter. Abstract logic to new functionmodel.AbstractAssociationObject1) Modified constructor.2) Modified function getAllAssociatedToMemberSqlQuery(). Bug fix3) Modified function getAllForMemberSqlQuery(). Bug fixmodel.AbstractDatabaseObject1) Modified inheritence to extend from new AbstractAttributesObject. Updated documentation accordingly2) Removed class scope var $_nameAttributeNames. Now in superclass3) Added new class scope var $_assignDefaultSearchAttributeNames4) Added new class scope var $_assignDefaultForeignSearchAttributeNames5) Modified constructor.6) Removed function _assignParameters(). Now in superclass7) Removed function getValidationFailureMessages(). Now in superclass8) Modified function enableNamespace().9) Removed function getNamespace(). Now in superclass10) Removed function disableNamespace(). Now in superclass11) Removed function _parseRequestParamsForNamespace(). Now in superclass12) Removed function isNamespaced(). Now in superclass13) Removed function getParameterName(). Now in superclass14) Removed function getAttributeNames(). Now in superclass15) Removed function getAttributeValues(). Now in superclass16) Removed function getAttributeValue(). Now in superclass17) Removed function resetAttributeValue(). Now in superclass18) Removed function setAttributeValue(). Now in superclass19) Removed function _unsetAttributeValidationFailureMessage(). Now in superclass20) Removed function _setAttributeValidationFailureMessage(). Now in superclass21) Removed function setAttributeValues(). Now in superclass22) Removed function unsetAttributeValues(). Now in superclass23) Removed function unsetAttributeValue(). Now in superclass24) Removed function getName(). Now in superclass25) Removed function getValidationFailureMessage(). Now in superclass26) Modified function putIdInRequest()27) Removed function uninitialise(). Now in superclass28) Modified function _verifyIntegrityOfDataToStore()29) Modified function storeAttributes(). Added new input parameter30) Modified function storeAttribute(). Added new input parameter31) Modified function getLister(). Bug fix32) Modified function getFormElementLister()33) Modified function getSearcher(). Bug fix34) Modified function getSearchWhereClause()35) Modified function getForeignSearchWhereClause36) Modified function getIdsFromRequest()37) Modified function getAllForIds(). Added new input parameters38) Removed function getSelectedItemString(). Now in superclassmodel.AbstractDatabaseObjectIterator1) Added new class scope var $_foreignDataFields2) Modified function getNext()3) Modified function getForeignDataFields()model.AbstractDatabaseObjectLister1) Modified function setActionSetting()2) Modified function setActionSettings()3) Modified function _displayListItems()4) Modified function _displayColumnedListItems()model.AbstractDatabaseObjectSearcher1) Added new class scope var $_additionalSearchWhereClauses2) Added new class scope var $_searchWhereJoin3) Modified function setActionSetting()4) Added new function setAdditionalSearchWhereClauses()5) Added new function setSearchWhereJoin()6) Added new function getDisplayResultsRequestParamValue()7) Modified function _hasEnoughInformation()8) Added new function _getRequest()9) Modified function _getSqlQuery(). Performance improvement10) Modified function _getRelationshipWhereClauses(). Bug fixmodel.AbstractRelationship1) Modified function getContainersForReferencedIdSqlQuery()2) Modified function getContainersWithoutReferenceSqlQuery()3) Modified function getContainersWithReferenceSqlQuery()model.AssociatedDatabaseObject1) Modified function getAssociatesIdsFromRequest(). Bug fix2) Modified function getAssociatedFormElementLister(). Bug fix3) Modified function getAllForMemberIdsSqlQuery(). Bug fix4) Modified function synchroniseAllAssociationsFromRequest(). Bug fix5) Modified function updateAllAssociationsFromRequest(). Bug fixmodel.ComplexDatabaseObject1) Modified constructor2) Modified function getReferencedFormElementLister(). Bug fix3) Modified function updateAllRelationshipAttributeValuesFromRequest(). Bug fix4) Modified function updateRelationshipAttributeValueFromRequest(). Bug fix5) Modified function removeAllContainerReferences(). Bug fixmodel.SequentialActionMarshaler1) Updated documentation2) Added new class scope var $_sequentialActions3) Added new class scope var $_actionCompletedParamName4) Added new class scope var $_actionCompletedParamValue5) Modified constructor. Abstracted logic for over-riding6) Added new function _assignSessionClassname()7) Added new function getSequentialActions()8) Added new function _handleSessionInitialisation()9) Modified function setSessionAttributeData()10) Added new function getCompletedAction()11) Modified function getActionRequested(). Bug fix12) Modified function _updateCompletedActionsSessionData(). Bug fix13) Modified function _hasNextActionIdentifier(). Bug fix14) Modified function _getNextActionIdentifier(). Bug fix15) Added new function _handleInitialisation()16) Added new function _handleSequentialAction()17) Added new function handleAction()18) Modified function handleActions(). Bug fix19) Added new function resetSequence()tools.Calendar1) Updated documentation2) Modified class scope var $_monthSelectIncludeFiles3) Modified class scope var $_yearSelectIncludeFiles4) Modified class scope var $_selectedDate5) Modified function _validateDate()6) Modified function getDateParts()7) Modified function displayMonthSelectMenu()8) Modified function displayYearSelectMenu()9) Modified function _initialiseCalendar()10) Modified and renamed function _setSelectedDate() to setSelectedDate()11) Modified function displayCalendar()tools.ErrorHandler1) Modified constructor. Required change due to change in ParagonSettings.inc.2) Modified function _logError().tools.editors.FckEditor1) Updated documentation2) Modified class scope var $_fckEditorUri3) Removed class scope var $_definedToolbars4) Added new class scope var $_allowedSettings5) Added new class scope var $_configFile6) Modified function setToolbar()7) Renamed function setSettings() to addSettings()8) Modified function addSetting()9) Added new function setConfigFile()10) Added new function getConfigFile()11) Modified function setAuthenticationIdentifier(). Required change due to change in ParagonSettings.inc.12) Modified function _verifyUserAgentIsSupported()13) Modified function getRequest()


Paragon Related Software