Thread: Looking for people with IIS to test my program

  1. #1
    S Sang-drax's Avatar
    Join Date
    May 2002
    Location
    Göteborg, Sweden
    Posts
    2,072

    Looking for people with IIS to test my program

    I've created an addon to IIS and I'd like some help to find out if it works as intended.

    The program allows the user to insert Omicron code directly into web pages, much like PHP, and it executes the code when the page is requested.

    Information, installation guide and downloadable file are available at:
    http://www.strandmark.com/omicron/webomicron.omicron

    I haven't automatized the installation yet, so the (quite simple) configuration must be performed manually.

    The only thing you have to do is to configure the parser and try the web server with the file "test.omcron" to make sure everything works as it should. This will take 5-10 minutes.

    If everything works test.omicron should look like this:
    http://www.strandmark.com/test.omicron

    On my two computers (Win2k, WinXP) everything seems to work, but I cannot take any responsibility over any possible damages... et cetera...
    Last edited by Sang-drax : Tomorrow at 02:21 AM. Reason: Time travelling

  2. #2
    C++ Developer XSquared's Avatar
    Join Date
    Jun 2002
    Location
    Ontario, Canada
    Posts
    2,718
    Works fine, except that it parses <# and #> tags even if they're in strings, and you also get a cool error if you forget to close the #> tag.

    Code:
    <html>
    
    <#
    
    
    println "If you can see the version number your Omicron IIS extension is working properly!<br>"
    println "You are using Omicron version: " + version + "<br>"
    println "Omicron uses the <# and #> tags"
    
    #>
    
    <#
    
    
    </html>
    Edit:
    I'm using IIS 5.1 with Windows XP Professional.
    Last edited by XSquared; 04-22-2003 at 02:11 PM.
    Naturally I didn't feel inspired enough to read all the links for you, since I already slaved away for long hours under a blistering sun pressing the search button after typing four whole words! - Quzah

    You. Fetch me my copy of the Wall Street Journal. You two, fight to the death - Stewie

  3. #3
    C++ Developer XSquared's Avatar
    Join Date
    Jun 2002
    Location
    Ontario, Canada
    Posts
    2,718
    Here's an English version of the setup image. It was hard to follow the Swedish stuff.
    Naturally I didn't feel inspired enough to read all the links for you, since I already slaved away for long hours under a blistering sun pressing the search button after typing four whole words! - Quzah

    You. Fetch me my copy of the Wall Street Journal. You two, fight to the death - Stewie

  4. #4
    S Sang-drax's Avatar
    Join Date
    May 2002
    Location
    Göteborg, Sweden
    Posts
    2,072
    Thanks, I'll use that image.

    The problem regarding the <# #> inside quotes is not trivial to solve. Double quotes aren't always string separators in Omicron -- they can appear in other contexts as well -- but I've solved the problem 95% satisfactory now.
    Last edited by Sang-drax; 04-22-2003 at 03:36 PM.
    Last edited by Sang-drax : Tomorrow at 02:21 AM. Reason: Time travelling

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Problem with my program i cant figure out...
    By youareafever in forum C Programming
    Replies: 7
    Last Post: 11-01-2008, 11:56 PM
  2. Mutiliplcation Program that uses a (do, while, and for loop)?
    By Debbie Bremer in forum C++ Programming
    Replies: 4
    Last Post: 10-11-2008, 06:04 PM
  3. BOOKKEEPING PROGRAM, need help!
    By yabud in forum C Programming
    Replies: 3
    Last Post: 11-16-2006, 11:17 PM
  4. Executing a program
    By trancedeejay in forum C Programming
    Replies: 7
    Last Post: 03-06-2006, 08:55 AM
  5. My program, anyhelp
    By @licomb in forum C Programming
    Replies: 14
    Last Post: 08-14-2001, 10:04 PM