Ignore:
Timestamp:
2004-12-22T17:13:01+13:00 (19 years ago)
Author:
schweer
Message:

todo tags etc

Location:
trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/AlertingService.java

    r8872 r8874  
    369369            session.setAttribute("hostnames", hostNames);
    370370        } else if (nextPage.equals("collection")) {
    371             // TODO might be query instead of just name
    372371            List hostNames = (List) arguments.get(Constants.HOST_ID_FIELD);
    373372            if (hostNames == null || hostNames.isEmpty()) {
  • trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/GreenstoneCommunicator.java

    r8847 r8874  
    145145            Node node = documentNodes.item(i);
    146146            String docID = node.getAttributes().getNamedItem("nodeID").getNodeValue();
    147             // TODO what about the nodeType
    148             // make sure to pass IDs of whole documents, not of parts of docs
    149147            Matcher matcher = Pattern.compile("(\\d{8}:\\d+).*").matcher(docID);
    150148            if (matcher.matches()) {
  • trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/ProfileStore.java

    r8872 r8874  
    3636
    3737    private ProfileStore() {
    38         // TODO restore subscriptions from database
    3938    }
    4039
     
    111110    public Set getPartiallyMatchedSubscriptions(Map event) {
    112111        Set result = new TreeSet();
    113         // TODO rework algo for getting partially matched subs
    114112        IdEqualsPredicate predicate;
    115113        predicate = PredicateFactory.getIdEqualsPredicate(Constants.TYPE_FIELD,
     
    304302    public void changeSubscription(Map arguments, HttpSession session) {
    305303        String subscriptionID = (String) arguments.get("subscriptionID");
    306         // TODO Auto-generated method stub
     304        // BTS 14 really edit the subscription
    307305       
    308306    }
Note: See TracChangeset for help on using the changeset viewer.