diff options
Diffstat (limited to 'webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail')
9 files changed, 0 insertions, 286 deletions
diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/Makefile b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/Makefile deleted file mode 100644 index 32800d03c8..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/Makefile +++ /dev/null @@ -1,107 +0,0 @@ -################################################################################ -# -# qooxdoo - the new era of web development -# -# http://qooxdoo.org -# -# Copyright: -# 2006-2007 1&1 Internet AG, Germany, http://www.1and1.org -# -# License: -# LGPL: http://www.gnu.org/licenses/lgpl.html -# EPL: http://www.eclipse.org/org/documents/epl-v10.php -# See the LICENSE file in the project's top-level directory for details. -# -# Authors: -# * Sebastian Werner (wpbasti) -# * Andreas Ecker (ecker) -# * Fabian Jakobs (fjakobs) -# -################################################################################ - -################################################################################ -# BASIC SETTINGS -################################################################################ - -# -# Location of your qooxdoo distribution -# Could be relative from this location or absolute -# -QOOXDOO_PATH = ../../.. - -# -# The same as above, but from the webserver point of view -# Starting point is the application HTML file of the source folder. -# In most cases just add a "/.." compared to above -# -QOOXDOO_URI = ../../../.. - -# -# Namespace of your application e.g. custom -# -APPLICATION_NAMESPACE = webmail - -# -# Titles used in your API viewer and during the build process -# -APPLICATION_MAKE_TITLE = WEBMAIL -APPLICATION_API_TITLE = WebMail - -# -# Additional files (space separated list) -# -APPLICATION_FILES = index.html - -# -# XHTML support -# -APPLICATION_TEMPLATE_INPUT = index.xhtml.tmpl -APPLICATION_TEMPLATE_OUTPUT = index.xhtml - - - - - -################################################################################ -# ADVANCED SETTINGS -################################################################################ - -# -# Enable resource filtering in API viewer -# -APPLICATION_RESOURCE_FILTER = true - -# -# We don't need the full source code -# -APPLICATION_COMPLETE_SOURCE = false - -# -# Disable line breaks -# -APPLICATION_LINEBREAKS_BUILD = false -APPLICATION_LINEBREAKS_SOURCE = false - -# -# qooxdoo.org sync -# -APPLICATION_PUBLISH_PATH = root@qooxdoo.org:/var/www/qooxdoo/demo/$(FRAMEWORK_VERSION)/$(APPLICATION_NAMESPACE) - - - - - -################################################################################ -# INCLUDE CORE -################################################################################ - -ifneq ($(QOOXDOO_PATH),PLEASE_DEFINE_QOOXDOO_PATH) - include $(QOOXDOO_PATH)/frontend/framework/tool/make/targets.mk - include $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk -endif - -error: - @echo " * Please configure QOOXDOO_PATH" - -distclean: - @rm -f source/index.xhtml diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/class/webmail/Application.js b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/class/webmail/Application.js deleted file mode 100644 index e8e1ffb0a8..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/class/webmail/Application.js +++ /dev/null @@ -1,147 +0,0 @@ -/* ************************************************************************ - - qooxdoo - the new era of web development - - http://qooxdoo.org - - Copyright: - 2004-2007 1&1 Internet AG, Germany, http://www.1and1.org - - License: - LGPL: http://www.gnu.org/licenses/lgpl.html - EPL: http://www.eclipse.org/org/documents/epl-v10.php - See the LICENSE file in the project's top-level directory for details. - - Authors: - * Sebastian Werner (wpbasti) - * Andreas Ecker (ecker) - * Fabian Jakobs (fjakobs) - -************************************************************************ */ - -/* ************************************************************************ - -#embed(qx.icontheme/16/categories/applications-internet.png) -#embed(qx.icontheme/16/actions/mail.png) -#embed(qx.icontheme/16/actions/system-run.png) -#embed(qx.icontheme/16/apps/accessories-notes.png) - -************************************************************************ */ - - -/** - * A small example how a webmail application can look and feel using qooxdoo. - */ -qx.OO.defineClass("webmail.Application", qx.component.AbstractApplication, -function () { - qx.component.AbstractApplication.call(this); -}); - - -/* ---------------------------------------------------------------------------- - METHODS ---------------------------------------------------------------------------- -*/ - -qx.Proto.main = function(e) -{ - var doc = qx.ui.core.ClientDocument.getInstance(); - - var dockLayout = new qx.ui.layout.DockLayout; - - dockLayout.setLocation(0, 0); - dockLayout.setDimension(800, 600); - dockLayout.setBackgroundColor("white"); - - doc.add(dockLayout); - - var menubar = new qx.ui.menubar.MenuBar; - var toolbar = new qx.ui.toolbar.ToolBar; - var tree = new qx.ui.tree.Tree("Inbox"); - var status = new qx.ui.basic.Atom("Status", "icon/16/categories/applications-internet.png"); - - tree.setWidth(200); - tree.setBorder(qx.renderer.border.BorderPresets.getInstance().inset); - tree.add(new qx.ui.tree.TreeFolder("Drafts")); - tree.add(new qx.ui.tree.TreeFolder("Sent")); - tree.add(new qx.ui.tree.TreeFolder("Trash")); - tree.add(new qx.ui.tree.TreeFolder("Junk")); - - status.setWidth(null); - status.setBorder(qx.renderer.border.BorderPresets.getInstance().thinInset); - status.setHorizontalChildrenAlign("left"); - status.setPadding(2, 4); - status.setBackgroundColor("threedface"); - - dockLayout.addTop(menubar); - dockLayout.addTop(toolbar); - dockLayout.addBottom(status); - dockLayout.addLeft(tree); - - - - var btns = [ - { text : "New", icon : "icon/16/actions/mail.png" }, - { text : "Send/Receive", icon : "icon/16/actions/system-run.png" }, - { text : "Adressbook", icon : "icon/16/apps/accessories-notes.png" } - ]; - - for (var i=0; i<btns.length; i++) { - toolbar.add(new qx.ui.toolbar.Button(btns[i].text, btns[i].icon)); - }; - - - - var filemnu = new qx.ui.menu.Menu; - var editmnu = new qx.ui.menu.Menu; - var optimnu = new qx.ui.menu.Menu; - var helpmnu = new qx.ui.menu.Menu; - - filemnu.add(new qx.ui.menu.Button("New Mail")); - filemnu.add(new qx.ui.menu.Button("Exit")); - - editmnu.add(new qx.ui.menu.Button("Cut")); - editmnu.add(new qx.ui.menu.Button("Copy")); - editmnu.add(new qx.ui.menu.Button("Paste")); - - optimnu.add(new qx.ui.menu.Button("View")); - optimnu.add(new qx.ui.menu.Button("Settings")); - - helpmnu.add(new qx.ui.menu.Button("Help")); - helpmnu.add(new qx.ui.menu.Button("About")); - - var filemn = new qx.ui.menubar.Button("File", filemnu); - var editmn = new qx.ui.menubar.Button("Edit", editmnu); - var optimn = new qx.ui.menubar.Button("Options", optimnu); - var helpmn = new qx.ui.menubar.Button("Help", helpmnu); - - menubar.add(filemn, editmn, optimn, new qx.ui.basic.HorizontalSpacer, helpmn); - doc.add(filemnu, editmnu, optimnu, helpmnu); - - - - var ld = []; - var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; - - for (var i=0, t; i<333; i++) - { - t=Math.round(Math.random()*4); - ld.push({ subject : { text : "Subject " + i }, from : { text : "qooxdoo User" }, date : { text : "01/26/2006" }}); - }; - - var lc = - { - subject : { label : "Subject", width : 200, type : "text" }, - from : { label : "From", width : 100, type : "text" }, - date: { label : "Date", width : 100, type : "text" } - }; - - var view = new qx.ui.listview.ListView(ld, lc); - - view.setLocation(200, 47); - view.setDimension(600, 530); - view.setBorder(qx.renderer.border.BorderPresets.getInstance().inset); - - doc.add(view); -};
\ No newline at end of file diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/index.html b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/index.html deleted file mode 100644 index 0eb9df08b4..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/index.html +++ /dev/null @@ -1,15 +0,0 @@ -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>qooxdoo » Demo » Web Mail</title> - <script type="text/javascript" src="script/webmail.js"></script> - </head> - <body> - <script type="text/javascript"> - if (!qx.IS_SOURCE) { - qx.log.Logger.ROOT_LOGGER.setMinLevel(qx.log.Logger.LEVEL_ERROR); - } - qx.core.Init.getInstance().setApplication(webmail.Application); - </script> - </body> -</html> diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/index.xhtml.tmpl b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/index.xhtml.tmpl deleted file mode 100644 index 9eadf1c666..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/index.xhtml.tmpl +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>qooxdoo » Demo » Web Mail</title> - <!-- qooxdoo-script-block --> - </head> - <body> - <script type="text/javascript"> - if (!qx.IS_SOURCE) { - qx.log.Logger.ROOT_LOGGER.setMinLevel(qx.log.Logger.LEVEL_ERROR); - } - qx.core.Init.getInstance().setApplication(webmail.Application); - </script> - </body> -</html> diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/C.po b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/C.po deleted file mode 100644 index e69de29bb2..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/C.po +++ /dev/null diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/de.po b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/de.po deleted file mode 100644 index e69de29bb2..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/de.po +++ /dev/null diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/en.po b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/en.po deleted file mode 100644 index e69de29bb2..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/en.po +++ /dev/null diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/es.po b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/es.po deleted file mode 100644 index e69de29bb2..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/es.po +++ /dev/null diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/fr.po b/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/fr.po deleted file mode 100644 index e69de29bb2..0000000000 --- a/webapps/qooxdoo-0.6.5-sdk/frontend/application/webmail/source/translation/fr.po +++ /dev/null |