plaintext

Scalable, fast, text file backed database engine?

I am dealing with large amounts of scientific data that are stored in tab separated .tsv files. The typical operations to be performed are reading several large files, filtering out only certain columns/rows, joining with other sources of data, adding calculated values and writing the result as another .tsv. The plain text is used for i...

interpreting php as plain text when using php function require

Hello I have main site to which i put code using require function, but when i add php functions into it, they appear as plain text. The php code is rather long so i won't paste it here. Could anyone help me with that? Thanks ok i am adding some code: require part with only one function: <?php $content=<<<EOF echo 'hello'; EOF; requ...

Looking for a crappy email client

I wrote some code to send email as both HTML & Text, and I am having having trouble testing it. On Thunderbird and Outlook, there is an option to view as plain-text, however I have a feeling that they are being smart and doing something to the plain text (because it looks slightly different in thunderbird than in outlook). What's the c...

How to get CakePHP to render plain text with line feeds?

I need one of my controller actions to return a list of names, on name per line, as plain text. The reason for this is so that it can be consumed by the JQuery autocomplete plugin which expects this format. Unfortunately, when the page renders, the \n characters won't render as newlines. Controller function UserController extends App...

XSLT to output plain text table

I'm working on an XSL template to convert an XHTML/hResume document to plain text, and I'm having trouble with the table layout (no, not layout tables). At the moment I've got the following, using the excellent Dave Pawson's padding template: <variable name="newline" select="'&#10;'"/> <template match="xhtml:table"> <variable name="...

Showing plain PHP code in a HTML page

And I'm talking (especially) forums here - [PHP]code here[/PHP] - style. Some forums escape double quotes or other "dangerous characters" and others don't. What is the best method? What are you guys using? Can it be done without the fear of code injection? Edit: Who said anything about reinventing the wheel? ...

Paste only plain-text into editable div

i need to be able to allow a user to paste into an editable div (via whatever the user chooses: right-click and paste, shortcut key, etc), but i want to discard formatting and only take the plain text. i can't use a textarea since the div will allow basic formatting (bold and italic) if applied by user-initiated events. the onbeforepas...

RegEx to find in-line images in a plain text email message

Certain mail clients allow for the sender to place images directly in the body of their email (instead of as a traditional attachment). When I receive one of these emails in my application, I need to be able to look at only the text/plain message body and determine that the sender embedded an inline image. I'm trying to craft a RegEx t...

Is there anyway to display Right To Left plain text mails?

Hi, I'm sending mails in c# using SmtpClient. i'm sending the mails as plain text: message.IsBodyHtml =False; how can I send them as RTL? with HTML mails it's very easy-just tag them as RTL. Sample code: public void SendEmail(bool isJapanese) { try { MailAddress from = new MailAddress(FromEmail,Fr...

What is the most convenient way to convert HTML to plain text while preserving line breaks (with JavaScript)?

Basically I just need the effect of copying that HTML from browser window and pasting it in a textarea element. For example I want this: <p>Some</p> <div>text<br />Some</div> <div>text</div> to become this: Some text Some text ...

AS3 / AIR - Creating a plain text file?

is it possible to create a plain text file with AS3 or AIR? example: i would like to create a plain text file named "MyTextFile.txt", have it contain text that reads "This is my text file." and save it to my desktop. another option would be to have the file already exist in a directory, so i would only have to rewrite its contents - a...

Alternative to CSV?

I intend to build a RESTful service which will return a custom text format. Given my very large volumes of data, XML/JSON is too verbose. I'm looking for a row based text format. CSV is an obvious candidate. I'm however wondering if there isn't something better out there. The only I've found through a bit of research is CTX and Fiel...

HTML and Plaintext email messages appropriate way to include a hyperlink in both?

Emails sent with html are obviously able to easily contain hyperlinks to web resources. What I want to understand is how best to include those links in a plaintext portion of the email? Does this have any affect on spam ? For example, our IT management system sends out emails and occasionally we encounter a customer that is ending u...

Convert HTML to plain text in Java

I need to convert HTML to plain text. My only requirement of formatting is to retain new lines in the plain text. New lines should be displayed not only in the case of < br > but other tags, eg. < tr/>, < /p> leads to a new line too. Sample HTML pages for testing are: "http://www.particle.kth.se/~lindsey/JavaCourse/Book/Part1/Java/Chap...

OSX Application or Web App for converting text to plain text (unicode)

I am looking for ways to quickly converting blocks of text created in Word, etc. into plain text (i.e. turning right and left quotation marks into "plain text" quotation marks) for quickly transferring content to code with as few headaches as possible. I came across this: http://www.softpedia.com/get/Office-tools/Other-Office-Tools/Kei...

.htaccess AddType plain/text

I have a page that I dynamically show my Unix scripts in another folder. I added: AddType text/plain .sh <-- this is the only thing in .htaccess in the "unix" directory So I could see the codes, but SOME files are still offered as a download while others go to the correct plain text display. Here's the site live: http://snyfarvu.far...

Looking for DOM-independent JavaScript templating system works \w plain text.

Is there a templating library/system/engine/technique written in javascript that: Doesn't screw up plain-text (non-html) templates ( like tabs and line breaks ) But also works with HTML Doesn't have it's own DSL for loops and conditions (uses pure JS) Can be run server-side without the DOM ...and is open-source licensed? ...

encrypt PBEWithMD5AndDES in j2me

i'm triing to get this code to work on j2me (it is working a java program) but not yet in j2me public static String generate(String plaintext, String passphase) throws Exception { try { PBEKeySpec pbeKeySpec = new PBEKeySpec(passphase.toCharArray()); PBEParameterSpec pbeParamSpec; SecretKe...