<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2149325147636648940</id><updated>2011-08-13T23:57:56.457-07:00</updated><category term='Could not set property'/><category term='Projections.distinct'/><category term='Usury'/><category term='Hibernate'/><category term='Org.hibernate.LazyInitializationException'/><category term='paging'/><category term='السائرون نياما'/><category term='مقدمة'/><category term='join'/><category term='duplicates'/><category term='أيات'/><category term='المسرى يستغيث'/><category term='Economy'/><category term='الأقصى'/><category term='lazy initialization'/><category term='القدس'/><category term='Interest'/><category term='Islamic economy'/><category term='world financial crisis'/><category term='راشيل كوري'/><category term='Money'/><category term='component beans'/><category term='حركة التضامن الدولية'/><category term='distinct'/><category term='نشطاء السلام'/><category term='filtering'/><title type='text'>لساني</title><subtitle type='html'>من رأى منكم منكراً فليغيره بيده، فإن لم يستطع فبلسانه</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-2733307794127351098</id><published>2009-10-14T06:56:00.000-07:00</published><updated>2009-10-15T03:33:18.182-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projections.distinct'/><category scheme='http://www.blogger.com/atom/ns#' term='Org.hibernate.LazyInitializationException'/><category scheme='http://www.blogger.com/atom/ns#' term='duplicates'/><category scheme='http://www.blogger.com/atom/ns#' term='distinct'/><category scheme='http://www.blogger.com/atom/ns#' term='Could not set property'/><category scheme='http://www.blogger.com/atom/ns#' term='filtering'/><category scheme='http://www.blogger.com/atom/ns#' term='lazy initialization'/><category scheme='http://www.blogger.com/atom/ns#' term='paging'/><category scheme='http://www.blogger.com/atom/ns#' term='join'/><category scheme='http://www.blogger.com/atom/ns#' term='component beans'/><category scheme='http://www.blogger.com/atom/ns#' term='Hibernate'/><title type='text'>Hibernate: Getting a paged list of distinct results in join… a series of unfortunate events</title><content type='html'>&lt;span style="font-size:100%;"&gt;&lt;span style="font-style: italic;font-family:arial;" &gt;Tables hierarchy:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Parent, ChildFirstLevel (Parent's child), and ChildSecondLevelSet (ChildFirstLevel's child)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;In the system I’m working on, there are two very similar queries: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;-&lt;span style="font-style: italic;"&gt;Query 1&lt;/span&gt;: filter Parents (filter criteria: some fields of Parent) and display results in a paging list &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;-&lt;span style="font-style: italic;"&gt;Query 2&lt;/span&gt;: same filtering of Parents, but it’s required to retrieve parents and their children in all levels. No paging.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-family:arial;font-size:100%;"  &gt;Problem #0: Hibernate and returning distinct results from joins&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;See: &lt;/span&gt;&lt;a style="font-family: arial;" href="https://www.hibernate.org/117.html#A3"&gt;https://www.hibernate.org/117.html#A3&lt;/a&gt;&lt;span style="font-family:arial;"&gt;: Hibernate does not return distinct results for a query with outer join fetching enabled for a collection (even if I use the distinct keyword)?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Query 2 joins parents with children, so to overcome this I used &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;to remove join duplicates, which was no issue since Query 2 does not require paging.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;Problem #1: Paging and Criteria APIs&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;We then got a change request to add some ChildFirstLevel fields to the filter criteria. This required editing Query 1 to join Parent and ChildFirstLevel tables, which caused duplicates to return in the result set. The solutions in &lt;/span&gt;&lt;a style="font-family: arial;" href="https://www.hibernate.org/117.html#A3"&gt;https://www.hibernate.org/117.html#A3&lt;/a&gt;&lt;span style="font-family:arial;"&gt; to remove duplicates didn’t work because they all remove duplicates in-memory (after executing the SQL on the database and retrieving the results), which messed up the paging.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;font-family:arial;" &gt;Solution: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;To keep using Criteria APIs, the solution was to use &lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;Projections.distinct()&lt;/span&gt;&lt;span style="font-family:arial;"&gt;, which translates to &lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;select distinct&lt;/span&gt;&lt;span style="font-family:arial;"&gt; in SQL. &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;Projections.distinct()&lt;/span&gt;&lt;span style="font-family:arial;"&gt; will cause the query to only return the properties in the projection, since it constructs the select clause (with the distinct keyword). So we will need to use AliasToBeanResultTransformer to construct Parent objects from the result set, which will have the individual fields of Parent.&lt;/span&gt;&lt;br /&gt;&lt;a style="font-family: arial;" href="see:%20https://forum.hibernate.org/viewtopic.php?t=941669"&gt;&lt;br /&gt;See: https://forum.hibernate.org/viewtopic.php?t=941669&lt;/a&gt;&lt;span style="font-family:arial;"&gt; Post: one of the solutions.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;Problem #2: Projections.distinct() and listing all properties in the query&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Parent table is huge. We don’t want to list all the fields. You want to generate their properties names.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;font-family:arial;" &gt;Solution: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;This can be done using &lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;getClassMetadata(Parent.class).getPropertyNames()&lt;/span&gt;&lt;span style="font-family:arial;"&gt;. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;Problem #3: Projections.distinct() and component beans&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Parent class has many component beans, so we will need recursion in generating the property names (to generate the properties inside the components). Otherwise, the query will contain component names that SQL does not recognize. Here’s the messy code (based on &lt;/span&gt;&lt;a style="font-family: arial;" href="http://www.agitar.com/openquality/hibernate2-2.1.8/net/sf/hibernate/expression/Example.java.html"&gt;http://www.agitar.com/openquality/hibernate2-2.1.8/net/sf/hibernate/expression/Example.java.html&lt;/a&gt;&lt;span style="font-family:arial;"&gt;):&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;private ProjectionList addPropNamesToPrjList(ProjectionList prjList, String componentName, String[] propNames, Type[] propTypes) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    for (int i = 0; i &lt;&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;      if (propTypes[i].isComponentType()) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;        String[] subNames = ((AbstractComponentType)propTypes[i]).getPropertyNames();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;        Type[] subTypes = ((AbstractComponentType)propTypes[i]).getSubtypes();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;        String newComponentName = "".equals(componentName) ? propNames[i] : (componentName + "." + propNames[i]);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;        addPropNamesToPrjList(prjList, newComponentName, subNames, subTypes);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;      } else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;        String propName = "".equals(componentName) ? propNames[i] : (componentName + "." + propNames[i]);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;        prjList.add(Projections.property(propName), propName);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;      }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    return prjList;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;  }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;  /** This medhod constructs a ProjectionaList containing the given class' properties &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;   *  Supports comoponent properties using recursion&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;   */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;  protected ProjectionList constructParentPropsProjList(Session session, Class classObj) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    String[] propNames = session.getSessionFactory().getClassMetadata(classObj).getPropertyNames();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    Type[] propTypes = session.getSessionFactory().getClassMetadata(classObj).getPropertyTypes();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    ProjectionList prjList = Projections.projectionList();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    prjList = addPropNamesToPrjList(prjList, "", propNames, propTypes);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;    return prjList;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;  }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;The above code does construct correct running SQL, but then you get a Hibernate error when Hibernate attempts to construct Parent objects from the result:&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);font-family:arial;" &gt;Could not set property component.x on Parent.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;No solution was found to this. Apparently, Hibernate is unable to construct the component beans from the properties we had such a hard injecting into the query.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;A tweak to the above code: Not using an alias&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;prjList.add(Projections.property(propName));&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Returns empty objects.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(0, 0, 0);font-family:arial;" &gt;Solution: &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Use HQL to be able to insert the &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;distinct &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;keyword directly in a query that would be both humane and working. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;" &gt;Problem #4: HQL and lazy initialization&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;The HQL query is something like:&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;select distinct prnt  -- or select count(distinct prnt.id) if you want&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;from Parent prnt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;left join prnt.childFirstLevelSet firstLevel   &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;left join firstLevel.childSecondLevelSet&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;where … (conditions on Parent and ChildFirstLevel)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;This does generate correct running SQL. But unfortunately, it does not work when the conditions are on ChildFirstLevel. It gives:&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);font-family:arial;" &gt;Org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: Parent.childFirstLevelSet, no session or session was closed&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;This seems to be related to the following&lt;/span&gt;&lt;br /&gt;&lt;a style="font-family: arial;" href="https://forum.hibernate.org/viewtopic.php?f=1&amp;amp;t=960269&amp;amp;start=0"&gt;https://forum.hibernate.org/viewtopic.php?f=1&amp;amp;t=960269&amp;amp;start=0&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;that quotes Hibernate in Action (page 261): &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Hibernate currently limits you to fetching just one collection eagerly. This is a reasonable restriction, since fetching more than one collection in a single&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;query would be a Cartesian product result. &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Attempts to use &lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;with &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;and &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;&lt;span style="color: rgb(51, 51, 255);"&gt;fetch all&lt;/span&gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;keywords came to nothing.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(0, 0, 0);font-family:arial;" &gt;Solution: &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Luckily, throughout the system ChildFirstLevel is always retrieved with its children. So changing its children’s mapping by adding &lt;span style="color: rgb(51, 51, 255);"&gt;lazy="false"&lt;/span&gt; solved the problem. No need for the join statements (except the first one) that were causing wrong results. So the query would be:&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;select distinct prnt  &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;from Parent prnt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;left join prnt.childFirstLevelSet firstLevel   &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;where … (conditions on Parent and ChildFirstLevel)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;" &gt;Problem #5: fetch and distinct results&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;For Query 2, we need to fetch the children so the query should be&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;select distinct prnt  &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;from Parent prnt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;left join fetch prnt.childFirstLevelSet firstLevel   &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;where … (conditions on Parent and ChildFirstLevel)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Adding &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;fetch &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;caused the results to duplicate (again).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(0, 0, 0);font-family:arial;" &gt;Solution: &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;That was easy, since Query 2 does not require paging. We can just throw the results into a HashSet.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;" &gt;Problem #6: Retrieving filtered children only (and not other children in same parent)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;Query 2: We now have a working query that returns distinct results filtered by conditions on both the parent and child tables. The problem is that since we filter by ChildFirstLevel fields, only objects that meet the filter criteria will be retrieved. If the parent has two children and only one meets the filtering criteria, only one child will be retrieved. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(0, 0, 0);font-family:arial;" &gt;Solution:&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);font-family:arial;" &gt;This required a tweak to the query:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;select distinct prnt  &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;from Parent prnt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;left join fetch prnt.childFirstLevelSet firstLevel   &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;where … (conditions on Parent and ChildFirstLevel)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;-- repeat query to get all parent’s children&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;or prnt.id = firstLevel.parent.id &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;and prnt.id in &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;(select prnt.id from Parent prnt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;left join prnt.childFirstLevelSet firstLevel  &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-family:arial;" &gt;where … (conditions on Parent and ChildFirstLevel))&lt;/span&gt;&lt;/span&gt;     &lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-2733307794127351098?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/2733307794127351098/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=2733307794127351098' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/2733307794127351098'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/2733307794127351098'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2009/10/hibernate-getting-paged-list-of.html' title='Hibernate: Getting a paged list of distinct results in join… a series of unfortunate events'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-2130169347378362475</id><published>2008-11-01T13:39:00.000-07:00</published><updated>2009-03-13T03:24:01.344-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Usury'/><category scheme='http://www.blogger.com/atom/ns#' term='Money'/><category scheme='http://www.blogger.com/atom/ns#' term='Islamic economy'/><category scheme='http://www.blogger.com/atom/ns#' term='Interest'/><category scheme='http://www.blogger.com/atom/ns#' term='Economy'/><category scheme='http://www.blogger.com/atom/ns#' term='world financial crisis'/><title type='text'>World Financial crisis... root cause, anybody?</title><content type='html'>&lt;style type="text/css"&gt; 	&lt;!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } 	--&gt; 	&lt;/style&gt; &lt;p style="margin-bottom: 0in;"&gt;This is a post I've been wanting to write a long time ago. A few months before the current world financial crisis.  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;b&gt;Money creation&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in; font-style: normal; text-decoration: none;"&gt; &lt;i&gt;The process by which banks create money is so simple that the mind is repelled&lt;/i&gt; -John Kenneth Galbraith, Economist&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;Now let's see this video: &lt;a href="http://www.youtube.com/watch?v=vVkFb26u9g8"&gt;Money As Debt&lt;/a&gt; (or this &lt;a href="http://video.google.com/videoplay?docid=-1614098610321522040&amp;amp;ei=I7QYSdn0B5bC2gKwye3ADQ&amp;amp;q=%D8%A7%D9%84%D9%85%D8%A7%D9%84+%D9%81%D9%8A+%D8%A7%D9%84%D8%BA%D8%B1%D8%A8&amp;amp;emb=1"&gt;link&lt;/a&gt; with Arabic subtitles); a must see before you do any bank transaction (at least watch the first 20 minutes).&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;The video explains how Money today -instead of representing value like in the past- represents Debt. It shows how money is 'created'. In the past, for more gold/siver money to be created, more gold/silver had to be dug out. But in the present, -simplifing a complex operation- banks create money (out of no where) whenever anyone signs a loan from the bank. A loan is a promise to repay from the loaner's side, allowing the bank to conjure into existance the amount of the loan. The bank then collects interest on this amount. That's just it. The bank does not have the money it lends out. The system works because not &lt;span style=""&gt;everyone&lt;/span&gt; go &lt;span style=""&gt;remove&lt;/span&gt; their money at the same time (called a run on the bank), and because bank systems are like closed loops; money loaned from one bank is deposited in another.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;95% of the money in our world is created by banks. T&lt;span style="text-decoration: none;"&gt;his means that almost all of the money we deal with is &lt;/span&gt;&lt;span style="text-decoration: none;"&gt;&lt;u&gt;&lt;span style=""&gt;fictional&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;span style="text-decoration: none;"&gt;. It does not really exist.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;i&gt;I'm afraid that the ordinary citizen will not like to be told that banks can and do create money&lt;/i&gt; -Reginald McKenna, past Chairman of the Board, Midlands bank of England&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;i&gt;Every single dollar in circulation is loaned into existence by a bank, with interest&lt;/i&gt;&lt;span style="font-style: normal;"&gt; -&lt;a href="http://www.chrismartenson.com/martensonreport/end-money"&gt;Chris Martenson&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in; text-decoration: none;"&gt;&lt;b&gt;Paying debts... Settling accounts?&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in; font-style: normal;"&gt;One would be enticed to think that if all debts were paid, there'd be more money. Like in the case of personal loans. But the truth is: If all debts (of governments, businesses, and individualts) were paid off, there'd be NO MONEY. So our economies are totally dependant on this money creation process.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;If the value of loans is P, then we need P + I money to repay the debts with interest (where I is the Interest value). But knowing that the amount of money in existance is P (because nearly all money is created by loans), where can we get the money to repay the interest I?&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;The answer is we need to create more money/debt. The system needs &lt;u&gt;&lt;span style=""&gt;debt to continously expand&lt;/span&gt;&lt;/u&gt; just to function (have an acceptable percentage of foreclosures).&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;i&gt;One thing to realize about our fractional reserve banking system is that like a child's game of musical chairs, as long as the music is playing, there are no losers &lt;/i&gt;&lt;span style="font-style: normal;"&gt;-Andrew Gause, Monetary historian&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;b&gt;But will the music stop?&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;We have seen how the money supply keeps expanding, but since the volume of production and trade does not grow at the same rate, we get this terrible monster called &lt;i&gt;Inflation&lt;/i&gt;.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;Our monetary system has to infinitely keep growing the amount of money/debt. But this exponential increase can't go on for ever.  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;Let's leave it to the scientists to explain.&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;"&lt;i&gt;&lt;u&gt;The greatest shortcoming of the human race is our inability to understand the exponential function&lt;/u&gt;&lt;/i&gt;&lt;i&gt;." This is the opening line of a &lt;a href="http://www.youtube.com/watch?v=GDW3JjHztw8"&gt;talk&lt;/a&gt;&lt;/i&gt;&lt;a href="http://www.youtube.com/watch?v=GDW3JjHztw8"&gt;&lt;i&gt;&lt;u&gt; I have given over 1500 times&lt;/u&gt;&lt;/i&gt;&lt;/a&gt;&lt;i&gt; since 1969. In this context, the exponential function is used to give a quantitative description of steady growth of, for example, a population. As we all know, quantities that grow steadily, at even modest rates, quickly become impossibly large. Yet non-scientists in the business and government communities continue to fight for "sustainable growth" of the U.S. economy and population. What are scientists doing to increase public comprehension of the impossibility of "sustainable growth?" The main role of scientists seems to be to avoid calling attention to the impossibility of continued growth of populations and of rates of consumption of resources and, instead, to focus on minor aspects of the related problems. In so doing, we are complicit in making the problems worse. For scientists, this opening line should be revised to read: "The greatest shortcoming of scientists is our unwillingness to apply our knowledge of the exponential function to the great problems that are facing the human race.&lt;/i&gt;"  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;i&gt;Anyone who believes exponential growth can go on forever in a finite world is either a madman or an economist -&lt;/i&gt;Kenneth E. Boulding&lt;span style="font-style: normal;"&gt;, Economist&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;So instead of asking Will the music stop; we should have asked When will the music stop?&lt;/p&gt;&lt;meta equiv="CONTENT-TYPE" content="text/html; charset=utf-8"&gt;&lt;title&gt;&lt;/title&gt;&lt;meta name="GENERATOR" content="OpenOffice.org 2.4  (Win32)"&gt;&lt;style type="text/css"&gt; 	&lt;!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } 	--&gt; 	&lt;/style&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;b&gt;Current crisis&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;The current crisis that started in the U.S. ows its roots to the fact that banks became &lt;u&gt;too lenient in giving mortgage loans&lt;/u&gt;, which led to a high percentage of foreclosures. But does not the code read that this should be no problem because banks will just take over the mortgaged property? Well, given the large number of foreclosures (and real estate properties for sale), real estate prices plunged downs. Banks did not get  back the expected values. Also, too many properties for sale meant slower sales. And banks became short of liquidity -unable to fulfill their commitment. Multiple runs on banks happened. The domino effect started.  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;You must have seen that coming, right? After knowing how the system works. The contemporary monetary system is built and compelled on &lt;u&gt;Greed&lt;/u&gt;. Therefore, the needed hard-to-reach balance to cover the fictional money was doomed to failure. It was blind greed of bankers and borrowers that caused the current mortage crises. The greedy 'continous expansion' can never work (see &lt;span style=""&gt;section “But will the music stop?”&lt;/span&gt;).&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;I related to how tricks of loans and interest have been used to control nations in this interview with John Perkins, author of &lt;span style="text-decoration: none;"&gt;Confessions of an Economic Hit Man&lt;/span&gt;.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;b&gt;Now read this&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;a name="t-2-276"&gt;&lt;/a&gt;“&lt;i&gt;Allah &lt;/i&gt;&lt;i&gt;&lt;u&gt;obliterateth&lt;/u&gt;&lt;/i&gt;&lt;i&gt; usury, and increaseth the alms. And Allah loveth not any ingrate sinner&lt;/i&gt;&lt;span style=""&gt;” The Quran: 'The Cow' chapter: verse 276&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;a name="t-2-275"&gt;&lt;/a&gt; “&lt;i&gt;Those who devour Usury Shall not be able to stand except standeth one whom the Satan hath confounded with his touch. That shall be because they say: bargaining is but as usury whereas Allah hath allowed bargaining and hath forbidden usury. Wherefore Unto whomsoever an exhortation cometh from his Lord, and he desisteth, his is that which is past, and his affair is with Allah. And whosoever returnoth --such shall be the fellows of the Fire, therein they shall be abiders&lt;/i&gt;” The Quran: 'The Cow' chapter: verse 275  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;b&gt;You can't just leave like that&lt;/b&gt;&lt;/p&gt;&lt;meta equiv="CONTENT-TYPE" content="text/html; charset=utf-8"&gt;&lt;title&gt;&lt;/title&gt;&lt;meta name="GENERATOR" content="OpenOffice.org 2.4  (Win32)"&gt;&lt;style type="text/css"&gt; 	&lt;!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } 	--&gt; 	&lt;/style&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;a href="http://www.chrismartenson.com/martensonreport/end-money"&gt;&lt;span style="font-style: normal;"&gt;Chris Martenson&lt;/span&gt;&lt;/a&gt; puts it this way: &lt;i&gt;But the end of something is always the beginning of something else. Where's our modern day Adam Smith? We need a new economic model. &lt;/i&gt; &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;This is a time when we could really use the concepts of Islamic Economy that thrived the economy of Muslims for hundreds of years in an area that stretched from Spain to the borders of China. It is worth mentioning that Musim traders (with their morals and fair dealings) carried Islam to countries that are now predominantely muslims like Indonesia.&lt;/p&gt;   &lt;p style="margin-bottom: 0in;"&gt;While muslim scholares have yet to formulate (and then implement) these concepts in our modern world, here are some resources:&lt;a href="http://www.youtube.com/watch?v=wmaTyD7NnCI"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;a href="http://www.youtube.com/watch?v=wmaTyD7NnCI"&gt;Eid al-Fitr 08 Khutbah (sermon)&lt;/a&gt; by Shaykh Hamza Yusuf [YouTube video that touches on the current crisis]&lt;a href="http://www.amazon.com/Understanding-Islamic-Finance-Wiley/dp/0470030690/ref=si3_rdr_bb_product"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;&lt;a href="http://www.amazon.com/Understanding-Islamic-Finance-Wiley/dp/0470030690/ref=si3_rdr_bb_product"&gt;Understanding Islamic Finance&lt;/a&gt; (The Wiley Finance Series) by Muhammad Ayub [Book -link given on Amazon]&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;a href="http://www.amazon.com/Islamic-Finance-Global-Economy-Ibrahim/dp/0748612165/ref=sr_1_3?ie=UTF8&amp;amp;s=books&amp;amp;qid=1225564926&amp;amp;sr=1-3"&gt;Islamic Finance in the Global Economy&lt;/a&gt; by Ibrahim Warde [Book -link given on Amazon]&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-2130169347378362475?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/2130169347378362475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=2130169347378362475' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/2130169347378362475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/2130169347378362475'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/11/world-financial-crisis-root-cause.html' title='World Financial crisis... root cause, anybody?'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-3368230631463656526</id><published>2008-08-28T13:43:00.000-07:00</published><updated>2008-08-29T15:17:14.681-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='الأقصى'/><title type='text'>نداء من الأقصى</title><content type='html'>&lt;div style="text-align: right;"&gt;&lt;style type="text/css"&gt;  &lt;!--   @page { size: 8.5in 11in; margin: 0.79in }   P { margin-bottom: 0.08in }  --&gt;  &lt;/style&gt; &lt;p dir="rtl" align="right"&gt;&lt;a name="qmon0"&gt;&lt;/a&gt;&lt;a name="qmon2"&gt;&lt;/a&gt;&lt;a name="qmon3"&gt;&lt;/a&gt; &lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;هل تعلم أن&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="qmon4"&gt;&lt;/a&gt;&lt;a name="qmon9"&gt;&lt;/a&gt;&lt;a name="qmon10"&gt;&lt;/a&gt;&lt;a name="qmon11"&gt;&lt;/a&gt;&lt;a name="qmon12"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p dir="rtl" align="right"&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;- المسجد  الأقصى ليس مسجد قبة الصخرة أو الجامع  القبلي ذو القبة الرصاصية؟&lt;/span&gt;&lt;/p&gt;&lt;style type="text/css"&gt;  &lt;!--   @page { size: 8.5in 11in; margin: 0.79in }   P { margin-bottom: 0.08in }  --&gt;  &lt;/style&gt; &lt;p dir="rtl" align="right"&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="qmon13"&gt;&lt;/a&gt;&lt;a name="qmon19"&gt;&lt;/a&gt;&lt;a name="qmon20"&gt;&lt;/a&gt;&lt;/span&gt; &lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;- حائط المبكى هو اسم يطلقه اليهود زورا على حائط البراق الذي ربط رسول الله صلى الله عليه و سلم البراق به يوم الإسراء؟&lt;/span&gt;&lt;/p&gt;&lt;p dir="rtl" align="right"&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="qmon131"&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;- الحفريات  أسفل المسجد الأقصى تسببت في &lt;span style="font-weight: bold;"&gt;انهيار&lt;/span&gt; في  ساحاته الداخلية؟&lt;/span&gt;&lt;/p&gt;&lt;p dir="rtl" align="right"&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="qmon21"&gt;&lt;/a&gt;&lt;a name="qmon22"&gt;&lt;/a&gt;&lt;a name="qmon23"&gt;&lt;/a&gt;&lt;a name="qmon24"&gt;&lt;/a&gt;&lt;a name="qmon25"&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;- تحرير  كل فلسطين فرض عين علينا جميعا؟&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="qmon17"&gt;&lt;/a&gt;&lt;a name="qmon7"&gt;&lt;/a&gt;&lt;a name="qmon8"&gt;&lt;/a&gt;&lt;/span&gt;  &lt;/p&gt;&lt;p dir="rtl" align="right"&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;&lt;span style="font-family:Tahoma;"&gt;- &lt;span style="font-size:100%;"&gt;بإمكانك  العمل &lt;/span&gt;&lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;&lt;b&gt;الآن&lt;/b&gt;&lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;  &lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;لنصرة  المسجد؟&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p dir="rtl" align="right"&gt;&lt;style type="text/css"&gt;  &lt;!--   @page { size: 8.5in 11in; margin: 0.79in }   P { margin-bottom: 0.08in }  --&gt;  &lt;/style&gt; &lt;/p&gt;&lt;p style="margin-bottom: 0in;" align="right"&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="q0tj2"&gt;&lt;/a&gt;&lt;a name="q0tj3"&gt;&lt;/a&gt;&lt;a name="q0tj5"&gt;&lt;/a&gt;&lt;a name="q0tj6"&gt;&lt;/a&gt;&lt;a name="q0tj8"&gt;&lt;/a&gt;&lt;a name="q0tj9"&gt;&lt;/a&gt;&lt;a name="q0tj11"&gt;&lt;/a&gt;&lt;a name="q0tj12"&gt;&lt;/a&gt;&lt;a name="q0tj14"&gt;&lt;/a&gt;&lt;a name="q0tj15"&gt;&lt;/a&gt;&lt;a name="q0tj17"&gt;&lt;/a&gt;&lt;a name="q0tj18"&gt;&lt;/a&gt;&lt;a name="q0tj19"&gt;&lt;/a&gt;&lt;a name="q0tj21"&gt;&lt;/a&gt;&lt;a name="q0tj22"&gt;&lt;/a&gt;&lt;/span&gt; &lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;&lt;span style="font-family:Tahoma;"&gt;شاهد هذا العرض &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span style="font-size: 11pt;font-size:85%;" &gt;لتتعرف على &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;&lt;span style="font-family:Tahoma;"&gt; المسجد الأقصى و حقه و &lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span lang="ar-EG"&gt;جانب&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt; &lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span lang="ar-EG"&gt;من&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt; &lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span lang="ar-SA"&gt;الانتهاكات التي تعرض لها&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt; &lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span lang="ar-SA"&gt;من&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="ar-SA"&gt;1967&lt;/span&gt; &lt;/span&gt;&lt;span style=";font-family:Tahoma;font-size:100%;"  &gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span lang="ar-SA"&gt;إلى&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt; &lt;/span&gt;&lt;span style="font-family:Tahoma;"&gt;&lt;span lang="ar-SA"&gt;اليوم و ما تستطيع أن تفعله لنصرة الأقصى&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;" align="right"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.foraqsa.com/library/ppt/aqsa_appeal.pps"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_4_vMPA2uNBk/SLfVbJg6t3I/AAAAAAAAABs/oKmEOrl8d18/s320/nedaa.jpg" alt="" id="BLOGGER_PHOTO_ID_5239891353856030578" border="0" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-3368230631463656526?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/3368230631463656526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=3368230631463656526' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/3368230631463656526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/3368230631463656526'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/08/blog-post_28.html' title='نداء من الأقصى'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_4_vMPA2uNBk/SLfVbJg6t3I/AAAAAAAAABs/oKmEOrl8d18/s72-c/nedaa.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-5239832440825475033</id><published>2008-08-17T15:11:00.000-07:00</published><updated>2008-08-29T15:17:59.276-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='أيات'/><title type='text'>خسوف القمر أية عظيمة... سبحان الله</title><content type='html'>&lt;div style="text-align: right;"&gt;&lt;span style="color: rgb(0, 0, 0);font-size:100%;" &gt;&lt;span style="font-family:arial;"&gt;أهو ربنا بيفكرك... لعلك تتعظ. حصل كسوف جزئي للقمر شوفناه في مصر يوم السبت 17-8-2008. آية عظيمة، ميغيرش من الحقيقة دي إننا عارفين الخسوف بيحصل إزاي و بنتوقعه&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: right;"&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmDOHlNSEI/AAAAAAAAAAk/NEBWoKbDc9Y/s1600-h/P1010633.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmDOHlNSEI/AAAAAAAAAAk/NEBWoKbDc9Y/s320/P1010633.JPG" alt="" id="BLOGGER_PHOTO_ID_5235860320371427394" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmD2wr6UfI/AAAAAAAAAAs/f9kD9A0TDvk/s1600-h/P1010639.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmD2wr6UfI/AAAAAAAAAAs/f9kD9A0TDvk/s320/P1010639.JPG" alt="" id="BLOGGER_PHOTO_ID_5235861018600165874" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4_vMPA2uNBk/SKmJDJTmIZI/AAAAAAAAABc/JIFZfXgc2OQ/s1600-h/P1010660.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_4_vMPA2uNBk/SKmJDJTmIZI/AAAAAAAAABc/JIFZfXgc2OQ/s320/P1010660.JPG" alt="" id="BLOGGER_PHOTO_ID_5235866728925634962" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_4_vMPA2uNBk/SKmEImnWkSI/AAAAAAAAAA0/49lmOGUhXv0/s1600-h/P1010642.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_4_vMPA2uNBk/SKmEImnWkSI/AAAAAAAAAA0/49lmOGUhXv0/s320/P1010642.JPG" alt="" id="BLOGGER_PHOTO_ID_5235861325134336290" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4_vMPA2uNBk/SKmEia2psII/AAAAAAAAAA8/4BEvvmWdRuM/s1600-h/P1010663.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_4_vMPA2uNBk/SKmEia2psII/AAAAAAAAAA8/4BEvvmWdRuM/s320/P1010663.JPG" alt="" id="BLOGGER_PHOTO_ID_5235861768653877378" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4_vMPA2uNBk/SKmE8Iqbb4I/AAAAAAAAABE/WPRTz9biCJ8/s1600-h/P1010669.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_4_vMPA2uNBk/SKmE8Iqbb4I/AAAAAAAAABE/WPRTz9biCJ8/s320/P1010669.JPG" alt="" id="BLOGGER_PHOTO_ID_5235862210447372162" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmFaDnxqgI/AAAAAAAAABM/fd3prZiMjkc/s1600-h/P1010673.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmFaDnxqgI/AAAAAAAAABM/fd3prZiMjkc/s320/P1010673.JPG" alt="" id="BLOGGER_PHOTO_ID_5235862724490144258" border="0" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_4_vMPA2uNBk/SKmFgIhQ-GI/AAAAAAAAABU/hUp9YXkEg2w/s1600-h/P1010677.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_4_vMPA2uNBk/SKmFgIhQ-GI/AAAAAAAAABU/hUp9YXkEg2w/s320/P1010677.JPG" alt="" id="BLOGGER_PHOTO_ID_5235862828884228194" border="0" /&gt;&lt;span style="font-size:130%;"&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:130%;"&gt;&lt;a name="searched"&gt;اللَّهُ الَّذِي رَفَعَ السَّمَاوَاتِ بِغَيْرِ عَمَدٍ تَرَوْنَهَا ثُمَّ اسْتَوَى عَلَى الْعَرْشِ وَسَخَّرَ الشَّمْسَ وَالْقَمَرَ كُلٌّ يَجْرِي لأَجَلٍ مُّسَمًّى يُدَبِّرُ الأَمْرَ يُفَصِّلُ الآيَاتِ &lt;span style="font-weight: bold;"&gt;لَعَلَّكُم بِلِقَاء رَبِّكُمْ تُوقِنُونَ&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style=";font-family:Traditional Arabic;font-size:180%;"  &gt;&lt;a name="searched"&gt;&lt;span style="background-color: rgb(255, 204, 204);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;سورة الرعد-آية 2&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-5239832440825475033?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/5239832440825475033/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=5239832440825475033' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/5239832440825475033'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/5239832440825475033'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/08/blog-post.html' title='خسوف القمر أية عظيمة... سبحان الله'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_4_vMPA2uNBk/SKmDOHlNSEI/AAAAAAAAAAk/NEBWoKbDc9Y/s72-c/P1010633.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-3489789529302875970</id><published>2008-03-16T14:24:00.000-07:00</published><updated>2008-08-29T04:06:36.756-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='حركة التضامن الدولية'/><category scheme='http://www.blogger.com/atom/ns#' term='راشيل كوري'/><category scheme='http://www.blogger.com/atom/ns#' term='نشطاء السلام'/><title type='text'>Rachel Corie... we won't forget</title><content type='html'>&lt;span style=";font-family:arial;font-size:100%;"  &gt;On this day, 5 years ago, a flower was cruelly crushed by Israeli hands. That flower, Rachel Corie, makes us all seem &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;small and selfish. &lt;/span&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;br /&gt;Rachel was a volunteer with the International Solidarity Movement in Palestine. She was trying to &lt;span style="color: rgb(204, 0, 0);"&gt;protect the house of a &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);font-family:arial;font-size:100%;"  &gt;Palestinian family in Rafah from being demolished by the Israeli army, when an Israeli bulldozer mercilessly ran over &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;span style="color: rgb(204, 0, 0);"&gt;her&lt;/span&gt;. Twice.&lt;span style="font-size:85%;"&gt;&lt;sup&gt;(1)&lt;/sup&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;This is part of an email Rachel wrote to her parents from Palestine:&lt;/span&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;"This has to stop. &lt;span style="font-weight: bold;"&gt;I think it is a good idea for us all to drop everything and devote our lives to making this stop&lt;/span&gt;. I don’t &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;think it’s an extremist thing to do anymore. I really want to dance around to Pat Benatar and have boyfriends and make &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;comics for my co-workers. But I also want this to stop. Disbelief and horror is what I feel. Disappointment. I am &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;disappointed that this is the base reality of our world and that we, in fact, participate in it. This is not at all what I asked &lt;/span&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;for when I came into this world. This is not at all what the people here asked for when they came into this world. This is &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;not what they are asking for now. This is not the world you and Dad wanted me to come into when you decided to have &lt;/span&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;me."&lt;span style="font-size:85%;"&gt;&lt;sup&gt;(2)&lt;/sup&gt;&lt;/span&gt;&lt;/span&gt;    &lt;span style="font-family:arial;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.rachelcorrie.org/"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_4_vMPA2uNBk/R92Qx_Uux5I/AAAAAAAAAAc/0hqdLwc4L8c/s320/RacheCorie.jpg" alt="" id="BLOGGER_PHOTO_ID_5178454335032313746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;Rachel Corie... we won't forget&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="font-family:arial;"&gt;--------------------&lt;/span&gt; &lt;span style="font-family:arial;"&gt;&lt;br /&gt;(1) For a full account of Rachel's murder, see The Moments Before Rachel Corrie's Murder &lt;/span&gt; &lt;span style="font-family:arial;"&gt;http://www.ccmep.org/2003_articles/Palestine/032003_the_moments_before.htm&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;(2)http://www.partnersforpeace.org/pressreleases/db200303190/&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-3489789529302875970?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/3489789529302875970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=3489789529302875970' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/3489789529302875970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/3489789529302875970'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/03/rachel-corie-we-wont-forget.html' title='Rachel Corie... we won&apos;t forget'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_4_vMPA2uNBk/R92Qx_Uux5I/AAAAAAAAAAc/0hqdLwc4L8c/s72-c/RacheCorie.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-4867443768713566277</id><published>2008-03-16T14:12:00.000-07:00</published><updated>2008-03-27T17:00:16.242-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='حركة التضامن الدولية'/><category scheme='http://www.blogger.com/atom/ns#' term='راشيل كوري'/><category scheme='http://www.blogger.com/atom/ns#' term='نشطاء السلام'/><title type='text'>راشيل كوري... لن ننسي</title><content type='html'>&lt;div  style="text-align: right;font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:130%;"&gt;مر اليوم 5 أعوام على جريمة قتل راشيل كوري... وصمة العار الباقية على جبين العالم. كانت راشيل عضوة في في حركة التضامن الدولية. و في يوم مقتلها, كانت تحاول و مجموعة من النشطاء &lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);font-size:130%;" &gt;منع الجيش الإسرائيلي من هدم منزل عائلة فلسطينية في رفح، حين دهستها الجرافة الإسرائيلية&lt;/span&gt;&lt;span style="font-size:130%;"&gt; و مرت فوق جسدها النحيل مرتين.&lt;sup&gt;&lt;span style="font-size:85%;"&gt;(1)&lt;/span&gt;&lt;/sup&gt;&lt;br /&gt;&lt;br /&gt;هذا جزء من رسالة إلكترونية كتبتها راشيل إلى والديها من فلسطين:&lt;br /&gt;"ما يحدث يجب أن يتوقف. &lt;/span&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;أظن أنها فكرة جيدة لنا جميعاً أن نترك كل شيء و نكرس حياتنا لإيقاف ما يحدث&lt;/span&gt;&lt;span style="font-size:130%;"&gt;... إن شعوري هو شعور بعدم التصديق وبالفزع، وبالإحباط. إنه من المحبط أن يكون هذا هو الواقع العاري لعالمنا و أننا في الواقع نشترك فيه. ليس هذا على الإطلاق ما تمنيته حين جئت إلي هذا العالم. ليس هذا على الإطلاق ما تمناه الناس هنا حين جاؤوا إلي هذا العالم. ليس هذا ما يتمنوه الآن. ليس هذا هو العالم الذي أردتي أنت و أبي أن آتي إليه حين قررتما إنجابي."&lt;sup&gt;&lt;span style="font-size:85%;"&gt;(2)&lt;/span&gt;&lt;sup&gt;&lt;br /&gt;&lt;br /&gt;&lt;/sup&gt;&lt;/sup&gt;&lt;/span&gt;&lt;sup&gt;&lt;sup&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.rachelcorrie.org/"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_4_vMPA2uNBk/R92OqfUux4I/AAAAAAAAAAU/GFZhA8rw-_k/s320/RacheCorie.jpg" alt="" id="BLOGGER_PHOTO_ID_5178452007160039298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/sup&gt;&lt;/sup&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;sup&gt;&lt;sup&gt;راشيل كوري... لن ننسي&lt;/sup&gt;&lt;/sup&gt;&lt;/span&gt;&lt;sup&gt;&lt;sup&gt;&lt;br /&gt;&lt;/sup&gt;&lt;/sup&gt;&lt;/div&gt;&lt;sup&gt;&lt;sup&gt;&lt;br /&gt;--------------------&lt;br /&gt;1: http://www.ccmep.org/2003_articles/Palestine/032003_the_moments_before.htm&lt;br /&gt;2: http://www.partnersforpeace.org/pressreleases/db200303190&lt;br /&gt;&lt;br /&gt;&lt;/sup&gt;&lt;/sup&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-4867443768713566277?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/4867443768713566277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=4867443768713566277' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/4867443768713566277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/4867443768713566277'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/03/blog-post_16.html' title='راشيل كوري... لن ننسي'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_4_vMPA2uNBk/R92OqfUux4I/AAAAAAAAAAU/GFZhA8rw-_k/s72-c/RacheCorie.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-1184149293395155162</id><published>2008-03-15T13:30:00.000-07:00</published><updated>2008-03-16T00:04:22.170-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='المسرى يستغيث'/><category scheme='http://www.blogger.com/atom/ns#' term='القدس'/><category scheme='http://www.blogger.com/atom/ns#' term='الأقصى'/><title type='text'>المسرى يستغيث</title><content type='html'>&lt;div style="text-align: right;"&gt;&lt;span style="font-size:130%;"&gt;يقول الشيخ كمال خطيب نائب رئيس الحركة الإسلامية في الداخل الفلسطيني: "&lt;a href="http://www.islamic-aqsa.com/ar/modules.php?name=News&amp;amp;file=article&amp;amp;sid=1254"&gt;المرحلة الحالية والقادمة تمثل المرحلة المفصلية من واقع المسجد الأقصى&lt;/a&gt; وعلى كل الأمة اليوم مسؤولية التحرك السريع والجاد لإنقاذ المسجد الأقصى"&lt;br /&gt;&lt;br /&gt;في ناس حتقول هو حصل إيه؟! حصل إن المسجد حيتهد و احنا نايمين على ودانّا. اتفرج على الفيديو ده&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.alaqsa-online.com/vedio/Before%20it%20is%20Destoryed_arb.wmv"&gt;http://www.alaqsa-online.com/vedio/Before%20it%20is%20Destoryed_arb.wmv&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;اللّي مدته ربع ساعة اللّي عملته &lt;a href="http://www.islamic-aqsa.com/"&gt;مؤسسة الأقصى لإعمار المقدسات الإسلامية&lt;/a&gt;. بيبيّن الدرجة المريعة اللّي وصلتلها الحفريّات الإسرائيلية تحت المسجد الأقصى المبارك... شبكة أنفاق واسعة و عميقة تحت المسجد الأقصى و في محيطه تشكل ما يشبه بناء مدينة تحتية تهويدية.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;يقول الشيخ رائد صلاح رئيس الحركة الإسلامية في الداخل الفلسطيني في مؤتمر صحفي يوم 10/3/2008: "&lt;a style="font-weight: bold;" href="http://www.islamic-aqsa.com/ar/modules.php?name=News&amp;amp;file=article&amp;amp;sid=1267&amp;amp;mode=thread&amp;amp;order=0&amp;amp;thold=0"&gt;الحفريات أدت الى عدة انهيارات&lt;/a&gt;، الأول في ساحات الأقصى الداخلية قرب سبيل قايتباي، والثاني وقع قبل أسبوع عند حمام العين، والانهيار الثالث وقع لأحد أجزاء المسجد الأقصى وهو باب المغاربة، و الانهيار الرابع هو التصدعات التي أصابت عشرات البيوت المقدسية التي تقع على امتداد الحائط الغربي للمسجد الأقصى، والخامس الانهيارات في بيوت أهلنا في سلوان ومسجد سلوان.. وهناك انهيارات كثيرة أخرى".&lt;br /&gt;&lt;br /&gt;يا ريت تركز في الدقيقة 13 اللّى فيها &lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;الانهيار &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;font-size:130%;" &gt;في ساحات الأقصى الداخلية&lt;/span&gt;&lt;span style="font-size:130%;"&gt;.&lt;br /&gt;&lt;br /&gt;و هذا تسجيل للشيخ رائد صلاح يحذّر من المخاطر المحدقة بالمسجد الأقصى ويدعو إلى تكثيف الرباط فيه. اضغط الصورة للذهاب إلى رابط الموضوع للاستماع و التحميل&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.islamic-aqsa.com/ar/modules.php?name=News&amp;amp;file=article&amp;amp;sid=1259&amp;amp;mode=thread&amp;amp;order=0&amp;amp;thold=0"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_4_vMPA2uNBk/R9w4nfUux3I/AAAAAAAAAAM/e6PRVmzwyfw/s320/AqsaYsta3eethS.jpg" alt="" id="BLOGGER_PHOTO_ID_5178075922643732338" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-1184149293395155162?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/1184149293395155162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=1184149293395155162' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/1184149293395155162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/1184149293395155162'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/03/blog-post_15.html' title='المسرى يستغيث'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_4_vMPA2uNBk/R9w4nfUux3I/AAAAAAAAAAM/e6PRVmzwyfw/s72-c/AqsaYsta3eethS.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2149325147636648940.post-4986943509286073970</id><published>2008-03-15T07:54:00.000-07:00</published><updated>2008-03-27T15:23:30.408-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='السائرون نياما'/><category scheme='http://www.blogger.com/atom/ns#' term='مقدمة'/><title type='text'>مقدمة</title><content type='html'>&lt;div style="text-align: right;"&gt;&lt;span style="font-size:130%;"&gt;    في حديث يوجعك أوي. أو المفروض أنه يوجعك يعني. "&lt;span style="color: rgb(0, 153, 0);"&gt;يوشك الأمم أن تتداعى عليكم، كما تتداعى الآكلة إلى قصعتها، فقال قائل: ومن قلة بنا نحن يومئذ؟! قال: بل أنتم يومئذ كثير، ولكنكم &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 153, 0);"&gt;غثاء كغثاء السيل&lt;/span&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;، ولينزعن الله من صدور عدوكم المهابة منكم، وليقذفن في قلوبكم الوهن، قال قائل: يا رسول الله! وما الوهن؟! قال: حب الدنيا، وكراهية الموت.&lt;/span&gt;"&lt;span style="font-size:85%;"&gt;&lt;sup&gt;(1)&lt;/sup&gt;&lt;/span&gt; و غثاء السيل ما يحمله من زبد ووسخ. يعني واحد لا يودي و لا يجيب. وجوده زي عدمه. المسلمين بيضّربوا... الأقصى حيتهد ‘ربنا يصلح الحال، المهم ناكل و نشرب و نتجوز و نجيب عيال و نأكّلهم و نشرّبهم و نجوّزهم... إلخ إلخ’&lt;br /&gt;&lt;br /&gt;حتي الحاجات البسيطة زي الأمر بالمعروف و النهي عن المنكر انقرضت، و في أبسط الأشياء زي إنك تشوف واحد بيصلي غلط أو حتي طفل بيرمي حاجة في الشارع (ده بافتراض إن حضرتك مش بترمي حاجة في الشارع و عارف إن إماطة الأذي عن الطريق شعبة من شعب الإيمان&lt;span style="font-size:85%;"&gt;&lt;sup&gt;(2)&lt;/sup&gt;&lt;/span&gt;) . رغم أن كلنا حافظين حديث "&lt;span style="color: rgb(0, 153, 0);"&gt;من رأى منكم منكرا فليغيره بيده. فإن لم يستطع فبلسانه. ومن لم يستطع فبقلبه. وذلك أضعف الإيمان.&lt;/span&gt;"&lt;span style="font-size:85%;"&gt;&lt;sup&gt;(3)&lt;/sup&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;حتي تحس إن الناس ماشية في الشارع في حالة من اللا مبالاة أو اللا وعي. تلاقي مثلاً واحد بيعدي الشارع زي ما يكون ماشي في طرقة بيتهم. مثال حيّ للسائرون نياماً&lt;br /&gt;&lt;br /&gt;------------------------------&lt;span style="font-size:100%;"&gt;&lt;br /&gt;1: الراوي: ثوبان مولى رسول الله  -  خلاصة الدرجة: صحيح  -  المحدث: الألباني&lt;br /&gt;2: "الإيمان بضع وسبعون أو بضع وستون شعبة. فأفضلها قول لا إله إلا الله. وأدناها إماطة الأذى عن الطريق. والحياء شعبة من الإيمان. الراوي: أبو هريرة  -  خلاصة الدرجة: صحيح  -  المحدث: مسلم&lt;br /&gt;3: الراوي: أبو سعيد الخدري  -  خلاصة الدرجة: صحيح  -  المحدث: مسلم&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2149325147636648940-4986943509286073970?l=lesaany.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://lesaany.blogspot.com/feeds/4986943509286073970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2149325147636648940&amp;postID=4986943509286073970' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/4986943509286073970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2149325147636648940/posts/default/4986943509286073970'/><link rel='alternate' type='text/html' href='http://lesaany.blogspot.com/2008/03/blog-post.html' title='مقدمة'/><author><name>Nahla</name><uri>http://www.blogger.com/profile/14562447721179358818</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
