Tagged Questions
Seaside is a free and open source web application framework for developing sophisticated web applications in Smalltalk.
77
votes
29answers
8k views
Why use Ruby instead of Smalltalk?
Ruby is becoming popular, largely from the influence Ruby on Rails, but it feels like it is currently struggling through its adolescence. There are a lot of similarities between Ruby and Smalltalk -- ...
49
votes
20answers
5k views
Would you start learning Smalltalk?
My questions is simple!
Would you start learning Smalltalk if you had the time? Why? Why not?
Do you already know Smalltalk? Why would you recommend Smalltalk? Why not?
Personally I'm a Ruby on ...
21
votes
6answers
1k views
Is Seaside still a valid option?
Seaside just released a release candidate for the upcoming 3.0 version, so it appeared on my radar again. As I'm currently pondering what web framework to use for a future project, I wonder whether ...
18
votes
8answers
1k views
What scares you the most about the integrated IDE of most modern Smalltalks? [closed]
As I'm riding the wave of resurgence of Smalltalk (especially because many Ruby-on-Rails people are rediscovering Smalltalk and seeing Seaside as their next upgraded web framework), I get questions ...
14
votes
7answers
519 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.
...
14
votes
7answers
1k views
Does Seaside scale?
Seaside is known as "the heretical web framework". One of the points that make it heretical is that it has much shared state. That however is something which, in my current understanding, hinders easy ...
14
votes
1answer
1k views
When to use Seaside components, and when to use simple render objects?
I have been developing a web application in Seaside+Squeak recently, and have found it to be a wonderful experience. Seaside really is head and shoulders above every other framework out there, and I ...
8
votes
1answer
504 views
How to access the jQuery event object in a Seaside callback
Basically, I want to translate the following into Seaside Smalltalk:
$(".myDiv").bind('click', function(e) {
console.log(e);
});
Besides that I don't want to console.log the event, but access ...
8
votes
3answers
812 views
Magma, GOODS, GLORP, or something else?
So I've been using Smalltalk for about 6 months now (Squeak and Pharo), mostly doing data analytics, and I'm about to start my first Seaside app. So my question to all you Smalltalkers out there is, ...
8
votes
9answers
2k views
Dilemma: Should I learn Seaside or a Python framework?
I know it's kinda subjective but, if you were to put yourself in my shoes which would you invest the time in learning?
I want to write a web app which deals securely with relatively modest amounts of ...
8
votes
3answers
849 views
What is the difference between Seaside programmming and other web programming
To me it seems the main point of Seaside is that it is more like normal "desktop" programming.
The control flow looks much more like "traditional" programming instead of
"web" programming. Is that a ...
7
votes
4answers
545 views
What are the main differences between: Seaside vs Aida vs Iliad
What are the differences between the three Smalltalk web application frameworks?
Some starting points:
What is the sweet spot for each framework? in Which case would you use one or the other?
What ...
6
votes
3answers
148 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 ...
6
votes
2answers
136 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 ...
6
votes
3answers
827 views
HTML generator for .NET?
Having used Seaside the past few years I've found template systems to be a bad code smell. Is there a framework for .net using something similar to the Seaside canvas system for generating html, css ...
6
votes
6answers
771 views
How much do you know Smalltalk?
Now when the Gartner analyst said Smalltalk is cool again and it is used more and more for the web applications with frameworks like in Seaside and Aida/Web, me as a Smalltalker I'm wondering how much ...
5
votes
4answers
728 views
Smalltalk web app deployment on headless Linux server
We wrote a small prototype web app using Pharo and Seaside and we want to now demonstrate to the suits that the app can be deployed into our standard Linux build. We use a mix of CentOS, Ubuntu Server ...
5
votes
2answers
469 views
How can I add cookies to Seaside responses without redirecting?
I'm making a small web application in Seaside. I have a login component, and after the user logs in I want to send along a cookie when the next component renders itself. Is there a way to get at the ...
4
votes
3answers
162 views
Where to start learning about Seaside internals?
I've become pretty enamored of the Seaside web framework lately. I'd like to start digging into the source to figure out how it works. Unfortunately, there are a lot of classes and I don't know where ...
4
votes
2answers
71 views
Seaside: list losing its content on update
This one is really simple. I've got a <select> and I want to update some internal state based on the selection. No need to redisplay anything. The problem is that after the selection and the ...
4
votes
3answers
319 views
How to save a pharo image automatically every hour?
I want to save my Pharo image every hour on the hour automatically.
How would you make this automatic within the image?
I've seen the Pier project do this.
But I'm not sure how they do it.
TIA
3
votes
1answer
138 views
How to get an element's position in real time
I need to get the position of a div in real time, and I'm trying the following:
html div
id: 'square';
script: (html jQuery new draggable
onStop: (html jQuery ajax
callback: ...
3
votes
4answers
3k views
When using HTML <select> tag, changed 'selected' value not displayed in Firefox
Hello (this is a copy of my post on the Seaside mailing list; first try at stackoverflow),
How do I get the rendered display of a drop-down select list to show an updated selection from another ...
3
votes
3answers
319 views
Working with Excel files in web app frameworks like Seaside
Ive been reading about seaside and like the sound of it but i cant see an easy way for handling data files, primarily importing Excel. Of course csv files would be more straight forward, but are there ...
3
votes
5answers
451 views
GemStone-Linux-Apache-Seaside-Smalltalk.. how practical is 4GB?
I am really interested in GLASS. The 4GB limit for the free version has me concerned. Especially when I consider the price for the next level ($7000 year).
I know this can be subjective and ...
3
votes
1answer
283 views
Performance differences between Swazoo and Komanche?
I'd like to know what the performance differences between Swazoo and Komanche in general and for Seaside are. Especially why and in what situations I should prefer the one over the other?
2
votes
3answers
61 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 ...
2
votes
1answer
150 views
Help in ajaxifying Seaside-App (need template or minimal example)
I am having trouble ajaxifying our new Seaside-App. The objective of the App is to show contract-data in a cascading view (in concept like a tree but visually just components inside components): on ...
2
votes
2answers
178 views
How to embed a google analytics script (new version) on a seaside app
I implemented at the way of use a FileLibrary.
Then I've the following code:
updateRoot: anHtmlRoot
super updateRoot: anHtmlRoot.
anHtmlRoot title: self title.
anHtmlRoot link beShortcutIcon; url: ...
2
votes
1answer
151 views
Is there an easy way to add an API to a Seaside web app?
Is there an easy way to add an API to your Seaside web application, just something to allow users to submit a new record with a few plaintext fields for example? (REST would be ideal)
2
votes
1answer
482 views
JQuery UI + Seaside set-up
Which package(s) do I need to load for jQuery UI in Seaside?
Currently I have these installed/loaded:
Pharo Seaside One-Click Image
Added the jQuery repository to the Monticello Browser ...
2
votes
3answers
442 views
What's the difference between a Continuation (as in Smalltalk) and an interrupt (as in an Assembler)?
I'm struggling to understand the concept of Continuations (as used in Seaside with Smalltalk). A snippet from Wikipedia says:
"... refer to first-class continuations, which are constructs that ...
2
votes
1answer
319 views
Why isn't my serverside callback occuring when I use 'jQuery ajax' in seaside 2.9?
I'm trying to do something like this in seaside 2.9
html button
onClick: (html jQuery ajax
serialize: (html jQuery this);
script: [:s | s << (s jQuery id: stratId) append: [html text: ...
2
votes
1answer
568 views
Working with Seaside continuations
How do I get a BlockClosure in Squeak (I want to use BlockClosure>>callCC)?
When I write [#foo] that is a BlockContext, what's the deal?
Update: I have worked out that BlockClosure is a thing mainly ...
1
vote
1answer
47 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.
...
1
vote
2answers
438 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 ...
1
vote
4answers
181 views
What object to hold a large amount of text in?
I am planning a Seaside app to hold text, a single instance which may be up to, say, 5Mb. What kind of object is best for this?
I would also like to do some iterations over this text.
Thanks, Vince
...
1
vote
3answers
127 views
accessing javascript function arguments
Documentation for JQAjaxSetup>>onError: says:
onError: anObject
"A function to be called if the request fails. The function is passed three
arguments: The XMLHttpRequest object, a string ...
1
vote
1answer
85 views
Updating Reef parts on the fly
I'm starting to dig into Reef and I'm stumbling upon something I really don't know how to solve...
I have a RETextField and a REButton, and I want the text field's contents to get updated when the ...
1
vote
1answer
64 views
How can I change how single element paths are handled in Seaside?
Seaside by default points example.com/myapp to whatever application is registered at myapp. I'd like to have a core application that can also handle these links, or some other way of handling these ...
1
vote
1answer
67 views
Getting the value of a JQueryInstance
I'm still trying to get to understand how Javascript is wrapped in Seaside, say I have the following query:
(html jQuery: '#myId') hasClass: 'myClass'
How do I get a true or a false out of this? ...
1
vote
2answers
128 views
Remove method in Seaside
How does one remove a method in Squeak! Smalltalk? I'm using a Seaside 2.8.4 image and I've accidentally added a method and made a typo in the name. I renamed it, but then it just made a new method. ...
1
vote
2answers
95 views
Referencing the selected text in a textarea
Is there a way to retrieve the text that's currently selected in a text area in Seaside?
1
vote
3answers
175 views
Serving pharo seaside 3.0 with lighttpd
I am trying to serve my app with lighttpd. With seaside 2.8 the following worked in my lighttpd.conf:
proxy.server = ( "/pharo" => (
( "host" => "127.0.0.1", "port" => 8080, ...
1
vote
3answers
267 views
Can I host a SandstoneDB app on www.Seasidehosting.st?
Did someone ever manage to make a seasidehosting-hosted web application cooperate with SandstoneDb? It seems that they disallow creating of subdirectories, which is important for SandstoneDb. Am I ...
1
vote
2answers
393 views
How do you clean the Seaside URLs?
So, if you download a fresh Seaside image and run WAKom startOn: 80, then your fresh seaside respons on localhost/seaside/
This /seaside-folder annoys me, as I want to publish on seasidehosting.
So! ...
0
votes
3answers
121 views
Including fonts in Seaside
Is it possible to enclose a font file in a Seaside application so that the client renders the website using that one instead of the ones in their system?
If so, how would one do it?
0
votes
2answers
153 views
What's an easy way to dynamically generate some JavaScript in Seaside?
I'm trying to add Disqus to a blog I'm writing. To deal with Seaside sessions I need to either add a unique discus_identifier or disqus_url to the JS. I overrode my component's #script method but it ...
0
votes
2answers
151 views
Getting the value of the Javascript receiver in a Seaside JQuery callback
My question is similar to this - how do get what would be javascript this (so that I can get its value assuming its a form text input) ? I am trying to send the value of a text input to the callback ...
0
votes
1answer
273 views
Streaming json to a javascript function in Seaside
I want to run a function jQuery style on page load that parses some json from the server, then intermittently parses more json. I'm new to Seaside so I'm having trouble finding an example to follow.
...