World: r3wp
[Web] Everything web development related
older newer | first last |
Sunanda 13-Feb-2006 [1095] | As I said, the RSS feed is explicitly intended to feed data to other programs for formatting, so it doesn't (perhaps can't) look nice. All the info is available in human friendly ways elsewhere on the site, eg: script library changes: http://www.rebol.org/cgi-bin/cgiwrap/rebol/script-index.r |
Oldes 13-Feb-2006 [1096] | yes, no problem, and the issue with the bots - if the bot don't support cookies (non of them does), i can give him whatever I want, I'm not cheeting, I just may think, that it's somethink like LYNX and serve him pure text pages:) And if he don't like it so it's his problem (or its?) And with the robot.txt file - ugly bots will not respect robot.txt file anyway :) |
Sunanda 13-Feb-2006 [1097] | Some bots (the more evil ones) have an even more evil human at ther side....Those bots can handle cookies, and will also use the human to step them through any logon procedures. So, technically, yes: bots can use cookies. But on the cloaking issue: if you show the *same* content to any visitor that does not use cookies then that is *not*cloaking, even if you serve different content to those that do. So no problem there. |
Anton 14-Feb-2006 [1098x2] | How does one find out where the latest "official" syntax for URI's is ? For example, I'm looking at http://www.w3.org/Addressing/rfc1808.txt |
This seems more up to date: http://www.gbiv.com/protocols/uri/rfc/rfc3986.html | |
JaimeVargas 14-Feb-2006 [1100] | Kudos to Yahoo!, who today released two pieces of goodness into the commons. The first is their UI library, and the second is their Design Patterns Library. The UI Library is a collection of DHTML/Ajax/Javascript (pick your favourite term) controls and widgets. The Design Patterns Library is "intended to provide Web designers prescriptive guidance to help solve common design problems on the Web". - http://developer.yahoo.net/yui/ - http://developer.yahoo.net/ypatterns/ |
Anton 15-Feb-2006 [1101] | read/custom - can it send more than one cookie at a time ? |
Oldes 15-Feb-2006 [1102x3] | of course it can |
I use this script: do http://box.lebeda.ws/~hmm/rebol/cookies-daemon_latest.r to handle cookies | |
just run it and than I can do read pages and cookies are processed automatically | |
Anton 15-Feb-2006 [1105] | Ok, thankyou, I will try that. |
Anton 23-Feb-2006 [1106] | Thankyou Oldes, it seems to be working. |
Thør 2-Apr-2006 [1107] | . |
Pekr 4-Apr-2006 [1108] | Hi ... I have following task to acomplish ..... my friend who is doing college in archeology, is working on her thesis. Part of the thesis are images of various ancient goods. So we've got photos from our digital camera. I will produce small View script, which will allow her to enter comments for each image. Now I want to do a template (table?), with various layouts, mainly two images per A4 page plus comments under each of those images. Can I influence table cell size? My past experience was, that the cell got resized according to image. Are there also various methods, how to "stretch" the image in cell? thanks a lot for pointers ... |
Sunanda 4-Apr-2006 [1109] | You mean HTML tables? The cell has a height and width, and the image has a height and width. You probably need to set both height and width on both the cell and the image. Probably easiest with CSS Remember to set the padding and margin to zero. And remember that IE6 and lower handles this differently to other browsers, so it's not easy to get pixel-perfect borders and so on. |
Graham 4-Apr-2006 [1110] | why is she doing her thesis in html?? |
Pekr 4-Apr-2006 [1111x4] | she is not .... |
but appendix to thesis is some 90 photos, sorted, commented .. | |
I have those photos, numbered jpges, I will provide here view script to put comments in there, and then I want to automatically generate the content .... | |
uh, the photos - there is much more - some 230 photos ... mostly two per page ... you don't want her to do it manually in Word, right? :-) That's why the atutomatition - imo a good job for rebol :-) | |
Graham 4-Apr-2006 [1115] | yeah .. write the script in rebol to make pdfs |
Pekr 4-Apr-2006 [1116] | pdfs? hmm, that did not come to my mind - good idea .... is that difficult to do with pdf-maker? |
Graham 4-Apr-2006 [1117] | Yes, easy enough from memory. |
Pekr 4-Apr-2006 [1118x6] | where is the latest pdf-maker? |
what a fight for novice like me to get damnes stupid two images with two text descriptions under them to print on one A4 .... | |
each browser is displaying it differently. Mozilla print preview stinks, it even generates some strange chars which are not part of original document ... | |
on the friday, I am sitting with IBM guys, they want to show me XForms, as they bought one of companies involved in XForms docs products, but unless someone fixes browsers to simply displays one signle doc in one single way anywhere, it still sucks | |
So far PDF wins all over here with me .... | |
last week we finished upgrade of SAP after 5 years .... I saw some initial doc done in XML, XSLT etc. .... Firefox was not able to display. Imo the thing is, that SAP supports IE only ... what a world .... | |
Sunanda 4-Apr-2006 [1124] | Browsers aren't meant to display things pixel perfect. They are designed to pour the content into the shape the user wants. If I have a 180x360 monochrome phone, I should still be able to see HTML-mediated content in a reasonable way. PDF is a way of replcating what a sheet of paper does. It does it well, but it is an outdated concept. Of course, browsers are also full of bugs which doesn't help. |
ScottT 5-Apr-2006 [1125x2] | browsers actually do a good job of pixel-perfect, but printers don't do pixels. using real-world css dimensions, like cm or pt etc. will translate between device contexts. Anyway. I don't envy the task. Anyway, I have been messing with embedding REBOL in client-side code, which is working pretty well: http://eisic.ws/ext/r/Document2.plugin.r.html I need to figure out how to keep REBOL from bailing out on me, though. generally, if the console pops up, I have to refresh the page. For instance, any print will pop up the console, and I would really rather not pop up the console from the page, because closing it destroys the REBOL instance. |
actually, I guess this should be in the plugin group. moving there. | |
Oldes 5-Apr-2006 [1127] | Is there any script for multipart/form-data upload from Rebol to server? |
james_nak 5-Apr-2006 [1128] | Oldes, non cgi? |
Oldes 5-Apr-2006 [1129x3] | I need to post file with field data from console |
running PHP on the serverside | |
I'm able to do it, but I'm just asking if it's not already done | |
james_nak 5-Apr-2006 [1132] | I thought I've seen a cgi script somewhere. |
Oldes 5-Apr-2006 [1133] | I don't need cgi, I need it from console to make the upload |
james_nak 5-Apr-2006 [1134x2] | Perhaps this: http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-topic-detail.r?l=h&topic={A847190510F1A1BC08D2FB1C08792C6E613BA025} |
Ah, then the above is not right. Though... | |
Oldes 5-Apr-2006 [1136] | that's decoding, I need the oposite side:-) |
james_nak 5-Apr-2006 [1137x3] | There was something that you could launch from the console but that communicated to the server. Let me find it. |
REBOL [ Title: "Http tools" Date: 14-Dec-2000 Version: 0.0.3 File: %http-tools.r Author: "Graham Chiu" | |
I think if you set up the proper page you can have Graham's app send it. | |
Oldes 5-Apr-2006 [1140x3] | Now, that's not posting files (it just works with cookies) |
(now = no) | |
never mind, I already started to make my own solution | |
james_nak 5-Apr-2006 [1143x2] | OK. Post it when you finish. : - ) |
Actually I thought all this BEER/Rebservices/Rugby stuff was all about doing that. | |
older newer | first last |