I would like to generate a simple error acknowledgment message
whenever a walkback occurs, but I'd like for the page to have my
site's standard formatting (i.e. header and footer). How do I do that?
Thanks,
David
----
1 Squeak/Seaside/Pier site deployed
Hi!
I want to make a report with Pier in Seaside that shows all the blogs that
satisfy certain condition. Perhaps something more, but not right now.
Which is the easy way to do this with Pier/Magritte ? I thought to subclass
PUReportWidget. Should this be a good idea ?
Thanks for the tips!
Mariano
Hi All,
I work with Glass and Magritte.
I have create a subclass of MAExternalFileModel to manage the files on my server with Lighttpd sever.
My problem is relative to the baseUrl configuration of it class because :
1) for web request from local LAN it's need point to my local server IP.
2) for web request from www it's need point to my router ( configured with Port Forwarding to my server ).
I forget something ?
Any pointers would be greatly appreciated!
Thanks!
Hello...
We are trying to build a site using Pier. Recently we migrated to
pharo0.1-10268web09.04.1. Previously we used something like Pier 1.1 with
some updates. We found new version a bit slower on our computers. It was not
a big problem. But we have to use an old notebook for entering data to our
site. And there we've got about a minute delay after structure addition. I
found the cause is in
PRChangeCommand >> updateRoot:
There a big string is being built started with "EditorEnh.linkOptions=". In
our case it's size is 207328. Then it's being modified by copyReplaceAll:
'"' with: '\"' . On old notebook it's very slow. I replaces that
#copyReplaceAll:with: with (sorry for the tautology) streaming. Now it takes
about 10 seconds instead of a minute. But still it's too slow (10 -- 15
seconds was a time to enter the whole data item in old image). Can this
issue be fixed somehow?
TIA
Btw, is issues with filenames (I've asked about some time ago) fixed?
--
Dennis Schetinin
Hello,
I have a Pier 1.1.1 installation running on our Mac OS X Server.
While the Pier system runs just fine, I noticed that the system
stopped saving the changes persistently to the image.
After playing around a bit with our installation, I was able to
reproduce the problem:
- I start with a clean Pier image (and import content from a previous
1.1.1 installation using the Importer/Exporter component)
- I choose PRImagePersistency (duration: 30 minutes; maxImages: 3) as
the persistency scheme
- I start changing the wiki
- The first two saves work perfectly: Pier creates two new images +
changes files
- When the third backup should be made, I get an error: pier.image
not found
- I also tried to manually save the image, but get a similar error:
Squeak cannot locate the changes file /...../pier.changes.
- I checked: both files are where they should be
Kind regards,
Andy
Hi people!
Yes, I know, I am sending lots of mails, but I have several questions hahah.
Suppose I have a long page and I use "!", "!!" and "!!!" all over the page.
Is there a way of autogenerating an index with links above the page?
Thanks!
Mariano
Hi folks (Tudor ?)
I saw all of your videos in pier cms blog and they are very useful for me.
Because of that, I thought I could copy the idea and do some videos
explaining how to do certain things in my site. This will be for the final
users. Could you explain me a bit the steps you do ?
I guess something like this:
1) Record your desktop with a program. It could be recordMyDesktop (in
linux). Any format in particular ? resolution ?
2) update it to vimeo
3) embbed this video in a Pier page.
Thanks a lot for the tips you can give me.
Cheers,
Mariano
Hi people!
I was wondering if I can do what I need to do. When you create a Post (add
command inside a blog) you are ask first which type to ask and a name. You
can put "zaraza post" as name and type "Post". Then you go to another page
(second one) where you put all the information of the post (included the
name again ("zaraza post" in this case)).
Suppose you have a pier site and the final user can add posts (not create
the blogs, just post). I would really love to have a link that says "click
here to post" or something like that. In this case, the type we ALWAYS be
"Post". And as the title is asked again in the second page, I ask: is there
a way that from a simple link I simulate an add of a Post type and this goes
directly to the second page ?
In other words...if there is only one "type" option, can I skip this step
and go to the seconds step ?
I think this email was very confusing, sorry.
Thanks in advance,
Mariano
Hello Lukas,
Is the report column sorter supposed to be able to handle nil values?
This code (below) looks like it is trying to be tolerant But what if
one= 'string'.
two = nil.
thanks in advance
Keith
====
sort: aFirstObject and: aSecondObject
| one two |
one := self valueFor: aFirstObject.
two := self valueFor: aSecondObject.
(one respondsTo: #<=) ifFalse: [
one := self formatter value: one.
two := self formatter value: two ].
^ one <= two
Hi folks,
I have a couple of questions about Internacionalization in Pier. I am
developing a website and I would love it can have multiple languages
(spanish, english, and so on). My "final user" is able to add posts or leave
comments for example. So, I see two thinks I should care:
1) Pier comments: can this support multilanguage ? For pier components I
refer to the html output of the components. For example, when you add a
post, you have: "title", "author", etc...
2) My own page text. I have several pages with text. Which is the best
approach to support multilanguage for this ?
Any tip is welcome.
Cheers,
Mariano