Seaside is a free and open source web application framework for developing sophisticated web applications in Smalltalk.
3
votes
2answers
50 views
Test fixtures or equivalent for test data with Smalltalk Seaside?
I've been using Test Driven Development in a Seaside app I've been playing with, and all of my data is stored as objects in the image (as opposed to a database).
So when I run my tests I've had to ...
2
votes
0answers
59 views
Smalltalk/seaside REST service return image
I'm learning Smalltalk / Seaside and I'm trying to return a picture from a REST service. I'm reading the seaside book on REST services. There is an example in the book on file uploading, but there is ...
3
votes
1answer
69 views
Loading Seaside onto Pharo 2.0
Pharo 2.0 was released recently. I downloaded it, and tried running this:
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfSeaside30';
load.
(Smalltalk at: ...
3
votes
1answer
62 views
Open a link in seaside using javascript
Hi I am a newbie in Seaside and Smalltalk. I am developing a search application where the user posts a query and the system displays relevant results. Now to implement feedback, I want to know when a ...
2
votes
3answers
92 views
Seaside still actively developed? [closed]
Just a quick question. Since the last major version of seaside came out in 2010, is it still being actively developed? There doesn't seem to be too much going on at the moment. Also Iliad seems kinda ...
3
votes
2answers
76 views
seaside : 2 events on html anchor
In seaside I need to do two events - callback and go to the other url (google.com) on clicking a link but I am not able to do both of them. What could be possibly wrong here? Is there any way I can do ...
2
votes
1answer
51 views
pharo - run a code when server starts
I am using ZnZincServerAdapter and have a web server. I now want to make sure that when I start this server there should be a piece of code that gets executed. how can this be done ?
basically i have ...
1
vote
2answers
38 views
update the content of a page once the renderContenOn: in smalltalk
How do I update the content of a page once the renderContenOn: has been called? As in the page has been rendered but when user clicks on submit button I have a callback and I need to update the same ...
1
vote
1answer
40 views
Seaside + jQuery variable check for onBlur
How do I code a variable check into a Seaside jQuery onSuccess: script?
I have an application with input fields that trigger a value change followed by a re-rendering of the view. It works nicely to ...
3
votes
2answers
47 views
Sharing seaside sessions using Gemstone/S
I am writing a web application using VisualWorks Smalltalk, Seaside and Gemstone/S.
At the moment the session state for the client can be maintained only if the client always returns to the same ...
4
votes
2answers
58 views
Periodic JQuery update in Seaside
I am using Seaside (2.8 in Squeak 4.2) and am normally updating like this:
html div
onClick: ((html jQuery: '#asdf') load html: [:h|h text: 'qwer'])
; with: 'asdf'.
But this time, i have ...
4
votes
2answers
93 views
“:=” and binary message precedence in Smalltalk
I am attempting to learn Smalltalk through the tutorials included with Dolphin Smalltalk X6.
My question deals with the evaluation of expressions with multiple messages.
My understanding is that ...
2
votes
1answer
56 views
Sending Mail in seaside+Gemstone “ a Message: NotUnderstood occurred (error 2010), a UndefinedObject does not understand #'isEmpty' ”
Tried with a similar question earlier, but could not I make headway. So I did new tests and here is the new question:
I did a brand new installation of PHARO 1.4 and GEMSTONE 3.0.1.2 on the same ...
2
votes
0answers
52 views
GEMSTONE hangs when executing WAEmailMessage in readSmtpResult
I have installed on my MAC with MACOSX Lion, in the latest version of Gemtools (1.0 beta 87) with the latest version of glass workspace (1.0 beta 8.7.4) and the latest version of GEMSTONE: 3.1.0.1.
On ...
1
vote
1answer
49 views
Seaside Smalltalk Removes Comments on Accept
I've searched all the internet to find an answer, and I really have no idea how to fix this:
When I ctrl-s (Accept) sth in System Browser, all my comments are removed and the code is automatically ...
0
votes
1answer
54 views
How do I return the value of tableHeading above a tableData in seaside?
In raw jQuery you can use
var $th = $td.closest('table').find('th').eq($td.index());
But, how do I return $th to seaside so I can then use it as a string for whatever rending I want?
Example.
val ...
5
votes
1answer
80 views
which version of VM on Linux
Which version of VM should be used on Linux for Pharo/Seaside?
If I'm not mistaken, the one loaded by apt-get (and referenced in seaside book) is Squeak VM.
Should this be preferred to Cog-VM?
If ...
3
votes
2answers
60 views
Can I use Spec to build user interfaces in Seaside?
I have noted in the examples package 'Spec-Examples-PolyWidgets' that is possible to build user interfaces using Polymorph. Could do the same for the Seaside web framework?
2
votes
1answer
64 views
How to run Comet with Zinc (Seaside)
I'm trying to run Comet examples from Seaside 3.0.7 developer image, but it depends on WAListenerAdaptor, which is not included in this distribution. I could just load Seaside-Adaptors-Comanche (I ...
0
votes
1answer
45 views
#isolate method not present in Seaside in Pharo-1.4-14557-OneClick
I have used the finder and looked through WAComponent and sub- and super-classes, but it is definitely not there. I have done a software update.
If it has been removed deliberately, how do I ...
4
votes
4answers
145 views
What is smalltalk's sinatra?
I've seen on the web several comparsions of
(Smalltalk + Seaside) VS (Ruby + Rails)
But I'm wondering if Seaside is comparable to Rails.
What is the equivalent of Sinatra?
What is smalltalk's web ...
2
votes
0answers
107 views
Seaside Smalltalk & jQuery UI Accordion - huge height
I have a problem. I would like to make a site in Seaside Smalltalk which would display methods of all subclasses of Collection in a jQuery UI Accordion. I've developed two methods:
renderContentOn: ...
3
votes
1answer
69 views
Reporting on Seaside Sessions, such as time to expirey
How do I display a report showing all current seaside sessions along with their expected expiry time?
self session application sessionsDo: [:each |
html text: 'Session For ',((each properties values ...
4
votes
1answer
261 views
Correctly removing Development Toolbar in Seaside
I use Seaside 3.0.7 on Pharo 1.3 and Pharo 1.4. In order to disable the Development Toolbar at the bottom of my Seaside applications i did execute, as the Seaside Book says:
WAAdmin ...
1
vote
1answer
86 views
Where does the function onLoad() in my Seaside generated html document come from, and how to get rid of it?
Some (not all) of the html documents generated by Seaside have these elements in it:
<body onload="onLoad()">
<script type="text/javascript">/*<![CDATA[*/function ...
0
votes
1answer
125 views
Do you recommend VisualWorks for seaside development? [closed]
Do you recommend VisualWorks for seaside development? Or VA? Or?
I thought I remember seeing discussion about Cincom's committment to webvelocity and/or seaside? I thought they were moving away from ...
4
votes
1answer
143 views
Updating embeded components in seaside, without refreshing the whole page
I have a component (ItemTree) which has 3 embeded components. The first (ItemTreeList) is a list of items to select. The second (ItemGIDE) shows properties for the item you selected.
How do I tell ...
4
votes
3answers
134 views
Zodiac mail sending in Pharo smalltalk
I am trying to send mail with the gmail smtp in pharo with zodiac in CentOS machine. I am receiving the following error.
"SSL/TLS plugin initialization failed. VM missing plugin? "
I had ...
5
votes
2answers
121 views
Is there a Seaside preference to create more human readable html, i.e. html including linebreaks?
The standard html output created by Seaside is all in one line, without any linebreaks.
Is there a preference to change this behavior, so that the output will be more human readable?
If not, what ...
1
vote
1answer
58 views
What file permissions and owner to set for Pharo/Seaside deployment on Ubuntu
What owner and permissions do i set, when i deploy a Pharo/Seaside application on Ubuntu for the VM, the image and for the directory containing those files?
I also use Object Serialization as ...
5
votes
1answer
93 views
Which image to use to deploy a Seaside 3.0 application with Pharo 1.4?
I have developed a Seaside 3.0 application in Pharo 1.4 and want do deploy it on Linode.
What (small) image do i load my application into for that purpose? And how?
I found Project Pharo Kernel 1.4 ...
1
vote
1answer
142 views
onClick button: callback not executed
I'm wondering why the doRemoveObject method is not being executed when the button is clicked.
(html button)
id: 'objectRemoveButton';
bePush;
onClick: (html scriptaculous request
...
2
votes
1answer
173 views
REST service in seaside small talk
I have the following class in pharo
WARestfulHandler subclass: #PgUserAddHandler
instanceVariableNames: ' employeeId'
classVariableNames: ''
poolDictionaries: ''
category: 'abc-Model'
I want to ...
3
votes
2answers
80 views
Pieradmin install error: Missing class ImageSegment
I'm attempting to install Pieradmin on a clean image of Pharo 1.4 (Summer), using the commands:
Gofer it
renggli: 'pier2addons';
package: 'ConfigurationOfPierAdmin';
load.
...
2
votes
1answer
119 views
JQPlot error in seaside pharo smalltalk
I had used the following code and i am receiving the firefox firebug error.
Code:
(canvas anchor)
id:(canvas nextId);
onClick: 'alert("Thank you");';
with:'help me'.
I could load the ...
0
votes
2answers
195 views
Seaside: Execute JavaScript method via AJAX
I have two Ajax calls. I need to make sure that a JS function is executed between these two calls.
Is it possible to trigger the execution of a client-side JS function via the AJAX response? Or how ...
3
votes
2answers
122 views
What happens when i save a Pharo image while serving http requests?
The Seaside book says: "saving [an image] while processing http requests is a risk you want to avoid“.
Why is this? Does it just temporarily slow down serving http requests or will requests get lost ...
1
vote
1answer
69 views
WAFileLibrary alternative
1)I had a set of ".js" files in a particular Directory structure.
2)I NEED to store them locally with my smalltalk image and need not want to host them seperately.
3) I DONT need to keep them inside ...
3
votes
3answers
132 views
Seaside: URL to image on server
I created an upload form for images, which works properly and saves files in Contents/Resources/uploads.
I now want to display those images in my web app: how do I retrieve the URL?
3
votes
1answer
79 views
Filing an ST into the GemStone server with Gem Tools
1) I have the GemStone server running.
2) I have a Pharo 1.0 image with the gemStone Tools loaded.
3) I could succesfully login to the server after creating a session.
Now I have an "abc.st" file ...
1
vote
2answers
111 views
Write helpers for wrapping HTML elements
I am currently writing my own Component base class with a whole bunch of helper methods for using the Twitter Bootstrap CSS framework (and avoiding all the boilerplate code around it). They can be ...
1
vote
3answers
118 views
Any reason not to write my own HTML?
In Seaside, in all those renderContentOn: methods, I can use the HTML canvas object to assemble my DOM tree.
I am writing a bunch of helpers for my components currently, because I'm using Twitter ...
1
vote
2answers
82 views
Default JQuery UI Tabs
I am using Pharo smalltalk image with latest seaside loaded.
I had loaded the JQBaseTheme in my project.
What should i do to bypass the colourful,large view of the UITab and show a simple UITab ...
2
votes
1answer
140 views
Tab Widget in jquery - Seaside- Pharo smalltalk
Using a Pharo Smalltalk version 1.4 image with the latest seaside version loaded, I have:
loaded JQDeploymentLibrary and JQUiDeploymentLibrary in my project.
used the sample code for the "Tab ...
1
vote
1answer
122 views
Unable to refactor / remove method
This should hopefully be a simple question. :)
I'm using Pharo / Seaside. I have used the refactoring capability in the IDE to rename and remove a few of my methods and classes. So far so good.
...
10
votes
3answers
579 views
Data persistence in Smalltalk / Seaside
I've been spending some time lately getting acquainted with Smalltalk and Seaside. I'm coming from the Java EE world and as you can imagine it's been challenging getting my mind around some of the ...
8
votes
2answers
299 views
Are continuations a key feature in Seaside?
I'm trying to get up to speed on Smalltalk / Seaside. According to Wikipedia, "Seaside is a continuation-based web application framework". Coming from a Java background I'm not very familiar with ...
21
votes
7answers
1k views
Version control for Smalltalk / Seaside?
I'm primarily a Java EE developer. I've been asked to explore the possibility of using Smalltalk / Seaside in an upcoming web project. As you can imagine, this has led to many interesting questions.
...
2
votes
3answers
226 views
How do I simply redirect to another toplevel Seaside component?
Newbie question. Google has been no help at all. Besides, the problem I have is kinda hard to explain properly.
I have two components in my application: a JournalView and a JournalEntryView. The ...
1
vote
2answers
869 views
How to save a html5 canvas.toDataURL as a png file on the server using Seaside
I have an image that users can annotate on the browser. I can access the image using
canvas.toDataURL()
...I'd like to add a 'save' option for the user to save the image on the server.
This ...