The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
49 views

Html Conditional PageBreak

I have html page that generate report it contains sections and sub-sections. Code has many tables and sub tables and div tags. I want to apply page break when any section heading reach the end of ...
0
votes
0answers
57 views

Magento Multiple Transactions Per Order SagePay

I've asked this question to the folks over at Ebizmarts, but their solution is to pay for their pro extension and use DEFERRED payments :( Using Magento CE 1.7.0.2 and the free Ebizmarts SagePay ...
1
vote
1answer
35 views

How to add a orphan branch in smartgit

I need to create an orphan branch, which has no parent. How do I do it in Smartgit? Need some guidance on this..
3
votes
2answers
148 views

C++, allocating space in a for loop, possible memory leak verification

I was just curious as to if this code would create multiple memory leaks, or if it would get cleaned up correctly. Node *newNode; for (int i = 0; i < 10; i++) { newNode = new Node(); } ...
0
votes
1answer
30 views

Is there some “on removal” action in Hibernate triggered by e.g. orphan removal or its equivalent?

I have model SomeFileModel that contains reference to a file stored on disk. I would like to save that file together with an entity and delete them both at once. While the former isn't difficult, the ...
0
votes
0answers
15 views

orphaned cases?

i have 3 classes currently made, borrower, test borrower which calls in the public classes so they can be run in the psvm and now borrower test. However i can't seem to create the menu in test ...
1
vote
1answer
233 views

Fluent NHibernate mapping Parent/Child Tables with orphaned child records

I'm new to Fluent NHibernate and C#.NET and struggling with this problem. I have two tables: audit: audit_seq (Primary Key), user_code (Foreign Key), audit_date username: user_code ...
1
vote
0answers
42 views

Last line of a paragraph contains a single word only [duplicate]

Possible Duplicate: JavaScript to avoid widows Is there a way in CSS or maybe JS to prevent having paragraphs where the last line contains only one word ?
1
vote
1answer
85 views

Pull Requests for orphan branch

I'm working with a friend on a little project hosted at github. What is special about this project is that we would like to use lots of orphan branches. But it seems we can't do pull request for such ...
3
votes
2answers
149 views

python: How to detect when my thread become orphan?

I have a program using a thread. When my program is closed, my thread is still running and that's normal. I would like to know how my thread can detect that the main program is terminated; by itself ...
0
votes
0answers
19 views

Do we have Waterfall and Orphanage in the Category List?

It seems like we don't have (or used to have) Waterfall and Orphanage in the Category List? I tried to find them but can not.
1
vote
1answer
195 views

Prevent orphaned objects, with has_many through associations, in Rails 3

I have a model with "member", "group", "membership" and "user". The data is organized in a tree structure with groups that have members associated to them. Members without any group associations are ...
2
votes
0answers
116 views

How to automatically removes orphans when merging a deserialized graph of objects in doctrine2?

I'm using Symfony2 with Doctrine2 to build a backend API. This API will receive graph of objects to CRUD in a database. I'm using the great JMSSerializer bundle to deserialize the json-encoded ...
3
votes
2answers
172 views

Efficiently delete orphaned m2m objects/tags in Django

I have two models - Photo and Tag - which are connected via a ManyToManyField. class Photo(models.Model): tags = models.ManyToManyField(Tag) class Tag(models.Model): lang = ...
0
votes
0answers
162 views

Is orphan removal possible with Hibernate OneToMany ManyToMany sets depending on same enitity?

I have two entities A, B. A contains OneToMany set that includes entity A's ID and C's ID. B contains ManyToMany set that includes entity B's ID and C's ID. If A is removed, C mapped by A should also ...
1
vote
1answer
485 views

orphan removal constraint violation

I am using EclipseLink and have the following entity classes (I tried to simplify the scenario as much as I could, but after any further simplification, the error does not occur): @Entity public ...
0
votes
1answer
142 views

Close Java subprocess when calling program exits/crashes

I'm putting together a multi-language system, but am running into issues with orphaned processes. My code consists of a Python program calling a Java program, with piped communication between the two ...
0
votes
1answer
731 views

How to remove shortcuts from desktop?

Installer creates 2 shortcuts on Desktop: file (FS) and internet shortcuts(IS). On uninstall FS is removed ok, but IS still exists. Then I commented FS and tested. Now it is created and removed ...
3
votes
1answer
3k views

Does cascade=“all-delete-orphan” have any meaning in a Hibernate unidirectional many-to-many association with a join table?

