Questions tagged [moovweb]

Moovweb is a mobile development framework that gives you total control over the user experience of your site.

Moovweb is a mobile development framework that gives you total control over the user experience of your site.

Learn more at http://developer.moovweb.com

112 questions
3
votes
0 answers

Cookies going through moovweb project have their domains overwritten to "."

I have a project using the mixer "simple-mobile (1.0.183)". I a request returns a response with the Set-Cookie header, those cookies have the domain set to just "." Here's an example response header from a curl: HTTP/1.1 200 OK Server: nginx…
noj
  • 2,542
  • 1
  • 14
  • 9
3
votes
2 answers

Is there an easy way to add/remove/modify query parameters of a URL in Tritium?

I saw a very manual way of doing this in another post: How do I add a query parameter to a URL? This doesn't seem very intuitive, but someone there mentioned an easier way to accomplish this using the upcoming "URL scope". Is this feature out yet,…
3
votes
1 answer

Is there an easy way to add entirely new content using the Moovweb SDK?

I'm trying to make a simpler version of Facebook but want to construct a landing page from scratch. Right now, I'm doing something like home.ts $("/html/body") { remove("./*") insert("div", id: "wrapper") { insert("div", id: "categories") { …
3
votes
2 answers

How to move AJAX'd content in Javascript w/ Moovweb SDK?

So sometimes when working with the Moovweb SDK a client will AJAX in a content spot, but it will be in the incorrect area? I cannot use tritium to move this content, because the area I want to move it to is inserted after page load! Example:
3
votes
1 answer

Moovweb - uncompress gzipped outgoing_response.http content?

I have a Moovweb project and I'm trying to compare the incoming_response.http and outgoing_response.http files in tmp/messages/... folders. The incoming_response.http from the upstream server is saved in plain text, but the outgoing_response.http…
gregorygtseng
  • 851
  • 4
  • 12
3
votes
1 answer

In tritium, how can I do math operations?

I am transforming a website that contains elements with inline styles with fixed width and heights in pixels, like this:
...
I would like to create a function…
fegemo
  • 2,475
  • 6
  • 20
  • 40
3
votes
1 answer

Tritium Function Design for Responsive/JavaScript Frameworks

I'm using Moovweb/Tritium to make a regular desktop site responsive using the Zurb Foundation framework. As part of this I'd like to create helper functions for enabling Foundation widgets like the the Uranium integrations already in Moovweb. But…
Ishan
  • 1,346
  • 9
  • 11
3
votes
2 answers

In Tritium, how do I transform all

tags to

I’m working in the Moovweb SDK and am optimizing my personal desktop site for mobile. How do I transform all my

tags to

tags? I really don't want to do it manually! Search and replace?? haha
Currin Berdine
  • 287
  • 1
  • 10
3
votes
2 answers

In Tritium, how do I switch the position of two elements?

I have two elements next to each other like this:
What's the fastest way to switch the order of the two child elements?
gregorygtseng
  • 851
  • 4
  • 12
3
votes
2 answers

Mobile optimizing a WordPress blog using Moovweb SDK

What is the best way to mobile optimize my Wordpress blog that is image heavy without having to do device specific image editing? The general structure of my posts is something like this:
3
votes
1 answer

Transforming tables in html using tritium

I'm using the Moovweb SDK and I'd like to transform a table and all it's elements into divs to facilitate mobile web dev/styling. What is the best way to do this? …
Alex De Simone
  • 572
  • 1
  • 4
  • 8
3
votes
2 answers

Using tritium to move html elements

I'm using the Moovweb SDK to make a mobile version of a website and I need to move an image from one div to another. How can I do this using tritium?
...
Alex De Simone
  • 572
  • 1
  • 4
  • 8
3
votes
1 answer

How can I set up a mappings file in a Moovweb project if there are no unique URL paths?

I want to set up the mappings.ts file in my Moovweb project. The answer on how to set up the mappings file was informative but focused on URL paths. My site has lots of pages that look the same (so can probably be transformed with the same Tritium…
michael
  • 209
  • 1
  • 7
3
votes
1 answer

iOS6 redirect to secure pages with invalid SSL certificate not working

I have a page which takes users from an insecure page to a secure page via a redirect, but it is not working on iOS6 Safari. The secure page has an invalid certificate as this is a testing environment, but on iOS5 and Android 4 I am given the option…
3
votes
1 answer

WebSocket connections and Tritium

Can a site use Tritium while also establishing open socket connections with whatever host you are 'filtering' requests from? Let's say I wanted to clone a site which is using WebSockets to keep open connections for a browser chat client. Would…
C N
  • 41
  • 3
...