Cross Site Request Hacking
The recent attack on twitter serves as a reminder about the dangers of cross-site requset hijacking. This entry provides a few suggestions on how to secure your site from this form of attack.
Comments off
The recent attack on twitter serves as a reminder about the dangers of cross-site requset hijacking. This entry provides a few suggestions on how to secure your site from this form of attack.
Comments off
To add a tab in the green tab bar, go to portal_actions/object and add an action.
Some useful expressions:
Note the python expression portal.restrictedTraverse allows python expressions/scripts to access the new browser views
Comments off
Here is the list of slots that are defined in the master page template for Plone.
To use one of these slots (for example, “style_slot”) use the metal:fill-slot macro
<style metal:fill-slot="style_slot" type="text/css"> table.LesionLocation {border:1px solid blue;border-collapse:collapse;} table.LesionLocation td {border:1px solid black;padding: 5px;} </style>
The page template must reference the master template:
<html xmlns="http://www.w3.org/1999/xhtml"Â xml:lang="en" lang="en" i18n:domain="plone" metal:use-macro="here/main_template/macros/master"> ... </html>
Comments off
At my workplace I am tasked with getting familiar with and eventually customized XNAT, a Java/Tomcat web-based content management system for the health care industy. As this is the first time I am working with a Jave web application, the learning curve is particularly steep. Here are my running notes as I try to get familiar with Java/JSP/XNAT. I must say though that I think Plone/Zope or even an ASP.Net system would have been a lot easier to understand!
Comments off
I have finally gotten a reverse proxy app to work on the Windows Server 2003 machine.
The solution:
# Set pound to run like a normal app, so that cygrunsrv can daemonize it
Daemon 0
ListenHTTP
Address 1.2.3.4
Port 80# Prevent any access to the ZMI from outside
Service
URL ".*/manage"
End# If you have multiple domains, repeat the Service block
Service
HeadRequire "Host: .*A.edu.*"
BackEnd
Address 127.0.0.1
Port 8123
End
End
End
Comments off
This year I am revamping both Web development and robotics courses to use Microsoft technologies: ASP.Net 3.5, IronPython/Dynamic Language Runtime, Robotics Studio.
 As a first step I am trying to port over the course website, or at least some sample code, to IIS. Apache has its headaches with long config files, but the IIS setup is even more confusing, since not everything is accessible in one file.
Note that ASP.Net 3.5 is really ASP.Net 2.0 with some extensions.
Comments off
This year I am revamping both web development and robotics courses I teach during the summer.
After much reading and searching I have finally managed to burn, run and debug a sample LED blinking program on the STM32-P103. The beauty of open source development tools is obviously the cost and the frequent updates, but the disadvantage is the lack of good documentation or manual. I have been able to piece together bits and pieces through a lot of trial and error, and will be posting everything I have learned so far soon, with sample code.
Comments off
The UN has made data it collects from its member nations available here. Very interesting, and I am looking forward to mining some of the data to prepare for the web course this summer, as well as try my hand at some economic analyses.
Comments off
It is no secret that IE has some bugs in rendering CSS styles, most notably with respect to the box model. This wikipedia entry has a good summary of one of the bugs, which is really a misinterpretation of the CSS standard. It doesn’t help that for some web developers, Microsoft’s interpretation makes more sense than the “correct” standard!
Comments off
Well I finally have it working the way I want.
Rundown of flow:
New features to be added eventually
Some hard lessons learned
Parts of the workflow system
I’ve added code snippets to the svn server, which can be accessed on trac.reisun.com
Comments off