I have two objects which form a parent-child relationship which have a many-to-many relationship. Following the recommendations in the Hibernate reference manual, I have mapped this using a join ...
9
votes
2answers
2k views

JPA 2.0 / Hibernate and “orphanRemoval”: Just replacing an entity does not remove the old one

I have question regarding JPA 2.0, Hibernate and "orphanRemoval". First my setup: Spring 3.0.5.RELEASE SprnigData JPA 1.0.1.RELEASE Hibernate 3.5.2-Final DBMS: PostgreSQL 9.0 I have two rather ...
2
votes
1answer
572 views

process re-parenting: controlling who is the new parent

Is the new parent always "init" or is there some way to control who gets to be the new parent? Wikipedia seems indicates that it's always "init". I really hope that this is not the case. I have tried ...
3
votes
3answers
343 views

Sitecore adds several orphan items whenever an item is added

In my Sitecore 6.1.0 installation I have hooked onto the "item:added" event by implementing my own custom handler as follows (in Web.config): <event name="item:added"> <handler ...
2
votes
1answer
612 views

Orphan constraints in SQL Server database

Running the following query results in all constraints in our client's database. However, several rows in the result set don't seem to have a parent, i.e. parent_object_id = 0 and ...
6
votes
2answers
543 views

How to Detect in Sub Process When Parent Process Has Died?

In python, I have a parent process that spawns a handful of child processes. I've run into a situation where, due to an unhandled exception, the parent process was dieing and the child processes where ...
1
vote
4answers
432 views

Any rails plugins/gems for detecting orphaned records?

Looking for something that can go through the relationships defined in models and can check the DB for orphaned records/broken links between tables.
1
vote
0answers
96 views

Is there Widow Orphan protection using Prawn for Ruby on Rails?

I have a question about using Prawn for Ruby on Rails. I'm using a bounding_box for variable length content. When the content overflows to the next page I would like to have some sort of ...
2
votes
2answers
2k views

TFS claiming files are locked even though they are not - Orphaned Locks

I'm trying to perform a baseless merge between two branches using tf.exe. When I run the command, it fails and tells me that there 15-20 files that are locked by another user. I've looked at the ...
7
votes
3answers
270 views

How do I optimize my stylesheet by removing unmatched and/or unnecessary CSS selectors

I have inherited a massive stylesheet with many thousand selectors and I'm certain that a good number of them are unnecessary and never actually match elements on the site. In the interests of ...
0
votes
1answer
162 views

Problem with NHibernate not detecting other associations when all-delete-orphan is set on a M:N relationship

Here's the scenario: I have 3 objects called Person, VideoGame, and Store. One Person can have many VideoGames One VideoGame can belong to many Persons Same M:N relationship is between Store and ...
5
votes
2answers
7k views

Orphans remain in database even with orphanRemoval=true on one-to-many relationship (JPA/Hibernate)

@Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @Table(name = "company_policies") @DiscriminatorColumn(name = "rule_name") public abstract class AbstractPolicyRule implements ...
4
votes
1answer
6k views

Hibernate - One to many relationship and orphanRemoval cascade

I have a basic one to many relation parent / child like in the chapter 21 of Hibernate references book. The cascade is only from child to parent (persist cascade only because I don't want to delete ...
2
votes
1answer
243 views

Objective-C: How to implement TextView orphan control

I'm working on an iPad app that does a simple display of text similar to iBooks. I would like to display ONLY full paragraphs on each screen (ie, no orphan/widows on a page). Similar to iBooks, I ...
1
vote
2answers
177 views

is there any way to find orphaned pages without having access to the server?

Let's say I am testing beta pages on my server and was too lazy to password protect the pages I put up. I am putting them up in some obscure named sub-directory. Is there any way of people seeing the ...
1
vote
2answers
276 views

UPDATE query that fixes orphaned records

I have an Access database that has two tables that are related by PK/FK. Unfortunately, the database tables have allowed for duplicate/redundant records and has made the database a bit screwy. I am ...
1
vote
1answer
97 views

Tracking old uploaded files on a web server - How do you know what isn't used anymore?

Users can upload files to the server, which are stored effectively forever. I want to know if anyone has an idea for tracking orphan files. A few of my ideas involve logging every upload, but then ...
2
votes
2answers
457 views

What happened to the CSS Checker tool?

I used it before, and was reminded of it when someone asked about a tool to strip unsused CSS from a stylsheet. I went back to the link, but it's gone, what happened to it? Is it gone forever or ...