Custom Query (2764 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 2764)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#537 fixed "Add a new entry at this level" functionality does not show up anymore Piero Campalani Piero Campalani
Description

When browsing the definition tree of SECORE it was possible to add a new definition via a clickable "Add a new entry at this level" line. E.g. see: http://kahlua.eecs.jacobs-university.de:8080/def/crs/ISO/0/browse.jsp

These modifications in ./secore/secore-web/web/WEB-INF/browse.jsp (changeset:5bf563a) may have broken it:

+      // sort elements at this level in a tree set
+      Pair<Boolean, Set<Pair<String, Boolean>>> res = SecoreUtil.sortElements(url, result);
       // Show the link for creating new elements at the bottom of the hierarchy
-      if (bottom) {
-          out.println("<span style=\"font-size:x-large;\"><a href='" + url + Constants.ADMIN_FILE + Constants.FRAGMENT_SEPARATOR + "add=true'>Add a new entr
+      if (res.fst) {
+        out.println("<span style=\"font-size:x-large;\"><a href='"
+            + url + Constants.ADMIN_FILE + Constants.FRAGMENT_SEPARATOR
+            + "add=true'>Add a new entry at this level:</a></span><br/>");
#392 fixed "compile" is a reserved Makefile target name with automake Dimitar Misev hholzgra
Description

This breaks "make dist" as compile ends up in DIST_COMMON and so leads to "can't find file ./compile" error messages.

Affected files:

applications/secore/secore-core/Makefile.am

and

applications/secore/secore-web/Makefile.am

Solution: rename the "compile" target to something else, e.g. "compileit"

#336 fixed "delete from collection" fails Dimitar Misev Heinrich Stamerjohanns
Description

According to documentation a simple

delete from mr1

without conditions should remove all objects from the collection. However an "unexpected end of query" is returned.

Providing a condition works well though (delete from mr1 where some_cells(mr1 > 0).

1 2 3 4 5 6 7 8 9 10 11
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.