2001-01-19 Federico Mena Quintero * e-calendar.c (e_calendar_init): Unset the GTK_CAN_FOCUS flag on the ECalendar. (e_calendar_focus_in): Removed function since it did nothing. (e_calendar_focus_out): Likewise. (e_calendar_key_press): Likewise. (e_calendar_init): Turn off the GTK_CAN_FOCUS flag for both arrow buttons. 2001-01-17 Federico Mena Quintero * e-calendar-item.c (e_calendar_item_set_max_days_sel): Make zero the minimum number of days that can be specified. (e_calendar_item_set_arg): We do need an update when the maximum number of selected days is changed. (e_calendar_item_set_max_days_sel): Request an update of the canvas item. (e_calendar_item_button_press): Do not start selecting days if the max_days_selected is less than 1. 2001-01-17 Jeffrey Stedfast * e-messagebox.c (e_message_box_get_id): Oops. Delete this. I never meant for this to get commit'd. 2001-01-17 JP Rosevear * e-messagebox.c (e_message_box_get_id): Dont remove the function, give it the proper name 2001-01-17 Ettore Perazzoli * e-messagebox.c (e_message_box_get_checkbox): Remove the version returning `const char *' as of course it doesn't compile. Please compile before committing. 2001-01-17 Jeffrey Stedfast * Makefile.am: Added e-messagebox to the build. * e-messagebox.[c,h]: Added a new messagebox window that contains a checkbox for "Don't show me this again." 2001-01-16 Jason Leach * e-search-bar.[ch]: Moved here from $(toplevel)/filter. 2000-12-22 JP Rosevear * e-calendar-item.h: add prototypes * e-calendar-item.c (e_calendar_item_init): Set max_days_selected to 1 and days_to_start_week_selection to -1 as documented in header (e_calendar_item_set_arg): use new accessor methods (e_calendar_item_get_arg): ditto (e_calendar_item_get_max_days_sel): accessor (e_calendar_item_set_max_days_sel): ditto (e_calendar_item_get_days_start_week_sel): ditto (e_calendar_item_set_days_start_week_sel): ditto (e_calendar_item_class_init): add display_popup argument (e_calendar_item_init): initialize display_popup member (e_calendar_item_get_arg): get display_popup member (e_calendar_item_set_arg): set display_popup member (e_calendar_item_button_press): only show the popup menu if the member is set (e_calendar_item_get_display_popup): acessor (e_calendar_item_set_display_popup): ditto 2000-12-14 Federico Mena Quintero * e-dateedit.h: #include 2000-12-08 JP Rosevear * e-calendar.c (e_calendar_destroy): Call the parent class destroyer as well 2000-10-26 Damon Chaplin * e-dateedit.[hc]: updated to emit "changed" when appropriate, which turned out to be amazingly difficult :( Also added e_date_edit_get/set_date() to get/set just the date. Added e_date_edit_date_is_valid() & e_date_edit_time_is_valid() so you can check if the user has tried to enter an invalid date. (All the get_date/time functions return the last valid date entered.) * test-dateedit.c: updated a bit. 2000-11-02 Federico Mena Quintero * e-dateedit.h (EDateEditClass): Removed the "time_changed" signal, since it was never being emitted in the first place. Time values *are* both date and time together anyways, so whenever one changes we should notify about the whole date/time value being changed. Renamed the remaining "date_changed" signal to just "changed". * e-dateedit.c (e_date_edit_class_init): Do not create the "time_changed" signal; rename the other one to "changed". (set_time): Moved the core functionality from e_date_edit_set_time() to here. This function just sets the widgets' values without emitting any signals. (e_date_edit_set_time): Emit the "changed" signal unconditionally. This is to be consistent with the rest of the GTK+ widgets, and it actually makes writing client code easier. (e_date_edit_new): Use set_time(). (on_date_popup_now_button_clicked): Do not emit the signal here. (on_date_popup_none_button_clicked): Likewise. (e_date_edit_set_time_of_day): Emit the signal, since we do not call e_date_edit_set_time(). 2000-10-30 Kjartan Maraas * e-calendar-item.c: #include to get rid of warning. * e-clipped-label.c: Same here. 2000-10-27 Federico Mena Quintero * e-dateedit.c (e_date_edit_destroy): Do not unref the cal_popup since we already destroyed it. 2000-10-11 Damon Chaplin * e-calendar-item.c (e_calendar_item_recalc_sizes): fixed to recalculate min_cell_width/height in case the show_week_numbers option is changed. * e-dateedit.c: added support for hiding the date field, and added get/set_time_of_day() functions to get/set just the time. 2000-09-30 Damon Chaplin * e-calendar-item.c: * e-dateedit.c: better i18n of strftime strings. 2000-09-29 Ettore Perazzoli * e-title-bar.c: New member `pin_gtk_pixmap' in `ETitleBarPrivate'. Signal "close_button_clicked" renamed to "button_clicked". Signal "title_button_press_event" renamed to "label_button_press_event". (init): Init new members. (close_button_realize_cb): Create the pin pixmap. Call `show_and_hide_pixmaps_according_to_mode()'. (e_title_bar_show_close_button): Renamed to `e_title_bar_show_button'. (e_title_bar_get_button_mode): New. (e_title_bar_set_button_mode): New. 2000-09-23 Damon Chaplin * e-calendar.c: use pixmaps instead of GtkArrows to look better. Also set the canvas window's background when realized so that we can set the button reliefs to none. 2000-09-22 Damon Chaplin * test-dateedit.c: updated a bit, adding a few EDateEdits with different options. * e-calendar-item.c (e_calendar_item_set_selection): aborted any current selection operation and initialize all of the selection fields. (e_calendar_item_unmap): new function to abort any current selection operation. Otherwise GnomeCanvas gets in a muddle about grabs. * e-dateedit.c: marked some strftime()/strptime() format strings for translation and used "%m/%d/%Y" instead of "%x" so we get the complete year number. Also changed e_date_edit_get_time() so it returns -2 if it can't parse the date or time, and -1 if it is explicitly set to None. (e_date_edit_parse_date): new function to parse the date string and add on the current century if a year of 0-99 is entered. 2000-09-21 Damon Chaplin * e-dateedit.c (on_date_button_clicked): only check return of strptime for NULL. It should now select the correct day set in the popup. * e-calendar.c: * e-calendar-item.c: * test-calendar.c: removed support for buttons within the ECalendar. It is cleaner to add them outside it, as EDateEdit does. 2000-09-18 Dan Winship * e-dateedit.c (_XOPEN_SOURCE): set this to 4 to specify how much X/Open we want with that. 2000-09-18 Christopher James Lahey * Makefile.am: Added $(EXTRA_GNOME_CFLAGS) and $(EXTRA_GNOME_LIBS). Removed unneeded libraries. * e-calendar-item.c, e-calendar.c, e-calendar.h, e-title-bar.c: Fixed the #include lines to deal properly with gal. * e-scroll-frame.c, e-scroll-frame.h: Moved to gal. 2000-09-11 Damon Chaplin * Makefile.am (libemiscwidgets_a_SOURCES): added e-dateedit.[hc] and the test-dateedit app. * e-dateedit.[hc]: new widget to use instead of GnomeDateEdit. It uses the new ECalendar widget for the calendar and also supports "None", "Today" and "Now" buttons, and goes away with a single click. * test-dateedit.c: app to test the EDateEdit widget. * e-calendar-item.c: updated to support the EDateEdit better, mainly by adding the "move_selection_when_moving" arg so we can turn it off to keep the same day selected when changing the months shown. 2000-09-05 Damon Chaplin * e-calendar-item.c (e_calendar_item_draw_month): make sure we get the start_weekday since we need it for draw_days(). Fixes a drawing bug. 2000-08-31 Damon Chaplin * e-calendar-item.c (e_calendar_item_button_press): (e_calendar_item_button_release): grab/ungrab the pointer so we always get the button_release event. 2000-08-30 Damon Chaplin * e-calendar-item.[hc]: * e-calendar.[hc]: Updated. 2000-08-10 Christopher James Lahey * e-calendar-item.c, e-calendar.c: Fixed some warnings. 2000-07-25 Damon Chaplin * e-calendar-item.h: * e-calendar.[hc]: new widget and canvas item to replace GtkCalendar. Not quite finished yet. 2000-07-21 Ettore Perazzoli * e-title-bar.c (e_title_bar_set_title): We have a `EClippedLabel', not a `GtkLabel' here: use the right function to change the text. 2000-07-12 Christopher James Lahey * e-scroll-frame.c: Tried rearranging the casts to try for a more correct computation. 2000-07-08 Dan Winship * e-scroll-frame.c (e_scroll_frame_add): comment out true but confused warning about non-scrollable widgets until Chris and/or Federico fix this correctly. (e_scroll_frame_size_allocate): If the available space for the child is less than the width/height of the frame, give the child an allocation of 0 rather than some small negative number cast to unsigned. 2000-07-05 Dan Winship * Makefile.am (INCLUDES): Set G_LOG_DOMAIN=__FILE__ rather than "e-title-bar" in all three widgets. 2000-06-13 Anders Carlsson * e-scroll-frame.c (e_scroll_frame_button_press): Control does horizontal scrolling, a la gimp. 2000-06-11 Anders Carlsson * e-scroll-frame.c (e_scroll_frame_button_press): Add support for mouse wheel scrolling in EScrollFrame. 2000-06-10 Ettore Perazzoli * e-title-bar.c (close_button_realize_cb): Unref the pixmap and the mask. td>3-0/+3 * net-mgmt/nagvis: fix Makefile commentpi2016-07-311-1/+0 * net-mgmt/nagvis: fix plistpi2016-07-301-1/+1 * net-mgmt/nagvis: 1.7.2 -> 1.8.5pi2016-07-303-201/+97 * net-mgmt/librenms: Update version 201605=>201607bofh2016-07-282-4/+4 * - Update to version 0.26 [1]pawel2016-07-283-4/+5 * net-mgmt/seafile: 5.1.3 -> 5.1.4pi2016-07-253-6/+11 * net-mgmt/ccnet: 5.1.3 -> 5.1.4pi2016-07-252-6/+5 * Mark broken on FreeBSD 9.xlme2016-07-241-0/+2 * Cleanup $() variables in ports Makefiles.mat2016-07-201-1/+1 * - update libgd to 2.2.2dinoex2016-07-205-5/+5 * When there is a do-install target, do not use a post-install target, domat2016-07-199-15/+4 * - Mark BROKEN: does not fetchamdmi32016-07-191-0/+2 * net-mgmt/phpipam: 1.0 -> 1.2.1pi2016-07-173-348/+632 * OnionLauncher is a launcher for Tor written in Python and PyQt5.pawel2016-07-144-0/+34 * Fix build on head (freebsd 12)antoine2016-07-111-1/+2 * net-mgmt/unifi3: Remove from ports treefeld2016-07-106-386/+0 * net-mgmt/unifi4: Update to 4.8.20feld2016-07-103-12/+13 * - Update to 1.2-RC4lme2016-07-1010-123/+374 * net-mgmt/nfsen: Improve default directory permissionsfeld2016-07-083-14/+22 * Remove expired ports without open PRs:rene2016-07-0518-3330/+0 * Update to 2.3.4lme2016-07-043-4/+8 * net-mgmt/kismet: 2013-03-R1b -> 2016-07-R1, take maintainerpi2016-07-039-50/+74 * net-mgmt/seafile-gui: 5.1.2 -> 5.1.3pi2016-07-012-5/+4 * net-mgmt/seafile-gui: 5.1.1 -> 5.1.2 with additional fixes in depspi2016-06-303-8/+16 * Convert USE_PHP*=yes into USES=php*mat2016-06-283-6/+3 * Reset ports maintained by bf@ until he has time again to work on them.rene2016-06-281-1/+1 * net-mgmt/lldpd: update 0.9.2 -> 0.9.4junovitch2016-06-265-3/+57 * Update to 0.25.mat2016-06-212-3/+4 * With the power of USES=dos2unix, get rid of most patches and filesmat2016-06-213-23/+25 * Rename all files containing a : in their filename.mat2016-06-182-1/+1 * Add docbook stuff to BUILD_DEPEND, otherwise build may die, whenmi2016-06-181-1/+3 * Add port of adcli -- a command-line tool to interact withmi2016-06-166-0/+597 * Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.mat2016-06-162-5/+7 * net-mgmt/unifi5: Update to 5.0.7feld2016-06-142-4/+5 * net-mgmt/librenms: Update version 201604=>201605bofh2016-06-122-4/+4 * net-mgmt/p5-Net-Abuse-Utils-Spamhaus: Update version 0.07=>0.09bofh2016-06-102-3/+5 * net-mgmt/argus3-clients: Update version 3.0.8=>3.0.8.2bofh2016-06-102-21/+23 * net-mgmt/argus3: Update version 3.0.8.1=>3.0.8.2bofh2016-06-103-3/+17 * Add kapacitor to the ports tree.girgen2016-06-096-0/+116 * Update to latest version.girgen2016-06-082-132/+141 * Deprecate ports broken for more than 6 monthsantoine2016-06-042-0/+4 * The UniFi Controller allows you to manage Wireless, Routing & Switching,feld2016-06-036-0/+469 * Remove port. Needs to be re-added as a copy of unifi4.feld2016-06-036-469/+0 * The UniFi Controller allows you to manage Wireless, Routing & Switching,feld2016-06-036-0/+469 * Github cleanup.mat2016-06-012-4/+0 * Fix build if the MYSQL option is enabled with any other option.mat2016-06-011-8/+26 * - Add OPTION to pass --disable-snmptrapd-subagent to configurezi2016-05-311-1/+6 * net-mgmt/seafile: 5.1.2 -> 5.1.3pi2016-05-312-3/+4 * net-mgmt/ccnet: 5.1.2 -> 5.1.3pi2016-05-312-3/+4 * - Update to 5.1.1amdmi32016-05-294-34/+43 * - Update to 5.1.2amdmi32016-05-2919-153/+381 * Update to upstream release 5.1.2riggs2016-05-293-10/+10 * net-mgmt/cacti: 0.8.8g -> 0.8.8hpi2016-05-295-8/+31 * Update to latest versiongirgen2016-05-262-127/+141 * net-mgmt/torrus: 2.07 -> 2.09pi2016-05-265-37/+12 * net-mgmt/xymon-client: Modernize portfeld2016-05-242-9/+7 * net-mgmt/xymon-server: Modernize portfeld2016-05-242-51/+36 * Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by...amdmi32016-05-24