Tagged Questions
The document tag has no wiki summary.
20
votes
3answers
26k views
How do I load an org.w3c.dom.Document from XML in a string?
I have a complete XML document in a string and would like a Document object. Google turns up all sorts of garbage. What is the simplest solution? (In Java 1.5)
Solution Thanks to Matt McMinn, I have ...
19
votes
8answers
7k views
Storing Documents as Blobs in a Database - Any disadvantages?
The requirements for my document management system were:
Must be secure from theft by simple copying of directories, files etc.
Must be secure against traditional virus infection (infection of ...
18
votes
14answers
40k views
Create Word Document using PHP in Linux
Whats the available solutions for PHP to create word document in linux environment?
14
votes
8answers
3k views
Is there a way to generate word documents dynamically without having word on the machine
I am planning on generating a Word document on the webserver dynamically. Is there good way of doing this in c#? I know I could script Word to do this but I would prefer another option.
14
votes
3answers
22k views
How to create a background-image on titlepage with LaTeX?
I want to put a background-image on a titlepage of a document. Is it possible and dows it work?
EDIT:
The answer from Presidenten using the eso-pic-package and my answer found after some research ...
13
votes
4answers
516 views
How do I generate a document (.rtf, .doc, .odt) from R
what's the best way to generate a word-processor file (ideally as platform-independent as possible, but native Word formats will do), with images in it, from the statistical language R?
13
votes
3answers
8k views
iPhone create folder inside documents folder
i just want to create new folders in the documents folder of my iPhone app
does anybody know how to do that ?
appreciate your help!
13
votes
7answers
9k views
Get entire document HTML as string
Is there a way in JS to get the entire HTML within the html tags, as a string?
document.documentElement.??
11
votes
2answers
174 views
Any parsers for RFC documents?
RFCs (http://www.ietf.org/rfc.html) are usually published as text files.
Are there any other formats, which would make parsing the RFC content easier?
Are there any parsers for the widely used RFC ...
11
votes
4answers
4k views
Simple implementation of N-Gram, tf-idf and Cosine similarity in Python
I need to compare documents stored in a DB and come up with a similarity score between 0 and 1.
The method I need to use has to be very simple. Implementing a vanilla version of n-grams (where it ...
11
votes
4answers
13k views
“Access is denied” JavaScript error when trying to access the document object of a programmatically-created <iframe> (IE-only)
I have project in which I need to create an <iframe> element using JavaScript and append it to the DOM. After that, I need to insert some content into the <iframe>. It's a widget that will ...
10
votes
4answers
261 views
Class versioning to support backwards compatibility
In the project I work on, we handle Medical Billing.
Every time the state makes a change to the official form (which our data classes represent), in order to maintain backward compatibility with ...
9
votes
12answers
385 views
Easiest way to create dynamic-content documents (like invoices, delivery notes)
I was searching the web with a few results, but none of them seems to fit the task. I was looking für possibilites for .NET, but would also like to know how Java/PHP/etc. developers finish tasks like ...
9
votes
3answers
4k views
Strange problem with UIDocumentInteractionController
I don't know what wrong with this code but everytime when I run the app, after the Menu is shown, the app crash.
NSString * path = [[NSBundle mainBundle] pathForResource:@"tung" ofType:@"doc"];
...
9
votes
5answers
12k views
Make DocumentBuilder.parse ignore DTD references
When I parse my xml file (variable f) in this method, I get an error
C:\Documents and Settings\joe\Desktop\aicpcudev\OnlineModule\map.dtd (The system cannot find the path specified)
I know I do ...
8
votes
5answers
3k views
javascript to get paragraph of selected text in web page
After highlighting text, I would like to obtain the paragraph in which the selected text resides.
var select = window._content.document.getSelection();
Any pointers please?
7
votes
2answers
3k views
$(window).scrollTop() vs. $(document).scrollTop()
What's the difference between:
$(window).scrollTop()
and
$(document).scrollTop()
Thanks.
7
votes
3answers
484 views
Merging Word documents in Ruby
I have N Word documents (Office 2003) from which I want to make a single Word document by merging all the N documents together in some order. How do I go about doing this in Ruby? Thanks!
It's just ...
7
votes
3answers
4k views
LaTeX book class: Twosided document with wrong margins
I am trying to write my thesis in latex... Cannot get the layout straight though :?
I'm using the following document class:
\documentclass[11pt,a4paper,twoside,openright]{book}
My problem is: on ...
7
votes
8answers
353 views
what's a good enterprise level pdf generation solution?
I'd like to find a replacement for Crystal Reports. Oh how I dislike CR.
Ideally I'd like to find a PDF generation tool that has the following:
Solid API in .NET
Speed: we'd like to generate ...
7
votes
4answers
283 views
lexers / parsers for (un) structured text documents
There are lots of parsers and lexers for scripts (i.e. structured computer languages). But I'm looking for one which can break a (almost) non-structured text document into larger sections e.g. ...
7
votes
1answer
3k views
MongoDB: How to update multiple documents with a single command?
I was surprised to find that the following example code only updates a single document:
> db.test.save({"_id":1, "foo":"bar"});
> db.test.save({"_id":2, "foo":"bar"});
> ...
7
votes
11answers
4k views
Save the document generated by javascript
Javascript can manipulate the document the browser is displaying, so the following:
<script>
...
6
votes
4answers
163 views
$(document) vs. $(“document”)
Is there any difference between: $(document) and $("document")?
EDIT: also when into the .ready() e.g. $("document").ready()
6
votes
2answers
1k views
Programmatically add footer to Office Word/Excel document
I'm looking to build a solution similar to this one:
http://esqinc.com/section/products/4/idocid.html
What the system makes is insertion of a document file name into the document footer. How's that ...
6
votes
2answers
577 views
Document viewer control?
We are creating a custom document management application that requires a viewer for the user to quickly move through various documents no matter the format (image files, .doc, .docx, .xls, .xlsx, ...
5
votes
2answers
328 views
Is a <head> element always available in the DOM, even if absent in the HTML markup?
Every browser I've observed creates a <head> element that's accessible in the DOM even if there are no explicit <head></head> tags in the document's markup.
However, Google ...
5
votes
2answers
470 views
Load html document in javascript from text
Is it possible to load an html document into a DOM javascript object so that you can read the elements in the document? For example, if I have a file on the server Test.html. Can the page Hello.html ...
5
votes
5answers
593 views
Tracking changes to a (functional) design document
I am looking for a good way to keep a design document up to date with the latest decisions.
We are a small team (two developers, game designer, graphic designer, project manager, sales guy). Most of ...
5
votes
4answers
5k views
How do I execute a page-defined JavaScript function from a Firefox extension?
I'm creating a Firefox extension for demo purposes.
I to call a specific JavaScript function in the document from the extension.
I wrote this in my HTML document (not inside extension, but a page that ...
4
votes
1answer
63 views
File type misery - Cocoa
So we recently shipped a document based application with an unfortunate oversight: the UTI for our main document type was left blank. We had a name for it, but the identifier was straight up empty.
...
4
votes
1answer
111 views
How do you delete a couchdb document with an empty “” document id?
I see the document in the db as this:
{_id: "", _rev: "1-2f11e026763c10730d8b19ba5dce7565", forbidden: "must supply latest _rev to update existing package"}
Everything I see in the docs shows ...
4
votes
4answers
264 views
Native Java document parser and converter library / linux based document converters
I'm looking for a Java library which can do the following:
parse emails in *.eml or *.msg format for attachments of type DOC,DOCX,JPEG,PNG,GIF,TXT,XLS,XLSX,PPT,PDF and convert the attachmens to the ...
4
votes
1answer
167 views
Javascript, Text Annotations and Ideas
I am very curious to here input from others on a problem I've been contemplating for some time now.
Essentially I would like to present a user with a text document and allow him/her to make ...
4
votes
2answers
86 views
Doing sophisticated image analysis with python / django
I am working on a django project that analyzes images that contain text and (1) infers if the image needs to be rotated and (2) where text areas are.
I am currently using PIL to do some more simpler ...
4
votes
3answers
313 views
How to use Mercurial for version control of text documents?
This is not exactly a programming question, however I think it fits here better than in the TeX group
I want to use version control for keeping track of changes of text files (which are used to ...
4
votes
2answers
409 views
What is the difference between the document selector and window selector?
I have the following JQuery function that takes user input and displays it on screen. When I select for both $(document) and $(window) the function works. What is the disadvantage to using either ...
4
votes
1answer
384 views
jquery thickbox reference problem
Completely restated my question:
Problem: Losing reference to an iFrame with Mozilla firefox 3.6 and 4.0
More info:
- Works fine in internet explorer 8 64-bit and 32-bit version.
How to reproduce? ...
4
votes
2answers
405 views
how to find source component that generated a DocumentEvent
Is it possible to discover which oject generated a DocumentEvent? Something like i can do with ActionListener:
JTextField field = new JTextField("");
field.addActionListener(actionListener);
...
4
votes
1answer
715 views
Android: Open saved file in default app from my app
First off, sorry if this has been asked but I cannot find it. I am downloading documents in my app from a remote resource. Once the document is downloaded, I want to open it for the user. What I want ...
4
votes
1answer
149 views
What's the easiest way to fill gaps in a list of numbers?
I'm having some trouble explaining the question in a single line for the title, but hopefully this description will provide you with enough insight to fully understand my question:
I have a few ...
4
votes
1answer
2k views
Difference between screen.availHeight and window.height
I am executing the following javascript on my browser(firefox)
1.console.debug("Screen height = "+ screen.availHeight); //output 770
2.console.debug("Window Height ="+ $(window).height()); //output ...
4
votes
2answers
841 views
Delete field using curl in couchdb
I searched and didn't found, can I delete a field of a couchdb's document using curl ?
The most I can do is delete a document :(
curl -X DELETE ...
4
votes
2answers
709 views
No norwegian characters in LaTeX
I have translated a document from English to Norwegian in the LaTeX format, and while using norwegian special characters, I get an error using
\usepackage[utf8x]{inputenc}
to try and display the ...
4
votes
1answer
447 views
CouchDB - Sorting documents by position
what is the best practice to sort/order multiple documents by user defined order (position) in CouchDB?
Solutions I thought about:
Every document has a "position" value, starting from 1 to n. The ...
4
votes
1answer
722 views
SPFileVersionCollection - why versions are sorted in mixed order?
SPFileVersionCollection and SPListItemVersionCollection versioning seems inconsistent to me. Inconsistency wouldn't be a problem to me, but sort order is.
SPListItemVersionCollection
I can ...
4
votes
2answers
513 views
How can I count words in complex documents (.rtf, .doc, .odt, etc)?
I'm trying to write a Python function that, given the path to a document file, returns the number of words in that document. This is fairly easy to do with .txt files, and there are tools that allow ...
4
votes
1answer
315 views
Generating PDF documents from LISP
I want to generate a technical report from lisp (AllegroCL in my case) and I studied various packages/project to help me do this.
Requirements:
Need to generate a PDF
May create an intermediate ...
4
votes
4answers
4k views
Java+DOM: How do I set the base namespace of an (already created) Document?
I am dealing with an already created Document object.
I have to be able to set it's base namespace (attribute name "xmlns") to certain value.
My input is DOM and is something like:
...
4
votes
5answers
716 views
How do I get the Window object from the Document object?
I can get window.document but how can I get document.window? I need to know how to do it in all browsers.