Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
175 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 ...
6
votes
2answers
281 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 ...
4
votes
1answer
172 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 ...
3
votes
2answers
3k 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 ...
2
votes
2answers
112 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
161 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 ...
2
votes
1answer
2k 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
0answers
188 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 ...
2
votes
2answers
195 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 ...
1
vote
1answer
166 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 ...
1
vote
1answer
142 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 ...
1
vote
0answers
50 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 ...
1
vote
2answers
83 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
120 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 ...
0
votes
0answers
26 views

Orphan Connections when using SQL Server Reporting Services

I am using SQL Server Reporting Services on an instance of SQL Server 2008 R2. Sessions created by the reports are not being closed after the report is closed. I am using "Connection Lifetime=10;" in ...
0
votes
1answer
128 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.
0
votes
2answers
512 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 ...
0
votes
1answer
96 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 ...