Difference between revisions of "AppSuite:Main Page Advanced"

(Translations)
(OX App Suite Frontend Development)
Line 3: Line 3:
 
*[[AppSuite:Architecture_Overview|Architecture Overview]]
 
*[[AppSuite:Architecture_Overview|Architecture Overview]]
  
= OX App Suite Frontend Development =
+
= OX App Suite UI Development =
This page contains articles about the inner workings of the UI. It is aimed at software developers that want to improve on existing features, implement extensions or just gain a general understanding (Upsell, Theming, Extension Points)
+
This page contains all the information you need to get started with UI development.
* [[AppSuite:UI | Frontend development articles]]
+
 
 +
This covers how-to articles including server communication, extension points and how to write widgets, applications and plugins: [[AppSuite:UI | Frontend development articles]]
  
 
= Groupware Server customization =
 
= Groupware Server customization =

Revision as of 16:21, 6 November 2013

Overview

OX App Suite UI Development

This page contains all the information you need to get started with UI development.

This covers how-to articles including server communication, extension points and how to write widgets, applications and plugins: Frontend development articles

Groupware Server customization

Programming Interfaces

  • The HTTP API is used by the Open-Xchange GUI and various 3rd party applications. It consists mainly of messages in JavaScript Object Notation (JSON) sent over HTTP. Here is a general Introduction to the HTTP API.
  • The WebDAV API is used by external clients to modify object on the OX Server. It based mainly on the webdav standard with some enhancements to handle OX objects.
  • Provisioning API to access the Open-Xchange Admin Daemon
    • The RMI API is used for data provisioning of Contexts, Users, Groups and Resources as well as for configuring Databases, Filestores and OX Servers. It is currently split into two parts,
    • The Open-Xchange CLT are shell scripts that simplify groupware and service administration
    • Create contexts/users with with Csv_import
    • Provisioning using SOAP
  • The Oxmapi is a windows library for programmers needed to communicate with the OX server
  • Open-Xchange Mail Abstraction Layer
  • The Plugin API for extending the GUI is described in two documents: an overview and the reference
  • UDPPush Open-Xchange PUSH Interface for Groupware Objects

Testing and QA

Translations

Installation based on source code

Integration