Searched refs:group (Results 1 - 25 of 31) sorted by relevance

12

/opengrok/src/org/opensolaris/opengrok/history/
H A DPerforceHistoryParser.java121 entry.setRevision(matcher.group(1));
122 int year = Integer.parseInt(matcher.group(2));
123 int month = Integer.parseInt(matcher.group(3));
124 int day = Integer.parseInt(matcher.group(4));
125 int hour = Integer.parseInt(matcher.group(5));
126 int minute = Integer.parseInt(matcher.group(6));
127 int second = Integer.parseInt(matcher.group(7));
129 entry.setAuthor(matcher.group(8));
130 entry.setMessage(matcher.group(9).trim());
162 entry.setRevision(matcher.group(
[all...]
H A DRazorHistoryParser.java120 String infoType = infoMatcher.group(1);
121 String details = infoMatcher.group(2);
157 String actionType = actionMatcher.group(1);
158 String userName = actionMatcher.group(2);
159 String revision = actionMatcher.group(3);
160 String state = actionMatcher.group(4);
161 String dateTime = actionMatcher.group(5);
H A DSSCMHistoryParser.java103 String revision = matcher.group(4);
104 String author = matcher.group(3);
105 String context = matcher.group(2);
106 String date = matcher.group(5);
H A DSCCSRepository.java114 String rev = matcher.group(1);
115 String auth = matcher.group(2);
179 String rev = matcher.group(1);
H A DAccuRevRepository.java127 String version = matcher.group(1);
128 String author = matcher.group(2);
H A DMonotoneRepository.java190 rev = matcher.group(1);
191 author = matcher.group(2);
H A DGitRepository.java132 path = matcher.group(1);
351 String filepath = matcher.group(1);
398 String rev = matcher.group(1);
399 String author = matcher.group(2).trim();
H A DBazaarRepository.java198 String rev = matcher.group(1);
199 String author = matcher.group(2).trim();
H A DCVSRepository.java317 String rev = matcher.group(1);
318 String author = matcher.group(2).trim();
/opengrok/src/org/opensolaris/opengrok/authorization/
H A DIAuthorizationPlugin.java67 * display the group.
72 * VERY IMPORTANT NOTE: Allowing particular group does not allow its
74 * for project if you want to display content of the group.
77 * @param group
78 * @return true if request is allowed to see this group of projects
80 boolean isAllowed(HttpServletRequest request, Group group); argument
H A DAuthorizationFramework.java94 * Checks if the request should have an access to group.
97 * @param group group object
100 public boolean isAllowed(HttpServletRequest request, Group group) { argument
104 group.getName(),
108 return plugin.isAllowed(request, group);
/opengrok/platform/solaris/ips/
H A Dcreate.sh179 PKG pkgsend add dir mode=0755 owner=root group=sys path=${dir}
185 PKG pkgsend add dir mode=0755 owner=root group=bin path=${dir}
191 PKG pkgsend add dir mode=0755 owner=webservd group=webservd path=${dir}
196 PKG pkgsend add file platform/solaris/smf/opengrok.xml mode=0444 owner=root group=sys path=/var/svc/manifest/application/opengrok.xml restart_fmri=svc:/system/manifest-import:default
197 PKG pkgsend add file platform/solaris/smf/svc-opengrok mode=0555 owner=root group=bin path=/lib/svc/method/svc-opengrok
198 PKG pkgsend add file platform/solaris/smf/ogindexd mode=0555 owner=root group=bin path=/usr/opengrok/lib/ogindexd
200 PKG pkgsend add file OpenGrok mode=0555 owner=root group=bin path=/usr/opengrok/bin/OpenGrok
201 PKG pkgsend add file tools/Groups mode=0555 owner=root group=bin path=/usr/opengrok/bin/Groups
202 PKG pkgsend add file tools/Messages mode=0555 owner=root group=bin path=/usr/opengrok/bin/Messages
204 PKG pkgsend add file dist/opengrok.jar mode=0444 owner=root group
[all...]
/opengrok/plugins/src/main/java/
H A DSampleAuthorizationPlugin.java49 public boolean isAllowed(HttpServletRequest request, Group group) { argument
H A DHttpBasicAuthorizationPlugin.java76 for (String group : Arrays.asList(new String[]{"admins", "users", "plugins", "ghost"})) {
77 if (!request.isUserInRole(group)) {
81 discoverGroup(group, request, descendants);
87 private void discoverGroup(String group, HttpServletRequest request, Set<String> descendants) { argument
89 if ((g = Group.getByName(group)) != null) {
90 // group discovery
126 public boolean isAllowed(HttpServletRequest request, Group group) { argument
133 return userGroups.get(request.getUserPrincipal().getName()).contains(group.getName());
/opengrok/test/org/opensolaris/opengrok/authorization/
H A DTestPlugin.java45 public boolean isAllowed(HttpServletRequest request, Group group) { argument
H A DAuthorizationFrameworkTest.java169 public boolean isAllowed(HttpServletRequest request, Group group) {
170 return group.getName().startsWith("allowed");
183 public boolean isAllowed(HttpServletRequest request, Group group) {
184 return group.getName().startsWith("not_allowed");
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DProject.java147 * Adds a group where this project belongs
149 * @param group group to add
151 public void addGroup(Group group) { argument
152 while (group != null) {
153 this.groups.add(group);
154 group = group.getParent();
H A DConfiguration.java463 * Adds a group to the set. This is performed upon configuration parsing
465 * @param group group
466 * @throws IOException when group is not unique across the set
468 public void addGroup(Group group) throws IOException { argument
469 if (!groups.add(group)) {
471 String.format("Duplicate group name '%s' in configuration.",
472 group.getName()));
999 // effectively transforms the group tree to a structure (Set)
1004 Group group
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DProjectHelper.java64 * Set of projects (not repositories) without group
68 * Set of all repositories without group
72 * Set of all projects with group
76 * Set of all repositories with group
136 // if no group matches the project, add it to not-grouped projects
243 * @param g group
244 * @return filtered group's projects
254 * @param g group
255 * @return filtered group's repositories
302 * @param g group
350 hasAllowedSubgroup(Group group) argument
381 hasFavourite(Group group) argument
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/c/
H A DCxxXref.lex79 out.write(match.group(1));
80 writeSymbol(match.group(2), CxxConsts.kwd, yyline);
81 out.write(match.group(3));
83 String path = match.group(4);
H A DCXref.lex80 out.write(match.group(1));
81 writeSymbol(match.group(2), Consts.kwd, yyline);
82 out.write(match.group(3));
84 String path = match.group(4);
/opengrok/web/default/
H A Dstyle.css192 .panel-group {
196 .panel-group .panel {
201 .panel-group .panel + .panel {
205 .panel-group .panel-heading, .panel-group .panel-heading-accordion {
1096 .message-group {
1101 .message-group.limited {
1108 .message-group-item {
1118 h4.message-group-caption, h5.message-group
[all...]
/opengrok/web/offwhite/
H A Dstyle.css192 .panel-group {
196 .panel-group .panel {
201 .panel-group .panel + .panel {
205 .panel-group .panel-heading, .panel-group .panel-heading-accordion {
1128 .message-group {
1133 .message-group.limited {
1140 h4.message-group-caption, h5.message-group-caption,
1141 h6.message-group
[all...]
/opengrok/web/polished/
H A Dstyle.css210 .panel-group {
214 .panel-group .panel {
219 .panel-group .panel + .panel {
223 .panel-group .panel-heading, .panel-group .panel-heading-accordion {
1206 .message-group {
1211 .message-group.limited {
1218 .message-group-item {
1228 h4.message-group-caption, h5.message-group
[all...]
/opengrok/lib/
H A Dswing-layout-0.9.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ...

Completed in 106 milliseconds

12