Opa is a new open source programming language that replaces Javascript, HTML, CSS, PHP, and SQL with one unified language. Opa therefore provides a unified syntax and semantics for writing all aspects of a web application: client-side, server-side and database queries. But it’s not only about ...

learn more… | top users | synonyms

1
vote
0answers
31 views

Where to find opa api docs

http://doc.opalang.org/api has has been down for several days, is there a mirror Thanks
0
votes
1answer
33 views

How can I convert a timestamp INT into a Date format?

Hello I'm trying to convert an INT timestamp in to an OPA Date format ! I would have checked on the opalang API documentation, but it is not available at the moment. Is there a solution ? ...
0
votes
0answers
23 views

Opa xml rpc server suggestions

I'm new to opa and my first challenge is to port an XML RPC server implementation over from groovy into an opa module. Now I'm new to functional programming, since I have mostly programmed in an OO ...
0
votes
0answers
111 views

Error while installing opa

I am trying to install OPA on my 64bit Win 7 and getting these errors. I am using node.js v0.10.3 and latest of mongodb and opa. Please help figuring the reason for this error. > bson@0.1.8 ...
0
votes
1answer
84 views

Is Opa's native database and server still available?

I tried out Opa a couple of years ago. At that time you could compile an Opa program down to a single executable that contained the server and database. Coming from a desktop application programming ...
0
votes
0answers
128 views

Aloha, Opa and Plupload jQuery conflict

I am using Opa framework which is built on top of jQuery, and the generated code is one "big" (small compared to Aloha ;) ) JS file with merged jQuery. I am using several JS plugins, including Aloha ...
1
vote
1answer
81 views

Opa: higher order function application

