The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
29 views

Pure python solution to convert HTML tables to readable plain text

I am looking for a way to cleanly convert HTML tables to readable plain text. I.e. given an input: <table> <tr> <td>Height:</td> <td>200</td> ...
2
votes
6answers
52 views

show HTML as plain text

im looking for a way to show html as html without the browser reading it, i found <plainttext> but once i start it i can't stop it for example: <plaintext> <span> ...
0
votes
0answers
81 views

Delphi: Paste ANSI RTF text from the Clipboard as plain text with PROPER CHARSET

I have a non-Unicode Delphi 7 application - every component uses ANSI strings. The Font.Charset property of certain components can be changed by the user. I need to be able to paste RTF text from ...
-1
votes
1answer
60 views

Please help me check for duplicates in hosts file using linux terminal

I would like to know if there is a way of removing any duplicate lines in a host file that needs a specific formating. This is an example of what i mean the first part has to be left alone but the ...
-3
votes
2answers
54 views

Prasing a text file with php to convert it to SQL/mysql [closed]

I have a bunch of log plaintext files that I wish to convert with php to put them into a database instead of using plaintext files, the largest log file I have is 14MB and theres 26 log files. How ...
1
vote
1answer
54 views

Are stored procedures executed from text string?

There are several SQL servers having stored procedures, for example Microsoft SQL Server or PostgreSQL. There are also several client side objects implementing stored procedures calls (TADOStoredProc ...
0
votes
1answer
39 views

Best practice for resetting forgotten user passwords

As far as I can think, there are two reasonable ways to reset a user's forgotten password. Have the user enter their email address and a new plaintext password is sent to their email address. A link ...
0
votes
3answers
70 views

get list in plain text using regex

I want to get all the list items in a plain text (.txt file) using regex. For example in: Books must I read this week before Saturday: 1. Geography 2. Math 3. Biology The priority book is book 2. ...
0
votes
1answer
59 views

OpenPop.Mime don't find plaintext

i need to recover all my message from my Outlook box. I use the OpenPop open source, but i can't recover the plain text (the value is null) and i don't understand why because when i check up my mail ...
0
votes
1answer
81 views

Old printer text format c#

I have the following output generated by an UNIX machine from 1996... We are upgrading the software for Windows, and I need to create this exact output http://pastebin.com/YBHpSYDW from C# There are ...
0
votes
0answers
24 views

Formatting plain text for readability - Do people follow a style guide?

Not sure what people call this, so I'll explain with a few examples: http://www.ietf.org/rfc/rfc3339.txt http://duplicity.nongnu.org/CHANGELOG http://duplicity.nongnu.org/Changelog.GNU ...
0
votes
1answer
34 views

handling strings with \n in plain text e-mail

I have a column in my database that contains a string like this: "Warning set for 7 days.\nCritical Notice - Last Time Machine backup was 118 days ago at 2012-11-16 20:40:52\nLast Time Machine ...
-1
votes
1answer
57 views

Effectively parsing plain text

Please show me how I could effectively parse names and store them into memory from text like this: SMITH 1.006 1.006 1 JOHNSON 0.810 1.816 2 WILLIAMS 0.699 2.515 ...
0
votes
1answer
64 views

Converting one string with multiple lists/arrays into separate lists

The title is terrible. This is what I mean. I'm using Wolfram|Alpha's API. And while parsing it, I get these god-awful strings, like this (by querying "spider-man"): "year | title | medium 1962 | ...
0
votes
0answers
36 views

Android. Scrollable tabs. Add plain text field to tab 1 of 3

I have blank activity with scrollable tabs and I want to add plain text field to tab 1 of 3. Can you explain how to do it, as activity_main.xml graphical layout is not allowed to add something via ...
0
votes
2answers
73 views

Vim: Delete all text surrounded by a start and an end

Say I've got this: \item[1]\footnote{«footnote blah blah»} footnote blah blah. \item[2]\footnote{«blah blah footnote»} random text \item[3]\footnote{«this is not»} more random text I ...
0
votes
1answer
169 views

Make phpmailer() send a rich text or plain text email - not an html

Im trying to send messages to a mail account that will only accept rich, or plain text emails. Im aware of the AltBody method, but i want to send the message primary as a rich or plain text email. ...
0
votes
1answer
52 views

Executing database plain text as PHP code

I'm storing individual pages containing HTML and PHP in a database as plain text, like this: <body> <h1>Welcome</h1> <?PHP $welcome = "Hello"; echo $welcome; ?> ...
-2
votes
3answers
385 views

PHP Read txt file and check if username password exists

I have a bunch of passwords and usernames stored in a txt file and i need to check for matches. I know this is not a safe method but its for leaning purposes. This code writes the usernames and ...
0
votes
0answers
45 views

UIDocumentInteractionController public.plain-text has no printer option

I'm showing the interaction controller for a plain-text file in IOS, but it have no print option. Whereas the for a pdf, the printer option is available. How can I have the printer shown for a ...
-2
votes
1answer
78 views

Text Only .NET table formatter [closed]

I'm looking for a .NET library that can be used to format tables for plain text documents. It should have some key features like describing the maximum width in characters, for the overall table and ...
0
votes
1answer
134 views

How to extract plain text from ckeditor generated html in JAVA

I am using ckeditor to compose the emails, I am using the html generated by it to send the html emails ad i also need the text version also, So having both html and plain text version in emails will ...
0
votes
1answer
75 views

Getting textarea html to apply styles given in the tinyMCE editor, database issue?

I have a tinyMCE text editor which works. The only thing is that the text which I input to the editor is stored and retrieved as so: <p><strong>the first line</strong></p> ...
0
votes
0answers
56 views

tinyMCE inserting & retrieving html styling as plain from the database, Any solutions?

Currently I have a tinyMCE text editor which does work. The only thing is that the text which I input to the editor is stored and retrieved as so: <p><strong>this is the first ...
2
votes
2answers
312 views

Email clients not seeing plain text alternative of HTML email

I believe I am sending a correctly formatted multipart/alternative MIME email containing different plain text and HTML versions of content. However, once received by an email client (I've tried 3 ...
0
votes
2answers
54 views

Length of plain text from it's SHA1

In my website registration, for security reason, I hash password in client side and send the hashed version to server in registration request. But on the server-side, again for security reasons, I ...
1
vote
3answers
59 views

Convert Textile to plain text

How can I clean string with Textile markup to obtain plain-text? in C#? For example, the string Hello! How *do you do* ? Y = 3 * X ..will be converted to: Hello! How do you do ? Y = 3 * X I ...
4
votes
1answer
131 views

How to control line breaks in plain text email views (.text.erb)

Unlike most plain text email related questions, my problem is that there are too many line breaks in the plain text emails Rails is sending out. For simplicity while starting up, I ditched HTML ...
0
votes
2answers
71 views

BufferedReader ignoring \r\n when reading html page?

I'm using Apache HTTPClient to send a POST request to a page, I then read the response using a BufferedReader. For some reason BufferedReader is reading the two lines I respond with as 1 line. My ...
0
votes
0answers
33 views

Email voting without HTML or RTF

Have been looking into a way to create a mass 100,000+ email poll / vote. This seems relatively easy to do if using Microsoft exchange / outlook by using the in built voting buttons, but.... ....if ...
0
votes
1answer
128 views

How to make actionscript 2 interpret code as plain text?

I'm trying to make a flash-based activity where the end-user will type in some Java as a writing exercise, and when it's done, they will hit enter and flash will check to see if they typed correctly. ...
1
vote
1answer
16 views

mvc3 clickable link into plaintext

is there a way to get the my website in plaintext or in some form to show the tag and the content inside? so that some can copy the whole thing.. I have tried <plaintext> <a ...
0
votes
0answers
67 views

PHP multipart mail fails and sends as plain text

I've troubles getting my PHP invoice mailing script working. The script works well on one application, but it doesn’t in my new one. It’s supposed to send a multipart message, containing the content ...
-1
votes
1answer
567 views

An .mht file is displayed as text in IE9 on Windows 7

I recorded an mht file using the Windows 7 psr.exe tool. When I double-click it, my IE displays the file contents "as is", i.e. as plain text. This is what I see at the top of the browser window: ...
0
votes
2answers
30 views

can cyphertext ever contain actual plaintext input

Is it possible for any commonly used symmetric or asymmetric algorithms to allow any input plaintext to encrypt to a cyphertext that contains the actual plaintext input? Like a pathological case ...
-1
votes
1answer
105 views

Aid me with php imap? [duplicate]

Possible Duplicate: PHP imap problems I need to be able to use my mail (gmail) from a php script. But wherever I try, the email body comes out all rubbbish with characters like =3D and ...
0
votes
3answers
104 views

How to display the Current Month in Plain Text Format?

Any suggestions on how I can quickly print the current month of a calendar in plain text to the clipboard or to the command in the a windows environment? To be clear here, I would like to see the full ...
0
votes
2answers
92 views

How to fetch MYSQL data as hyperlink?

On my site, people can link to topics with buttons I made. Those buttons are putting out a (look: http://....) or (look: (link without http://) on the textarea and when they submit it, the hyperlink ...
1
vote
1answer
478 views

VBA Outlook - Replace Paragraph Mark With Manual Line Break

Dear people at Stackoverflow, I would like to replace for every incoming e-mail the paragraph marks (^p i believe, at least in outlook Find & Replace) with manual line breaks (^l). I've not been ...
4
votes
2answers
109 views

format a cell in plaintext via JavaScript spreadsheet google

Welcome. pre-apologize for translation. Faced with the problem. I form the current date so var thisDate = Utilities.formatDate (new Date (), SpreadsheetApp.getActiveSpreadsheet (). ...
2
votes
0answers
293 views

Random occurence of javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?

During the execution of My java code i get the this error message Exception in thread "main" AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException ...
2
votes
1answer
156 views

If I can see my password in Fiddler Webform session, does it mean it's sending plain text?

If I can see my password in Fiddler Webform session, does it mean it's sending plain text?? Or how can I know if the website is sending passwords as plain text?
2
votes
2answers
118 views

Create HTML list from plain text within an XML structure

I have a XML file in which everything is well structured except for ordered lists. Every list item is tagged as a paragraph <p>, with the enumeration added manually: (1). I want to create a ...
1
vote
1answer
433 views

Sending ONLY plain text e-mail, Rails mime part included in body

I have a rails app that sends out many notification e-mails. We have a desire to let the user choose plain text vs html. Initially our desire was always multipart so we didn't set a content type and ...
0
votes
0answers
129 views

How to display plain text in outlook new mail popup for multipart message

I am using the Swiftmailer class in combination with Zend Framework to send mail from my website. The message is a mix of html and plain text, and I have implemented it like this: // Or set it after ...
0
votes
1answer
72 views

Looking to make MySQL db records readable as CSV-like lines in text file via standard file io interface Linux device driver (working with legacy code)

I want to be able to read from a real live proper MySQL database using standard file access routines. I don't mean reading the MySQL database's own underlying private files. What I mean is ...
0
votes
4answers
153 views

Plain text table data organization

I have a plain text table like this. I need to group the result line so that the data is together in their respective columns. I can split the string (one line) on a space and then I will get an ...
1
vote
1answer
429 views

Syntax Highlighting for plain text (Sublime Text)

I am a great fan of syntax highlighting in any form. But i am missing something similar for plain text files. Imagine different colors for indented lines or lines preceded by special chars. Does ...
0
votes
1answer
619 views

Rails 3 render plaintext page using view

I have a Linux configuration file stored in my database in Rails, and I'd like to be able to download the configuration through a web request My goal on the Linux side is to curl/wget the webpage, ...
3
votes
1answer
198 views

Why is my WebView displaying rss in Plain Text HTML?

I am a noob to android and i am having a very similar issue to the issue in this post. I am having trouble displaying feedburner content as well. it shows the feed in plain text and it is unreadable ...

1 2 3 4