The Nitrogen Web Framework is a framework for building full-stack Erlang web applications.
0
votes
1answer
85 views
Nitrogen Server
I would like to know which server is the best to use for the Nitrogen Web Framework?
Of the 5 listed on the site, I have already removed Inets(not recommended for production) and WebMachine. Left with ...
2
votes
2answers
59 views
Retrieving #dropdown selection in nitrogen framework
I'm using the erlang nitrogen web framework to develop an application.
I must be missing something really simple, but I cannot figure out how to retrieve the selection made by a #dropbox element. It ...
0
votes
1answer
87 views
Usage of audio and video tag in Nitrogen
Still working on my personal web server, I was trying to use the html5 audio and video tags within Nitrogen.
As there is no #audio nor #video records, I decided to insert html text directly in the ...
1
vote
1answer
86 views
How to manage several users in nitrogen/inets erlang
I am building a simple web site for my family usage, using Nitrogen/Inets.
The current version works as expected as long as I have a single client connected to the web server.
If I try to connect a ...
2
votes
1answer
49 views
Setting content header for file download in Nitrogen webserver
I am dynamically generating a file on Nitrogen Webserver and want the browser to show the name of file in download dialog.
Currently I am setting something like this -
...
1
vote
1answer
69 views
I cannot access to nitrogen/inets server from any machine but the localhost
Thanks to many discussions in this forum, I found that I should be able to build the application I was planning to do for home usage based on Nitrogen.
So I ran into Nitrogen tutorials, Demo and ...
2
votes
1answer
114 views
How to call an erlang function in nitrogen?
-module (blah).
-compile(export_all).
-include_lib("nitrogen_core/include/wf.hrl").
main() -> #template { file="./site/templates/bare.html" }.
title() -> "Welcome to Nitrogen".
body() ->
...
1
vote
2answers
131 views
How to get full URL of a page with Nitrogen?
I want to make certain pages of my site available only by https. I think it would be ok to recognize protocol right in the page.erl and then redirect to
the right URL. Something like
case Protocol of
...
1
vote
1answer
116 views
Mnesia Replication and Large Numbers of Dirty Operations
Some applications require really fast response, to meet their expectations to users. I am building one such application and i am using mnesia. Now, when we by-pass the mnesia transaction manager , we ...
1
vote
1answer
79 views
Nitrogen - File upload
I can easily upload a file using Nitrogen's #upload{} element, it works great.
However, I am using client side Javascript to create an html file upload form (not using #upload{} tag in Nitrogen .erl ...
1
vote
1answer
67 views
How to determine referer in Nitrogen?
I know about $_SERVER['HTTP_REFERER'] in PHP, and I believe there is something as simple as that in Nitrogen, but I just can't find it in documentation.
4
votes
1answer
105 views
How to add a tooltip to a button
It is very easy with links and images. One could just specify title="Something" to get a nice tooltip over an element. But somehow I don't see any convenient way to do the same to a button. Seems like ...
1
vote
3answers
140 views
Erlang cookies in Nitrogen
I'm trying to do call from nitrogen to a separate Erlang node on the same machine (currently testing it from the Nitrogen console, but the eventual goal is to have a call from a webapp to this other ...
0
votes
2answers
130 views
Destroying a Data Structure when program doesnot need it anymore — Erlang
Certain functions that manipulate Tuples in Erlang, result into copies of new tuples after the operation. In most cases, the program is no longer interested in the old tuple copy from which a new one ...
4
votes
2answers
178 views
How to use html lists in Nitrogen
I would like to create an html list in Nitrogen but can't figure out how to do it. Basically I want to output:
<ul>
<li>One</li>
<li>Two</li>
</ul>
I found ...
0
votes
3answers
345 views
Using Apache mod-proxy with Erlang Nitrogen
I have a CentOS box running a number of web applications and I use Apache to proxy requests to the various applications. All of them are working except an Erlang Nitrogen application which I can't ...
3
votes
1answer
156 views
Counting number of Hits on yaws web application
if i have a web application running from a yaws web server, how would i count the number of hits from users to my site?
I have tried to use rudimentary methods of counting the number of lines in the ...
2
votes
0answers
417 views
Mnesia Fragmentation and replication: resultant availability and reliability
Following the solutions to the question i asked recently about mnesia fragmentation, I still have a number of challenges. Consider the following scenario (The question I am asking is based on what ...
1
vote
1answer
77 views
OTP14B02 configure error
I have tried to install OTP14B02 on OpenSolaris and i get the following error at calling ./configure:
muzaaya@opensolaris:~/Desktop/software and data/otp_src_R14B02# ./configure
Ignoring the ...
1
vote
1answer
140 views
Confused about Nitrogen listen IP address
Am running Nitrogen 2.0.X on Windows 7 Home Premium, HP Pavilion Entertainment PC Laptop.
Nitrogen starts with inets and i have failed to change or dictate the IP address of the webserver.
Once it ...
2
votes
2answers
727 views
Information on 64 bit Erlang? [closed]
Qn 1: What is 64-bit Erlang? , How different is it from 32-bit Erlang? and where can some one find 64-bit Erlang?
Qn 2: What are the main performance advantages gained when we move an Erlang ...
2
votes
1answer
412 views
how do we efficiently handle time related constraints on mnesia records?
i am writing records into mnesia which should be kept there
only for an allowed time (24 hours). after 24 hours, before a user modifies part of them,
the system should remove them automatically. ...
2
votes
1answer
207 views
Validation in erlang using nitrogen
I'm trying to do something simple with nitrogen in erlang. I have successfully set validation on text fields:
wf:wire(submit, desk,
#validate{ validators=[ #is_required{text="Required"} ]}),
where ...
1
vote
3answers
454 views
How do I use Nitrogen as a GUI frontend for an Erlang app?
I have got a basic server-side Erlang app (not fully OTP'd yet) which I start on a command-line. I want to turn it into an interactive system using a browser as GUI with Nitrogen (version 2.0.4). The ...
2
votes
2answers
659 views
Working with Emails (POP3, IMAP, SMTP e.t.c) in Erlang? [closed]
How can one handle email related communications pragmatically in Erlang/OTP?
Using bash, python or Perl scripts, its possible for one to send out emails. However, in Erlang, i have not yet found an ...
1
vote
2answers
295 views
Starting nitrogen (erlang)
I need some help starting nitrogen 2.1
This document (http:// nitrogenproject.com/doc/index.html) tells me to run ./deps/get_mochiweb.sh - but the deps folder contains no such script
ls ...
1
vote
1answer
243 views
Nitrogen session
In all my nitrogen pages i use the following semantic :
main() ->
case wf:user() /= undefined of
true -> main_authorized();
false -> wf:redirect_to_login("/login")
end.
When the ...
3
votes
2answers
415 views
Nitrogen - Dynamically creating Events
I am a beginner with Erlang/Nitrogen.
I am toying with a bidding system back by a mnesia db.
On my index page I have the following code and the various items and their properties get created ...
1
vote
2answers
123 views
How to route translated URLs to a module with nitrogen
I used to develop in English, but this time, the webApp i'm building is only for people in my city, which is in France.
In nitrogen, when you call "/user/login", nitrogen calls user_login:main().
I ...
4
votes
0answers
384 views
Nitrogen (Erlang web framework) file upload and validators on other form elements
I have an #upload element together with a #textarea element. When a user presses the button to upload the file the #textarea also gets posted and I can receive it with wf:q/1 in the ...
2
votes
1answer
614 views
running and testing ejabberd on localhost?
I have installed ejabberd on my HP pavilion (Entertainment laptop running windows 7), during the installation i was prompted to enter the server domain. Since i wanted to experiment on it, i entered ...
2
votes
1answer
850 views
How can an ejabberd newbie setup a fully functioning ejabberd server?
i am completely new to ejabberd. I have downloaded the installation for both windows and linux (Ubuntu). Somewhere on the web i had seen a demo of how to install and set it up but the installation was ...
2
votes
1answer
337 views
Including the Erlang client library from Riak in Nitrogen
i'm just starting up with a web app using nitrogen and everything is going well. But i also want my app to interface with a riak db that i set up and i'm having some trouble.
I'm confused as to ...
2
votes
1answer
345 views
Nitrogen Project COMET
Would Nitrogen Project's COMET be comparable to ejabberd's xmpp in stability and amount of open connections it can hold? I'm interested in seeing how much of a load Nitrogen can hold. If anyone has ...
4
votes
1answer
487 views
How to connect Nitrogen with Couchdb using Ecouch
I don't understand how to make a connection with nitrogen and couchdb using ecouch, because I have a error on this connection
CAUGHT ERROR: error-undef
[{ecouch,db_info,["test_suite_db"]}
I put ...
20
votes
4answers
3k views
What is your experience with Nitrogen on Erlang?
I've been checking out the Nitrogen Project which is supposed to be the most mature web development framework for Erlang.
Erlang, as a language, is extremely impressive. However, with regards to ...
1
vote
1answer
195 views
Couchdb and Nitrogen
How to add Key/value pairs to existing couchdb document through nitrogen web framework?
ecouch:doc_update(DBName,DocId,DocValue) is not returning true when I was trying to implement.
0
votes
1answer
114 views
Nitrogen: changing targetID breaks lightbox
I'm using Nitrogen & lightbox. I'm looking for some guidance after spending way too long trying to understand why a working example breaks as soon as I change the targetID of a lightbox. The ...
5
votes
2answers
311 views
How to get Peer IP Address in Nitrogen
Is is there a built in function in nitrogen framework to get Peer IP address?
If not, is there a way to get the IP address of peer which is making to request to Nitrogen App
1
vote
1answer
139 views
How do I get pages like src/pages/myrootpage.erl to show up at http://mysite.org/myrootpage using nitrogen?
Nitrogen does not seem to like pages being at the root url path, only addon paths like /web/ is there some way to get pages to show up at the root url like /mypage ?
4
votes
2answers
200 views
Unflash a message with Nitrogen
I have a login page for my Nitrogen based web app. If user authentication fails I wf:flash a message to the user to let them know. However if the user continues to supply bad credentials these flash ...
1
vote
1answer
70 views
Two quick consecutive calls to wf:insert_bottom end up in the reverse order
Using Nitrogen, the Erlang web framework, I have the following method that receives messages and adds them to the bottom of an html element:
receive_messages() ->
receive
Message ->
...
2
votes
3answers
268 views
How to keep track of a process per browser window and access it at each event in Nitrogen?
In Nitrogen, the Erlang web framework, I have the following problem. I have a process that takes care of sending and receiving messages to another process that acts as a hub. This process acts as the ...
1
vote
2answers
260 views
Are events always run in the same process in Nitrogen?
I'm taking about event function in Nitrogen, the Erlang web framework, in a web module that is run when you get a postback.
Does event always run in the same process for the same web client (that is, ...
1
vote
1answer
224 views
How do you unwire an action in Nitrogen?
In Nitrogen, the Erlang web framework, you wire actions like this:
wf:wire(send_message, #event { type=click, postback=send_message })
but if after that you run
wf:wire(send_message, #event { ...
2
votes
1answer
431 views
What is the correct usage of the Nitrogen Auth API?
Just wanting to confirm the usage of the Nitrogen Authentication and Authorization API. The description of the API is:
wf:user() -> User or 'undefined'
Return the user value that was previously ...
5
votes
3answers
2k views
Where does Nitrogen get the best performance - yaws, mochiweb, or inets?
The Nitrogen project web page declares equal support for yaws, mochiweb, and inets, but with which of these web servers is it going to perform the best? I.e. for a large scale application with mostly ...