ubuntu-business-defaults/0000775000000000000000000000000011717412103012723 5ustar ubuntu-business-defaults/unity/0000775000000000000000000000000011717412103014073 5ustar ubuntu-business-defaults/unity/launchers.txt0000664000000000000000000000015411717412103016620 0ustar @clear nautilus-home firefox libreoffice-writer libreoffice-calc libreoffice-impress ubuntu-software-center ubuntu-business-defaults/recommends.txt0000664000000000000000000000154711717412103015627 0ustar # These packages will become recommends of the generated defaults package, i. # e. will be installed by default on a customized image, but can be removed by # the user without removing the defaults package. Requirements for # official Ubuntu customization packages: # # - They should not conflict to a default installation package, or add # applications for a purpose which the default installation already has an # application for. For example, don't add thunderbird or pidgin when we already # have evolution or empathy # - They should preferably be in main. If they are not, consider writing a MIR, # or add a justification to a comment in depends.txt or the changelog. # Depending on universe packages will be a valid reason to reject an # ubuntu-defaults package. # # Format: arbitrarily many lines, one package name per line # # Example: # fortunes-de ubuntu-business-defaults/depends.txt0000664000000000000000000000143711717412103015113 0ustar # These packages will become dependencies of the generated defaults package, i. # e. will be installed by default on a customized image. Requirements for # official Ubuntu customization packages: # - They should not conflict to a default installation package, or add # applications for a purpose which the default installation already has an # application for. For example, don't add thunderbird or pidgin when we already # have evolution or empathy # - They should preferably be in main. If they are not, consider writing a MIR, # or add a justification to a comment in depends.txt or the changelog. # Depending on universe packages will be a valid reason to reject an # ubuntu-defaults package. # # Format: arbitrarily many lines, one package name per line # # Example: # manpages-de ubuntu-business-defaults/desktop/0000775000000000000000000000000011717412103014374 5ustar ubuntu-business-defaults/desktop/default-applications.txt0000664000000000000000000000054411717412103021250 0ustar # The following default association will either replace or be appended # to the existing applications system default for a given MIME type. # desktop files have to be provided without any extension. # # Format: arbitrarily many lines with # MIMEtype desktopfile # # Example: # application/ogg banshee # x-scheme-handler/mailto thunderbird # x-foo/bar toto ubuntu-business-defaults/desktop/default-session.txt0000664000000000000000000000034311717412103020242 0ustar # Set the default desktop session for login managers. Right now lightdm and # gdm are supported. # # Format: Single line with a session name. This must correspond to # /usr/share/xsessions/.desktop # # Example: #unity-2d ubuntu-business-defaults/hooks/0000775000000000000000000000000011717412103014046 5ustar ubuntu-business-defaults/hooks/chroot0000775000000000000000000000034511717412103015274 0ustar #!/bin/sh set -e # Hook for building live images # # This script is run in the built chroot after all packages are installed, # before it is packed into a squashfs. This is where you can apply extra tweaks # to the live system. ubuntu-business-defaults/icons/0000775000000000000000000000000011717412103014036 5ustar ubuntu-business-defaults/icons/scalable/0000775000000000000000000000000011717412103015604 5ustar ubuntu-business-defaults/icons/scalable/status/0000775000000000000000000000000011717412103017127 5ustar ubuntu-business-defaults/icons/scalable/apps/0000775000000000000000000000000011717412103016547 5ustar ubuntu-business-defaults/icons/48x48/0000775000000000000000000000000011717412103014635 5ustar ubuntu-business-defaults/icons/48x48/apps/0000775000000000000000000000000011717412103015600 5ustar ubuntu-business-defaults/icons/README0000664000000000000000000000020211717412103014710 0ustar You can place additional jpg, png, or svg icons here, but only into directories which already exist in /usr/share/icons/hicolor/. ubuntu-business-defaults/usr/0000775000000000000000000000000011717412103013534 5ustar ubuntu-business-defaults/usr/share/0000775000000000000000000000000011717412103014636 5ustar ubuntu-business-defaults/usr/share/unity-2d/0000775000000000000000000000000011717412103016311 5ustar ubuntu-business-defaults/usr/share/unity-2d/places/0000775000000000000000000000000011717412103017560 5ustar ubuntu-business-defaults/usr/share/unity-2d/places/HomeShortcutsCustomized.qml0000664000000000000000000000552111717412103025154 0ustar /* * This file is part of unity-2d * * Copyright 2010-2011 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 1.0 import Unity2d 1.0 Grid { anchors.fill: parent anchors.topMargin: 21 anchors.bottomMargin: 35 anchors.leftMargin: 46 anchors.rightMargin: 32 spacing: 45 columns: 4 rows: 2 function selectChild(index) { if (index < 0 || index >= children.length) return false currentIndex = index children[index].focus = true return true } property int currentIndex: 0 Keys.onPressed: if (handleKeyPress(event.key)) event.accepted = true function handleKeyPress(key) { switch (key) { case Qt.Key_Right: return selectChild(currentIndex+1) case Qt.Key_Left: return selectChild(currentIndex-1) case Qt.Key_Up: return selectChild(currentIndex-columns) case Qt.Key_Down: return selectChild(currentIndex+columns) } } HomeButton { focus: true label: u2d.tr("Office Apps") icon: "artwork/find_media_apps.png" onClicked: activateLensWithOptionFilter("applications.lens", "type", "office") } HomeButton { label: u2d.tr("Internet Apps") icon: "artwork/find_internet_apps.png" onClicked: activateLensWithOptionFilter("applications.lens", "type", "internet") } HomeButton { label: u2d.tr("More Apps") icon: "artwork/find_more_apps.png" onClicked: activateLensAndClearFilter("applications.lens", "type") } HomeButton { label: u2d.tr("Find Files") icon: "artwork/find_files.png" onClicked: activateLens("files.lens") } /* FIXME: use user's preferred applications instead of hardcoding them */ HomeButtonDefaultApplication { label: u2d.tr("Browse the Web") contentType: "x-scheme-handler/http" } HomeButtonDefaultApplication { label: u2d.tr("LibreOffice Writer") desktopFile: "libreoffice-writer.desktop" } HomeButtonDefaultApplication { label: u2d.tr("LibreOffice Calc") desktopFile: "libreoffice-calc.desktop" } HomeButtonDefaultApplication { label: u2d.tr("Check Email") contentType: "x-scheme-handler/mailto" } } ubuntu-business-defaults/etc/0000775000000000000000000000000011717412103013476 5ustar ubuntu-business-defaults/etc/skel/0000775000000000000000000000000011717412103014434 5ustar ubuntu-business-defaults/etc/skel/.config/0000775000000000000000000000000011717412103015757 5ustar ubuntu-business-defaults/etc/skel/.config/unity/0000775000000000000000000000000011717412103017127 5ustar ubuntu-business-defaults/etc/skel/.config/unity/HomeShortcutsCustomized.json0000664000000000000000000000201311717412103024674 0ustar { "shortcut1": { "source": "applications.lens", "filter": "type:office", "icon": "/usr/share/unity/4/find_files.png", "name": "Office Apps" }, "shortcut2": { "source": "applications.lens", "filter": "type:internet", "icon": "/usr/share/unity/4/find_internet_apps.png", "name": "Internet Apps" }, "shortcut3": { "source": "applications.lens", "icon": "/usr/share/unity/4/find_more_apps.png", "name": "More Apps" }, "shortcut4": { "source": "files.lens", "icon": "/usr/share/unity/4/find_files.png", "name": "Find Files" }, "shortcut5": { "source": "/usr/share/applications/firefox.desktop" }, "shortcut6": { "source": "/usr/share/applications/libreoffice-writer.desktop" }, "shortcut7": { "source": "/usr/share/applications/libreoffice-calc.desktop" }, "shortcut8": { "source": "/usr/share/applications/thunderbird.desktop" } } ubuntu-business-defaults/webbrowser/0000775000000000000000000000000011717412103015104 5ustar ubuntu-business-defaults/webbrowser/bookmarks-toolbar.txt0000664000000000000000000000035411717412103021277 0ustar # The following bookmarks will be appended to the default bookmark folders in the toolbar # For now only Firefox is supported. # # Format: arbitrarily many lines with # URL Name # # Example: # http://www.zeit.de Die Zeit Nachrichten ubuntu-business-defaults/webbrowser/offline-startpage.txt0000664000000000000000000000043011717412103021254 0ustar # The following URL will become the web browser start page when starting in offline mode. # For now only Firefox is supported. # # Format: single line with an URL, which should be locally available (file://) # # Example: # file:///usr/share/ubuntu-artwork/home/firefox-index.html ubuntu-business-defaults/webbrowser/bookmarks-menu.txt0000664000000000000000000000043311717412103020577 0ustar # The following bookmarks will be appended to the default bookmark folders in the menu # For now only Firefox is supported. # # Format: arbitrarily many lines with # URL Name # # Example: # http://www.ubuntu.de Deutsches Ubuntu-Forum # http://www.heise.de heise Computer-Nachrichten ubuntu-business-defaults/webbrowser/startpage.txt0000664000000000000000000000045611717412103017644 0ustar # The following URL will become the web browser start page. # For now only Firefox is supported. # # Format: single line with an URL. Using the ${distro_release_number} # or ${distro_release_name} macros is often useful here. # # Example: # http://www.ubuntuforums.org?release=${distro_release_number} ubuntu-business-defaults/webbrowser/searchengine.txt0000664000000000000000000000025111717412103020276 0ustar # The search engine that will be selected by default. # For now only Firefox is supported. # # Format: single line with search engine name # # Example: # Wikipedia (de) ubuntu-business-defaults/i18n/0000775000000000000000000000000011717412103013502 5ustar ubuntu-business-defaults/i18n/language.txt0000664000000000000000000000062611717412103016032 0ustar # Default language for installer images built with this defaults package. # Note that the defaults package itself does not configure the locale, this # only gets effective for image builds. # # Format: single line with language code (or ll_CC for the languages like zh # which have two major codes like zh_CN or zh_TW). See /isolinux/langlist on a # Ubuntu live CD for the complete list. # # Example: # de ubuntu-business-defaults/i18n/langpacks.txt0000664000000000000000000000140011717412103016201 0ustar # Language support included on built installer images. The user can still # select a different language than the ones included here, the language packs # and support packages will then be downloaded from the network. # Note that this does not affect package dependencies, only image builds, as # the set of support packages depends on the installed applications. # # Format: arbitrarily many lines, one language code per line. If the second # column is "complete", all additional support packages like LibreOffice help, # input methods, dictionaries etc. will be installed in addition; otherwise # only the language packs with the translations will be installed. Note that # complete language support takes a lot of CD space. # # Example: # de complete # es # zh-hans ubuntu-business-defaults/i18n/keyboard.txt0000664000000000000000000000061111717412103016041 0ustar # Default keyboard layout for installer images built with this defaults # package. Note that the defaults package itself does not configure the # layout, this only gets effective for image builds. # # Format: single line with # layout # or # layout variant # # Check /usr/share/X11/xkb/rules/xorg.lst for the complete list of available # layouts and variants. # # Example: # de nodeadkeys ubuntu-business-defaults/debian/0000775000000000000000000000000011717412262014153 5ustar ubuntu-business-defaults/debian/install0000664000000000000000000000001211717412103015527 0ustar usr/ etc/ ubuntu-business-defaults/debian/compat0000664000000000000000000000000211717412103015343 0ustar 7 ubuntu-business-defaults/debian/rules0000775000000000000000000000012611717412103015224 0ustar #!/usr/bin/make -f %: dh "$@" override_dh_install: dh_install dh_ubuntu_defaults ubuntu-business-defaults/debian/control0000664000000000000000000000114211717412103015546 0ustar Source: ubuntu-business-defaults Section: metapackages Priority: optional Maintainer: Kyle Nitzsche Build-Depends: debhelper (>= 7.0.50~), ubuntu-defaults-builder, python-distutils-extra Standards-Version: 3.9.2 #Vcs-Bzr: TBD Package: ubuntu-business-defaults Architecture: all Depends: ${misc:Depends}, ${ubuntudefaults:Depends}, ubuntu-artwork, ispell Recommends: ${ubuntudefaults:Recommends} Provides: ubuntu-default-settings Conflicts: ubuntu-default-settings Description: Default settings for Ubuntu customizations This package contains customized default settings. ubuntu-business-defaults/debian/changelog0000664000000000000000000002530711717412262016034 0ustar ubuntu-business-defaults (38) precise; urgency=low * Upload to precise. -- Martin Pitt Fri, 17 Feb 2012 09:49:44 +0100 ubuntu-business-defaults (37) oneiric; urgency=low * prep and cleanup for move to ubuntu -- Kyle Nitzsche Tue, 14 Feb 2012 09:47:23 -0500 ubuntu-business-defaults (36) oneiric; urgency=low * use Find Files icon for Office Apps in unity custom dash -- Kyle Nitzsche Wed, 11 Jan 2012 11:27:06 -0500 ubuntu-business-defaults (35) oneiric; urgency=low * use standard icons in custom unity dash for Internet Apps, More Apps and Find Files (instead of the defaul lens icons) -- Kyle Nitzsche Wed, 11 Jan 2012 11:21:30 -0500 ubuntu-business-defaults (34) oneiric; urgency=low * Provide custom unity dash with eight icons * Modify unity-2d dash from current six icons to match new unity dash * LP: #897273 -- Kyle Nitzsche Tue, 10 Jan 2012 12:13:59 -0500 ubuntu-business-defaults (33) oneiric; urgency=low * default-session: remove setting unity-2d as default. LP: #897272 -- Kyle Nitzsche Thu, 05 Jan 2012 09:38:53 -0500 ubuntu-business-defaults (32) oneiric; urgency=low * added ubuntu-software-center to launchers. LP #903990 -- Kyle Nitzsche Thu, 15 Dec 2011 21:58:15 -0500 ubuntu-business-defaults (31) oneiric; urgency=low * removed eula page from installer, including translation support for its GUI and translations of the actual eual text LP: #903998 * removed other packaging related to prevoius cusotmizations that are no longer needed. LP #904872 -- Kyle Nitzsche Thu, 15 Dec 2011 21:14:54 -0500 ubuntu-business-defaults (30) oneiric; urgency=low * fix panel launcher regression: LP: #894162 * remove other debian/postinst code related to ome-config+language-installer, now dropped -- Kyle Nitzsche Thu, 01 Dec 2011 11:55:37 -0500 ubuntu-business-defaults (29) oneiric; urgency=low * debian/control: remove depends on: - divert-langlist: since with revised project we want ubiquity to show all - language-installer: since with revised, we will not install lang packs for target langs -- Kyle Nitzsche Wed, 30 Nov 2011 09:23:09 -0500 ubuntu-business-defaults (28) oneiric; urgency=low * change unity-2d dash View Photos to LibreOffice: LP: 894161 -- Kyle Nitzsche Mon, 28 Nov 2011 17:06:51 -0500 ubuntu-business-defaults (27) oneiric; urgency=low * update panel launchers LP: 894162 * remove ubiquity-dm and its dpkg divert since its launching of oem-config is not needed now that we are switching to ubiquity-frontend-gtk -- Kyle Nitzsche Mon, 28 Nov 2011 14:51:24 -0500 ubuntu-business-defaults (26) oneiric; urgency=low * add adobe localized eula to oem-config: - canonical eula plus adobe - in both cases, if translated eula text file available, it is used, else English is displayed * debian/postrm: fix typo -- Kyle Nitzsche Sun, 20 Nov 2011 12:39:37 -0500 ubuntu-business-defaults (25) oneiric; urgency=low * pick up latest ubiquity-dm from trunk, and apply our change to launch language-installer -- Kyle Nitzsche Thu, 20 Oct 2011 11:35:04 -0400 ubuntu-business-defaults (24) oneiric; urgency=low * rebase diverted ubiquity-dm file on ubiquity release 2.7.34 plus bzr log entery 4976. -- Kyle Nitzsche Wed, 21 Sep 2011 12:54:32 -0400 ubuntu-business-defaults (23) oneiric; urgency=low * add depends on language-installer -- Kyle Nitzsche Tue, 20 Sep 2011 15:56:26 -0400 ubuntu-business-defaults (22) oneiric; urgency=low * add depends on divert-langlist * add real Maintainer in debian/copyright -- Kyle Nitzsche Tue, 20 Sep 2011 15:34:12 -0400 ubuntu-business-defaults (21) oneiric; urgency=low * debian/preinst, debian/postrm, usr/bin/ubiquity-dm: divert ubiquity-dm to this pkg and install one that launches language-installer * usr/lib/oem-config/post-install/remove-local-apt-archive: remove this because it is related to the approach of not using lanuage-installer, an approach that is now on-hold. -- Kyle Nitzsche Tue, 20 Sep 2011 15:30:39 -0400 ubuntu-business-defaults (20) oneiric; urgency=low * debian/postinst: run /usr/share/debconf/fix_db.pl to clean up debconf after ispell and dictionaries-common installation, which I have seen lead to a corrupted debconf db which in turn results in an error pop-up dialog in oem-config when lang packs are being installed. -- Kyle Nitzsche Mon, 19 Sep 2011 16:08:27 -0400 ubuntu-business-defaults (19) oneiric; urgency=low * debian/control: add depends on ispell to avoid /usr/share/ubiquity/\ oluginginstall.py hitting a debconf error on dictionaries-common. -- Kyle Nitzsche Fri, 16 Sep 2011 16:21:35 -0400 ubuntu-business-defaults (18) oneiric; urgency=low * debian/control: add proper maintainer (me) -- Kyle Nitzsche Fri, 16 Sep 2011 15:37:31 -0400 ubuntu-business-defaults (17) oneiric; urgency=low * debian/postinst: when generating locales, don't make them country specific so that all (utf8) locales for each language are generated * de.po, es.po and fr.po add temporary translations (msgstrs start with DE:, ES:, and FR: repectively, to prove translations display at runtime * usr/share/ubiquity/plugins/eula.glade: fix layout a little by padding to the left of the "I accept" checkbox -- Kyle Nitzsche Fri, 16 Sep 2011 15:35:27 -0400 ubuntu-business-defaults (16) oneiric; urgency=low * debian/postinst: fix another script error -- Kyle Nitzsche Thu, 15 Sep 2011 11:56:41 -0400 ubuntu-business-defaults (15) oneiric; urgency=low * debian/install: remove etc/* line since I am no longer installing a list file for the on-disk archive (using project build for that) -- Kyle Nitzsche Thu, 15 Sep 2011 09:58:29 -0400 ubuntu-business-defaults (14) oneiric; urgency=low * fix error postinst script that creates target locales * don't install /etc/apt/sources.list.d/oem-ondisk-archive.list because the apt line that points to the on-disk archive is now in the main /etc/apt/sources.list installed by the build * usr/lib/oem-config/post-install/remove-local-apt-archive: instead of rm that ^ (oem-ondisk-archive.list) file, instead use sed on /etc/apt/sources.list to rm the line that points to the on-disk archive -- Kyle Nitzsche Wed, 14 Sep 2011 20:46:42 -0400 ubuntu-business-defaults (13) oneiric; urgency=low * debian/postinst: create locales for target languages -- Kyle Nitzsche Wed, 14 Sep 2011 17:13:01 -0400 ubuntu-business-defaults (12) oneiric; urgency=low * debian/install: add installation of etc/ so that the on-disk sources.list apt config file is put in place for use by oem-config -- Kyle Nitzsche Wed, 14 Sep 2011 16:38:44 -0400 ubuntu-business-defaults (11) oneiric; urgency=low * etc/apt/sources.list.d/oem-ondisk-archive.list: add on-disk archive created by build config to apt so lang packs for user-selected language (in oem-config) are installed by oem-config * usr/lib/oem-config/post-install/remove-local-apt-archive: add script to delete the above .list file and the one-disk archive (/archive) after oem-config is done. -- Kyle Nitzsche Wed, 14 Sep 2011 11:23:33 -0400 ubuntu-business-defaults (10) oneiric; urgency=low * also remove optin plugin files from po/POTFILES.in -- Kyle Nitzsche Tue, 13 Sep 2011 09:26:48 -0400 ubuntu-business-defaults (9) oneiric; urgency=low * remove optin plugin page from oem-config * remove webcam plugin page from oem-config -- Kyle Nitzsche Fri, 09 Sep 2011 13:53:43 -0400 ubuntu-business-defaults (8) oneiric; urgency=low * remove gsettings override that had set gtk-theme to Radiance because Ambiance is the desired default until we get a full theme implementation * remove gsettings override to set launchers since this will now be done with unity/launchers.txt * unity/launchers.txt: start with clear option to replace launchers with these (instead of adding to them) -- Kyle Nitzsche Thu, 08 Sep 2011 15:06:40 -0400 ubuntu-business-defaults (7) oneiric; urgency=low * HomeShortcutsCustomized.qml: - pick up latest from unity-2d package which calls the correct function to filter (activateLensWithOptionFilter) OnClick for lenses. - Add "Office Apps" app lens * modified default launchers: to only three -- Kyle Nitzsche Tue, 06 Sep 2011 22:51:56 -0400 ubuntu-business-defaults (6) oneiric; urgency=low * add eula and optin oem-config pages with i18n infrastructure - current langs de en es fr. There is currently no EULA text. Dummy text displays that says: WE NEED EULA TEXT -- Kyle Nitzsche Tue, 30 Aug 2011 13:50:28 -0400 ubuntu-business-defaults (5) oneiric; urgency=low * WITH the gsettings override file this time :) -- Kyle Nitzsche Mon, 29 Aug 2011 17:04:35 -0400 ubuntu-business-defaults (4) oneiric; urgency=low * (try to) set the default gtk theme the proper way, with a dh_install\ gsettings override file -- Kyle Nitzsche Mon, 29 Aug 2011 17:01:25 -0400 ubuntu-business-defaults (3) oneiric; urgency=low * set default gtk theme gsetting to Radience by: - depending on ubuntu-artwork, which installs a gsetting override file that sets the default theme to Ambiance - changing that Radience in postinst -- Kyle Nitzsche Thu, 25 Aug 2011 17:49:04 -0400 ubuntu-business-defaults (2) oneiric; urgency=low * debian/install: add this * usr/share/unity-2d/places/HomeShortcutsCustomized.qml: add this -- Kyle Nitzsche Thu, 25 Aug 2011 16:55:57 -0400 ubuntu-business-defaults (1) oneiric; urgency=low * desktop/default-session.txt: set default session to unity-2d * add a temporary desktop background. -- Kyle Nitzsche Thu, 25 Aug 2011 12:18:19 -0400 ubuntu-business-defaults/debian/postinst0000664000000000000000000000017111717412103015752 0ustar #!/bin/bash set -e #DEBHELPER# # remove webcam plugin from oem-config rm -f /usr/lib/ubiquity/plugins/ubi-webcam.py* ubuntu-business-defaults/debian/copyright0000664000000000000000000000107411717412103016102 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: ubuntu-business-defaults Upstream-Contact: Kyle Nitzsche Files: * Copyright: Portions Copyright (C) 2011 Canonical Ltd. License: GPL-3+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . The full text of the GPL is distributed as in /usr/share/common-licenses/GPL-3 on Debian systems. ubuntu-business-defaults/multimedia/0000775000000000000000000000000011717412103015055 5ustar ubuntu-business-defaults/multimedia/radiostations.txt0000664000000000000000000000046311717412103020504 0ustar # List of radio stations in Rhythmbox and Banshee # # Format: arbitrarily many lines with # URL; Genre; Name # # Example: # http://www.radioparadise.com/musiclinks/rp_128.m3u; Eclectic Rock; Radio Paradise # http://www.swr3.de/wraps/musik/webradio/aplayer/stream_extern.php?format=mp3e&channel=0; Pop; SWR3