In Opa, it is possible to partially apply functions. However, I would like to supply a function with all its arguments, and return a function taking no arguments. For example: function make-thunk(f, ...
0
votes
0answers
40 views

opa : support for openId or even better browserId

Is there some support for OpenID or even better, BrowserId login methods in opa ? Thanks,
1
vote
1answer
50 views

MongoDriver.sndrcv(query): comms error (Can't reconnect)

I have a strange error suddenly when running my Opa script after it successfully compiled: Jeroens-MacBook-Pro:CollabTextEditor jeroen$ ./CollabTextEditor.exe Http serving on ...
1
vote
1answer
37 views

Requesting member of node_element results in “undefined”

I'm using Opa for a school project in which there has to be some synchronization of a textfield between several users. The easy way to solve this, is to transmit the complete field whenever there is a ...
1
vote
1answer
68 views

OPA: the HttpRequest.get_body() is not working

I am testing a opa example for REST call on Mac os X 10.8.2 + OPA 1.0.7 + node.js v0.8.14. first, I follow the example : ...
0
votes
2answers
399 views

Opa command throws npm error, and doesn't run compiled projects

I am using Windows 7 64-bit. Whenever I try to build my projects via command prompt, using opa command it generates a .js file which, when run, thows an error, saying: module.js: 340 throw err; - and ...
0
votes
1answer
257 views

node.js error: uv_signal_start EINVA

I built the opa from source on a 32bit Debian linux(uname says it is i686) and when I issued "opa create example" on the command line I got this error message: node.js:593 throw ...
0
votes
1answer
55 views

Opa: Passing Variables to Event Handlers within Iterations

To Opa Folks out there, I have been puzzled by this issue all of this past weekend. What I am trying to do in my View, is Iterate through a DBSet returned by my Model data call, generating an XHTML ...
0
votes
2answers
132 views

Opa flow control, threading?

Node.js itself supports worker threads and creation of child processes. Those of you who have worked with Node.js, may be familiar with flow control libraries such as Async.js or Step. Now since Opa ...
0
votes
1answer
61 views

opa smtp server usage

I noticed the Opa API has a SMTPServer extension. I'm not entirely sure how this is to be used. Is what functions of email parsing built in and which have to be written in the handler? I'd appreciate ...
1
vote
2answers
158 views

opa : deploy with node.js

What would you advise to deploy an opa app under linux using the node.js backend ? When using the "native" backend, I used to deploy the *.exe in /usr/local/bin/. Now, with the node.js backend, the ...
1
vote
1answer
150 views

opa : sending mail

I'm trying to send an email using SmtpClient.try_send(). This code used to work before opa switch to the node.js backend : import stdlib.web.mail.smtp.client import stdlib.web.mail function start() ...
0
votes
1answer
74 views

How can one determine the type of a variable in opa?

I' learning the Opa (opalang.org). I am trying to find out how one can determine the type of a variable. This could be e.g. a function typeof a // in javascript, this returns the type of a The ...
1
vote
2answers
80 views

Executing custom generated JavaScript after resources JS file

I am trying to add a Leaflet map into my app and it requires adding some JS code after including Leaflet's CSS and JS. Opa server adds CSS in the <head> HTML node, but the <script> for the ...
1
vote
1answer
62 views

Node with Opa app crashes when trying to connect to unavailable CouchDB

I am working on Opa app using CouchDB as a database backend. When fetching a document with API function CouchDd.Document.get (API doc) and the DB server is down, my app crashed: ...
0
votes
1answer
83 views

opa database : how to know if value exists in database?

I'd like to know if a record is present in a database, using a field different from the key field. I've try the following code : function start() { jlog("start db query") myType d1 = ...
0
votes
1answer
241 views

dotcloud opa examples mongodb error

I've been trying to understand how to deploy Opa apps on dotcloud. The default app works, but the wiki example from the Opa docs fails to launch with: ==> /var/log/supervisor/opa.log <== [Opa] ...
0
votes
1answer
95 views

How to use modules in Opa?

OK, this is pretty basic question, but I cannot figure this out... What is the correct way to call functions from modules? The way I do it is: main.opa: function start(){ Page.page(); } ...
0
votes
1answer
191 views

Opa: Nodejs not found

I get the following message while trying to ./configure opa_v2980 using Cygwin in Windows XP 32-bit: Checking for nodejs... Not found I've already successfully installed nodejs in Cygwin using ...
0
votes
1answer
50 views

What exactly is meant with 'top-level' in an Opa program?

I was browsing the source of the OpaDo program and noticed that in the module Todo a function called mypage got called. This function is declared in the file 'ui', but nowhere in the file todo.opa ...
0
votes
2answers
81 views

Is it possible to compile the src directory in a single command?

I would like to compile all the .opa files in my src directory in a single command without having to specify each file manually, or having to specify them manually in a config file. This is the ...
0
votes
1answer
46 views

opa : binary_to_string / String.contains error

My opa application fails when I use the String.contains method on a string read from a file : import stdlib.io.file import stdlib.core function start() { txt = ...
1
vote
2answers
106 views

Implementing callbacks in opa

I'm trying to implement callbacks in opa, so when a variable gets updated on the server side, clients get that updated value immediately. I know I could do it with a network: ...
0
votes
1answer
74 views

Error when trying to build Opa application

I'm just trying to build the basic hello_chat application from the Opa docs. If I try building from the command line using: opa ..filepath\hello_chat.opa I get an error saying Warning ...
1
vote
1answer
128 views

How to implement authentication?

I'm relatively new to Opa, but I've been keeping my eye on it for a while now. And I really like where it's going. One thing that I can't get my head around is authentication in Opa. How do I track ...
1
vote
1answer
74 views

Opa: How to remove objects from the database?

I want to delete an object in a db set. Preferably with a path expression and a conditional. Something like delete /wiki/page[content=""] If this is not possible, is there any other ...
1
vote
1answer
46 views

opa : stringmap compilation error and HttpRequest.Generic.get_form_data(HttpRequest.request x)

I'm trying to compile the following code, but it falis : import stdlib.core.map function f() { stringmap(string) myM = StringMap.add("rabbit", "horse", StringMap_empty) string ...
1
vote
1answer
77 views

Opa: How to store short term data clientside?

Newbie question here, I'm trying to store persistent data on the client in my Opa program. It's fine if this is exposed to the user as it's non-critical (it's essentially a nickname). In PHP or ...
0
votes
1answer
152 views

How do I make a client side http request in opa?

I need to make a client side http request to receive a string. I am struggling to find a method that works on the client. I found WebClient.Get. But this one only works on the server. Threading it ...
1
vote
2answers
56 views

Opa Executable Not Being Created

When I go to compile something with Opa, whether it be something I've written, or even the really simple 'Hello, web!' script, I see that no executable is produced. It is producing a _build directory ...
0
votes
1answer
87 views

Json data in an object

I would like put the json data in a object in opa. I saw a comment ( parsing a webclient.Result content in OPA ) which describes how to do that but I tried that approach and can't make it work with ...
1
vote
1answer
88 views

Where is the documentation for Opa's classic syntax?

The blog post introducing the new syntax said that the old MLish syntax would still be available and supported, and there's nothing in the changelog suggesting that it was ever gotten rid of, but I ...
2
votes
1answer
128 views

Opa 1.01 : how to prevent opa from running it's own mongo database

I've switched to opa 1.0.1, and it seems that now opa install it's own mongodb in ~/.opa/mongo. Apaprently, this mongo instance is runned on the default 27017 port. How can I prevent opa from running ...
0
votes
1answer
882 views

opa 1.01 : node.js -> Error: Cannot find module 'mongodb'

I've tried to compile my opa project with the new release 1.0.1. I'm now using : node myApp.js to run the server. I get the following error : module.js:337 throw new Error("Cannot find module ...
1
vote
1answer
75 views

opa 1.0 : server does not start

I've just updated opa to 1.0. When I compile my opa files, I now get a .js file instead of a .exe file. When I try to run this .js file (which is executable), I get the error "Killed". What's worng ...
0
votes
1answer
56 views

Opa exectuable error: Can't get system language

I'm just learning the Opa language and going through their Manual. In the third section of the Manual, it shows you how to build the app "Hello, chat". I have copied and pasted the .css and .opa ...
0
votes
0answers
59 views

opa : is it possible to access the client-side database?

For a web application that synchronize between two database. These two databases resides on two client-side machines, and having the same structure. Logging on to the web application from these two ...
2
votes
1answer
56 views

opa : paypal and IPN

I'd like to use paypal on my opa website. To validate a paiement, paypal propose the IPN mechainsm that send hidden POST form data to a pre defined page. How can I get those POST value using opa ? ...
1
vote
2answers
106 views

Opa : insert new element to the Database

I'm in OPA for some days now and I really start to like it. I'm attending the first year of computer science and we make some database class the next year- The little I know about Databases are from ...
0
votes
1answer
67 views

opa : website maintenance [closed]

What is the proper way to do maintenance operation on a opa website ? Is there a way to know if somebody is connected to the website ? Can I brodcast a message to all the people connected to the ...
3
votes
1answer
159 views

How to parse XML with Opa?

if you want to connect an Opa web client with a XML-RPC server. The right way to send a request is probably xml request_body = @xml( <methodCall> ...
1
vote
3answers
173 views

Opa: What is the difference between modules and packages?

I read Opa documentation, but I did not catch the difference between modules and packages, and how modules or packages are linked to the source layout of an Opa application. Can someone provide ...
1
vote
1answer
111 views

How to manipulate client connections

I'm making an on-line multiple players game using Opa,and have some questions on how to manipulate client connections. Here is my code extract: function game_view(){ function page_ready(){ ...
2
votes
1answer
107 views

Opa : howo to manipulate stringmap (and other map)

I want to create a Stringmap, add some values inside, and pass it some function. I've tried this : import stdlib.core.map mymap = StringMap_empty mymap["rabbit"] = 12 function addmap(map) { ...

1 2 3 4