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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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
  16. loosecannon1

    XML -&gt; pdf file

    This is easy to accomplish using http://xml.apache.org/fop/
  17. loosecannon1

    interpret a program's exit status

    Thanks Mike, I ended up pointing to another JVM and the darn thing worked.
  18. loosecannon1

    interpret a program's exit status

    No it doesn't.
  19. loosecannon1

    interpret a program's exit status

    Scotty, Thanks for the info... A little more about my environment, I'm running the app through a shell script on a Unix box. I printed $fop_cmd -copy/pasted and ran it successfully from the cmd line. I took your advice and piped the output to a file. The error message I get reads...
  20. loosecannon1

    interpret a program's exit status

    Hi All - I'm *trying* to execute some JAVA from a PERL program... The JAVA program doesn't run and I get a exit value of 139, which is useless to me. How/where can I find the meaning of a returned exit value. Any debugging ideas are appreciated. Thanks. #------- SNIPPET---------...

Part and Inventory Search

Back
Top