chiark / gitweb /
Drop some todos: Library listing
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 15 May 2021 23:36:04 +0000 (00:36 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 15 May 2021 23:36:04 +0000 (00:36 +0100)
This has been sorted out.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
src/mgmtchannel.rs
src/shapelib.rs

index cd20b9ddc2b5f83794f7f70b9eb680de4f143a47..147265682cd43660c0d47126109ecd6a4b3dc937 100644 (file)
@@ -214,7 +214,6 @@ impl MgmtChannelForGame {
   #[throws(AE)]
   pub fn list_items(&mut self, lib: Option<String>, pat: String)
                 -> Vec<ItemEnquiryData> {
-    // xxx allow globbing of library names
     let cmd = MgmtCommand::LibraryListByGlob {
       game: self.game.clone(),
       lib, pat,
index a343f0274133b240f76e7dd41a707075640abe91..16147dd4c314dff04db0a491daf1b5603e7d4e73 100644 (file)
@@ -433,7 +433,6 @@ impl<'ig> AllRegistries<'ig> {
 }
 
 pub fn lib_name_list(ig: &Instance) -> Vec<String> {
-  // xxx put bundle id in here or something show it shows up in libs list
   ig.all_shapelibs().iter().map(
     |reg| reg.libs.keys().cloned()
   ).flatten().collect()