File tree 3 files changed +34
-10
lines changed
config-plugin/test/org/sipfoundry/sipxconfig/callqueue
3 files changed +34
-10
lines changed Original file line number Diff line number Diff line change
1
+ # git-ls-files --others --exclude-from=.git/info/exclude
2
+ # Lines that start with '#' are comments.
3
+ # For a project mostly in C, the following would be a good set of
4
+ # exclude patterns (uncomment them if you want to use them):
5
+ # *.[oa]
6
+ * ~
7
+ Makefile.in
8
+ aclocal.m4
9
+ config.h.in
10
+ autom4te.cache
11
+ config /compile
12
+ config /config.guess
13
+ config /config.sub
14
+ config /depcomp
15
+ config /install-sh
16
+ config /ltmain.sh
17
+ config /missing
18
+ configure
19
+ bin.eclipse
Original file line number Diff line number Diff line change 9
9
10
10
package org .sipfoundry .sipxconfig .callqueue ;
11
11
12
- import java .util .Arrays ;
13
12
import java .util .ArrayList ;
14
- import java .util .HashSet ;
13
+ import java .util .Arrays ;
15
14
import java .util .Collection ;
16
- import java .util .Collections ;
15
+ import java .util .HashSet ;
17
16
import java .util .List ;
18
- import java .util .Map ;
19
17
20
18
import org .sipfoundry .sipxconfig .common .CoreContext ;
21
- import org .sipfoundry .sipxconfig .common .User ;
22
- import org .sipfoundry .sipxconfig .common .UserException ;
23
19
import org .sipfoundry .sipxconfig .setting .Setting ;
24
20
import org .sipfoundry .sipxconfig .test .IntegrationTestCase ;
25
- import org .sipfoundry .sipxconfig .test .TestHelper ;
26
21
import org .springframework .context .ConfigurableApplicationContext ;
27
22
import org .springframework .context .support .ClassPathXmlApplicationContext ;
28
23
Original file line number Diff line number Diff line change 1
1
include $(top_srcdir ) /config/utility.am
2
2
3
3
confdir = $(SIPX_CONFDIR ) /sipxcallqueue
4
+
5
+ xml = \
6
+ sipxcallqueue/CallQueueAgent.xml \
7
+ sipxcallqueue/CallQueue.xml \
8
+ sipxcallqueue/CallQueueSettings.xml
9
+
4
10
dist_conf_DATA = \
5
- $(wilcard $(srcdir ) /sipxcallqueue/*.* )
11
+ $(xml ) \
12
+ sipxcallqueue/CallQueueAgent.properties \
13
+ sipxcallqueue/CallQueue.properties \
14
+ sipxcallqueue/CallQueueSettings.properties
15
+
6
16
7
17
fsdir = $(SIPX_CONFDIR ) /freeswitch
8
18
dist_fs_DATA = \
9
- $( wilcard $( srcdir ) / freeswitch/*.* )
19
+ freeswitch/callcenter.conf.xml.vm
10
20
11
21
precommit : validate-xml
12
22
13
- validate-xml : $(wilcard $( srcdir ) /sipxcallqueue/*. xml )
23
+ validate-xml : $(xml )
14
24
xmllint --noout $^
You can’t perform that action at this time.
0 commit comments