This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Esse é um carrosel. Ele pega os posts ordenados de um container box. #} | |
{% load static obj_tags images_tags %} | |
<section class="slice animate-hover-slide greyBg"> | |
<div class="w-section inverse blog-grid"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<!-- Carousels --> | |
<div> | |
<h3 class="whiteFg section-title"><span class="text-center">Disfruta de algunas de las conferencias de Campus Party</span></h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Esse é o template para o container box "home-hero-items-box" depende de dois posts #} | |
{% load static obj_tags images_tags %} | |
<section class="slice animate-hover-slide bg-3"> | |
<div class="w-section inverse"> | |
<div class="container"> | |
<div class="row"> | |
{% for article in articlebox.ordered_containers %} | |
<div class="col-md-6"> | |
<div class="w-box"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load static mptt_tags %} | |
<section class="darkGreyBg darkDarkGreyTop"> | |
<div class="container"> | |
<div class="row row-centered cp-nav"> | |
{% recursetree opps_menu %} | |
{% if not node.is_leaf_node and node.name == "Ediciones" %} | |
<ul>{{ children }}</ul> | |
{% endif %} | |
{% endrecursetree %} | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ Installer_maxosx ./Install.sh | |
javax.xml.transform.TransformerException: java.io.FileNotFoundException: /Users/.lgsdkTvregistery/.webosTVregistery.xml (No such file or directory) | |
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(TransformerImpl.java:529) | |
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:344) | |
at com.lge.sdk.ngtv.installer.ConfigurationManager.WriteConfigFile.writeConfig(Unknown Source) | |
at com.lge.sdk.ngtv.installer.ConfigurationManager.ConfigurationManager.initilizeConfigFile(Unknown Source) | |
at com.lge.sdk.ngtv.installer.installerscreen.MainUI$4.handleEvent(Unknown Source) | |
at org.eclipse.swt.widgets.EventTable.sendEvent(Unknown Source) | |
at org.eclipse.swt.widgets.Display.sendEvent(Unknown Source) | |
at org.eclipse.swt.widgets.Widget.sendEvent(Unknown Source) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Macaw", | |
"description": "An open source micro-blogging client", | |
"version": "1.0.0", | |
"launch_path": "/index.html", | |
"icons": { | |
"512": "/icon512.png", | |
"256": "/icon256.png", | |
"128": "/icon128.png", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The maps api is loaded using the Google Loader. Include | |
* <script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
* in your index.html to use this component. | |
*/ | |
enyo.kind({ | |
name: 'Google.DirectionsService', | |
kind: 'Control', | |
published: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The article hosted on http://www.efytimes.com/e1/fullnews.asp?edid=132039 is wrong in many places. There are many misconceptions such as: | |
Item 3: Swiping to the left doesn't reveal category. Reveals the adaptative app search that allows you to get the content you need without the need of installing apps. It also shows smart collections. | |
Item 4: Completelly wrong. Hosted apps are not hosted on Mozilla servers, they are hosted in their own server. They can work offline when the developer uses appCache. Packaged app makes no use of HTML5 caching because they are already on the device. | |
Item 5: The correct way to try out Firefox OS is by using the Firefox OS Simulator add-on or the App Manager. | |
Item 6: The list is completely wrong. The current devices are: Commercial devices available on retails: LG Fireweb, ZTE Open, Alcatel One Touch Fire. There are some Android devices that can support Firefox OS but this is not the recommended way. Also there is the Geeksphone Keon, Peak and Revolution that are developer d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"app-logo": "Appmaker", | |
"Build App": "Construir aplicativo", | |
"Cancel remixing this widget.": "Cancelar o remix desse widget.", | |
"Cancel": "Cancelar", | |
"Click Me": "Clique em mim", | |
"Component Description": "Descrição do componente", | |
"Component Name": "Nome do componente", | |
"Congratulations!": "Parabéns!", | |
"Continue": "Continuar", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fireReadyCallbacks(url) { | |
// Fire all ready callbacks we have queued up. | |
console.log("Available callbacks", _readyCallbacks) | |
while(_readyCallbacks.length > 0) { | |
var callback = _readyCallbacks.pop() | |
if (typeof callback === "function") { | |
console.log("Callback available, firing it", callback); | |
callback(); | |
} else { | |
console.log("What?!?!", callback); |