Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by loosecannon1

  1. loosecannon1

    Enterprise level CMS

    I suggest looking into Joomla a bit more. It's EXTREMLY easy to install, has great documentation, and is loaded with features.
  2. loosecannon1

    results of ls -lr * to long...how to read it all?

    Thanks Ken! I don't know how I've been getting by without using the pg cmd.
  3. loosecannon1

    results of ls -lr * to long...how to read it all?

    Forgot to mention I'm running Solaris 8
  4. loosecannon1

    results of ls -lr * to long...how to read it all?

    I ran ls -lr * on a dir and the results are too long for viewing. I can't scroll to the beginning of the results in my telnet screen. The only solution I can think of is to pipe the results to a temp file. Is that possible? What commands should I use? TIA
  5. loosecannon1

    double and single quotes in a string

    thanks for the posts I ended up escaping the string in perl(cgi) instead of javascript and it worked.
  6. loosecannon1

    double and single quotes in a string

    I have a CGI process that dynamically populates an html form with parsed data from other html files. Everything works fine except when the data contains double quotes. My O’Reilly book says, “Double-quote characters may be contained within strings delimited by single-quote characters, and...
  7. loosecannon1

    grep vs for loop

    Thank you for the response... you're suggestion worked.
  8. loosecannon1

    grep vs for loop

    Ok this one's really got me twisted up. I'm trying to set the value of a hash to another hash if two values are the same. It works with the following for loop: for(@{$IOprocedures{all}{active}}) { if ($IOprocedures{current}{number} eq $_->{number}) { $IOprocedures{current}{active} =...
  9. loosecannon1

    Dynamic html pages

    If you write the web pages in jsp you can "include" files(txt, html, etc...). For example, you could have a txt file for the heading, footer, main nav, sub nav, body and bring them in via a include statement
  10. loosecannon1

    Rendering xml file with XSL

    ...depends on the processor http://xml.apache.org/xalan-j/commandline.html
  11. loosecannon1

    Dynamic html pages

    What type of web page is it? i.e., .jsp, .asp, html, etc...
  12. loosecannon1

    Escaping characters in XPATH expressions

    just a thought... Place the ' character in a variable and pass the variable to the translate function
  13. loosecannon1

    Rendering xml file with XSL

    You can also directly pass the xml and xsl file to the processor.
  14. loosecannon1

    newbie:how to handle <,>,& in XML?

    looks like the forum converted the entity name to the character, which is expected... here ya go, again Replace: < With & lt; (added the space between & and l so it wouldn't get converted))
  15. loosecannon1

    newbie:how to handle &lt;,&gt;,&amp; in XML?

    Replace the characters with it's entity equivalent Replace < with < &lt; Take a look: http://www.w3schools.com/xml/xml_cdata.asp

Part and Inventory Search

Back
Top