Преглед изворни кода

Correction in in datasource, small correction in cbl

prieto пре 8 година
родитељ
комит
5afd2c4718
2 измењених фајлова са 6 додато и 1 уклоњено
  1. 5
    0
      lodel/plugins/mongodb_datasource/datasource.py
  2. 1
    1
      scripts/cbl.sh

+ 5
- 0
lodel/plugins/mongodb_datasource/datasource.py Прегледај датотеку

@@ -818,6 +818,11 @@ by an equality filter")
818 818
                     mongoval = [ dhdl.cast_type(item) for item in mongoval[1:-1].split(',') ]
819 819
                 else:
820 820
                     mongoval = [ item for item in mongoval[1:-1].split(',') ]
821
+            elif value.startswith('(') and value.endswith(')'):
822
+                if (dhdl.cast_type is not None):
823
+                    mongoval = [ dhdl.cast_type(mongoval[1:-1]) ]
824
+                else:
825
+                    mongoval = [ mongoval[1:-1] ]
821 826
         elif mongop == 'like':
822 827
             #unescaping \
823 828
             mongoval = value.replace('\\\\','\\')

+ 1
- 1
scripts/cbl.sh Прегледај датотеку

@@ -161,7 +161,7 @@ mass_link_edit() {
161 161
 			Person)
162 162
 				person_ids=$(fetch_all_ids $1 Person)
163 163
 				section_ids=$(fetch_all_ids $1 Section)
164
-				subsection_ids=$(fetch_all_ids $1 Section)
164
+				subsection_ids=$(fetch_all_ids $1 Subsection)
165 165
 				text_ids=$($cmktemp)
166 166
 				cat $section_ids $subsection_ids | shuf > $text_ids
167 167
 				for i in $(seq $iteration_count)

Loading…
Откажи
Сачувај