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
| <?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" dir="ltr" lang="en" xml:lang="en"> | |
| <head> | |
| <title>Administration</title> | |
| <base href="https://furniturefitter.com/admin/" /> | |
| <link rel="stylesheet" type="text/css" href="view/stylesheet/stylesheet.css" /> | |
| <link rel="stylesheet" type="text/css" href="view/javascript/jquery/ui/themes/ui-lightness/ui.all.css" /> | |
| <script type="text/javascript" src="view/javascript/jquery/jquery-1.3.2.min.js"></script> | |
| <script type="text/javascript" src="view/javascript/jquery/ui/ui.core.js"></script> |
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
| 23:54:37,836 INFO [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management | |
| 23:54:37,837 INFO [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990 | |
| 23:54:37,837 INFO [org.jboss.as] (Controller Boot Thread) JBAS015874: JBoss AS 7.x.incremental.667 "Steropes" started in 1580ms - Started 124 of 178 services (53 services are passive or on-demand) | |
| 00:08:08,084 INFO [org.jboss.as.server.deployment] (MSC service thread 1-14) JBAS015876: Starting deployment of "ROOT.war" (runtime-name: "ROOT.war") | |
| 00:08:11,272 INFO [io.escalante.artifact.maven] (pool-5-thread-1) Downloading: http://repo1.maven.org/maven2/org/scala-lang/scala-library/2.10.2/scala-library-2.10.2.pom | |
| 00:08:11,525 INFO [io.escalante.artifact.maven] (pool-6-thread-1) Downloading: http://repo1.maven.org/maven2/org/scala-lang/scala-library/2.10.2/scala-library-2.10.2.jar | |
| 00:08:21,679 INFO [io.escalante.artifact.maven] (pool-7-thread-1) Dow |
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
| > last *:escalante-run | |
| java.util.zip.ZipException: error in opening zip file | |
| at java.util.zip.ZipFile.open(Native Method) | |
| at java.util.zip.ZipFile.<init>(ZipFile.java:127) | |
| at java.util.jar.JarFile.<init>(JarFile.java:135) | |
| at java.util.jar.JarFile.<init>(JarFile.java:99) | |
| at io.escalante.sbt.EscalantePlugin$.unzip(EscalantePlugin.scala:283) | |
| at io.escalante.sbt.EscalantePlugin$.runEscalante(EscalantePlugin.scala:231) | |
| at io.escalante.sbt.EscalantePlugin$$anonfun$baseEscalanteSettings$8.apply(EscalantePlugin.scala:91) | |
| at io.escalante.sbt.EscalantePlugin$$anonfun$baseEscalanteSettings$8.apply(EscalantePlugin.scala:91) |
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(){ | |
| $(document).ready(function() { | |
| //Just like Lift removes elements with this class name | |
| $('.clearable').remove(); | |
| $(document) | |
| .on('new-ng-chat', function(event, data) { | |
| addNGMessages( data ) | |
| }) | |
| .on('initial-chat-messages', function(event, data){ | |
| //We do this to get the array as one var. |
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
| /** | |
| * Add a related item, it connects both items on both sides of the relationship | |
| */ | |
| def connectRelatedBothWays(originKey: Long, relatedKey: Long) = { | |
| connectRelated(originKey, relatedKey) | |
| connectRelated(relatedKey, originKey) | |
| } | |
| /** | |
| * Add a related item |
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
| scala> import net.liftweb.util.Helpers._ | |
| import net.liftweb.util.Helpers._ | |
| scala> val html = <div class="domnav"> | |
| | <div class="header"> | |
| | <p>Paragraph for header</p> | |
| | </div> | |
| | <div class="main"> | |
| | <h2>Title main</h2> | |
| | <p>Paragraph for main</p> |
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(window, $) { | |
| window.fmpwizard = { | |
| views: { | |
| DropDownMenus: function(){ | |
| var self = this; | |
| self.initDropDown = function(selector, url){ | |
| if ($(selector).attr('class').contains('select2-offscreen')) { | |
| //if we already init'ed this element, exit. | |
| return; | |
| } |
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
| object Worker1 extends AddItem | |
| object Worker2 extends AddItem | |
| object Worker3 extends AddItem | |
| object DoneWithWork | |
| trait AddItem extends LiftActor with Loggable { | |
| override def messageHandler = { | |
| case item: InventoryItem => Inventory.addItem(item) | |
| case DoneWithWork => logger.info("I'm done with work.") |
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
| val jsNotice = | |
| """$('#lift__noticesContainer___notice li') | |
| |.addClass("alert alert-success") | |
| |.append('<button type="button" class="close" data-dismiss="alert">×</button>')""".stripMargin | |
| val jsWarning = | |
| """$('#lift__noticesContainer___warning li') | |
| |.addClass("alert") | |
| |.append('<button type="button" class="close" data-dismiss="alert">×</button>')""".stripMargin |
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
| package com.fmpwizard.xyz.code | |
| package lib | |
| package search | |
| import net.liftweb.common.{Loggable, Full, Box, Logger} | |
| import com.twitter.finagle.ServiceFactory | |
| import org.jboss.netty.handler.codec.http._ | |
| import com.twitter.finagle.builder.ClientBuilder | |
| import com.twitter.finagle.http.Http |