Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replacing Camtasia export files with a deployment export of the mp4 i…
…n a xerte video page as a result of the discussion on the community site about Flash detection. Could compress the mp4 further to reduce total size but would lose text sharpness as a result.
  • Loading branch information
ronm123 committed Jul 29, 2015
1 parent d148136 commit 2dbec75
Show file tree
Hide file tree
Showing 210 changed files with 48,444 additions and 421 deletions.
Binary file added modules/xerte/training/common_html5/Thumbs.db
Binary file not shown.
Binary file added modules/xerte/training/common_html5/arrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/xerte/training/common_html5/card.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions modules/xerte/training/common_html5/charPad.xml
@@ -0,0 +1,53 @@
<data>

<language name="French">
<char case="lower">àâäçèéêëîïôœùûüÿ</char>
<char case="upper">ÀÁÄÇÈÉÊËÎÏÔŒÙÛÜŸ</char>
</language>

<language name="German">
<char case="lower">äöüß</char>
<char case="upper">ÄÖÜß</char>
</language>

<language name="Italian">
<char case="lower">àèéìòóù</char>
<char case="upper">ÀÈÉÌÒÓÙ</char>
</language>

<language name="Portuguese">
<char case="lower">àáâãçéêíóôõúü</char>
<char case="upper">ÀÁÂÃÇÉÊÍÓÔÕÚÜ</char>
</language>

<language name="Spanish">
<char case="lower">áéíñóúü¿¡</char>
<char case="upper">ÁÉÍÑÓÚÜ¿¡</char>
</language>

<language name="Polish">
<char case="lower">ąćęłńóśźż</char>
<char case="upper">ĄĆĘŁŃÓŚŹŻ</char>
</language>

<language name="Russian">
<char case="lower">абвгдеёжзийклмнопрстуфхцчшщъыьэюя</char>
<char case="upper">АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ</char>
</language>

<language name="Slovene">
<char case="lower">čšž</char>
<char case="upper">ČŠŽ</char>
</language>

<language name="Croatian">
<char case="lower">čćđšž</char>
<char case="upper">ČĆĐŠŽ</char>
</language>

<language name="Serbian">
<char case="lower">čćđšž</char>
<char case="upper">ČĆĐŠŽ</char>
</language>

</data>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/xerte/training/common_html5/cross.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
101 changes: 101 additions & 0 deletions modules/xerte/training/common_html5/css/desktopStyles.css
@@ -0,0 +1,101 @@
/**
* Licensed to The Apereo Foundation under one or more contributor license
* agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
* The Apereo Foundation licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/* DESKTOP & TABLET LAYOUT CSS (not mobile) */

/* _floatLeft & _floatRight display inline on mobiles */
#x_pageDiv .x_floatLeft {
margin-left: 0px;
padding: 10px;
}

#x_pageDiv .x_floatRight {
margin-right: 0px;
padding: 10px;
}

/* these all display as width 100% on mobiles */
.width40 {
width: 40%;
}

.width50 {
width: 50%;
}

.width60 {
width: 60%;
}

.width80 {
width: 80%;
}

.width100 {
width: 100%;
}

/* displays as one column on mobiles */
.splitScreen {
padding: 0 0 0 50%;
position: relative;
}

.splitScreen.small {
padding: 0 0 0 20%;
}

.splitScreen.medium {
padding: 0 0 0 40%;
}

.splitScreen.large {
padding: 0 0 0 60%;
}

.splitScreen.xlarge {
padding: 0 0 0 80%;
}

.splitScreen .left {
position: absolute;
top: 0;
left: 0;
width: 50%;
}

.splitScreen.small .left {
width: 20%;
}

.splitScreen.medium .left {
width: 40%;
}

.splitScreen.large .left {
width: 60%;
}

.splitScreen.xlarge .left {
width: 80%;
}

.splitScreen .right {
margin-left: 10px;
}

0 comments on commit 2dbec75

Please sign in to comment.