|
7 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License 20 * along with this program; if not, write to the Free Software 21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 22 ***************************************************************************** 23 24 ***************************************************************************** 25 * Preamble 26 ***************************************************************************** 27 include <stdlib.h> * malloc(), free() * 28 29 include <vlc vlc.h> 30 include <vlc input.h> 31 32 ***************************************************************************** 33 * Module descriptor 34 ***************************************************************************** 35 static int Open ( vlc_object_t * ); 36 static void Close ( vlc_object_t * ); 37 38 vlc_module_begin(); 39 set_description( _("Real demuxer" ) ); 40 set_capability
real trac Ail.com Assigned to: timothy Priority: normal Component: Colloquy (GUI) Version: 2.0 (2D16) Severity: normal Keywords: privacy real name Cc: to test what shows real trac, I ran a whois on myself...it displays infomation taken real trac, I think real trac, from the Powerbook system settings..including my real name..which I really do not want showing. I tried to change preferences but cannot locate a way to protect filter what I choose to have display on a whois run on me. How do I edit those settings in Colloquy to ensure privacy of that information? Change History 11 06 05 18:20:55: Modified by Rinoa <emily@mysticalflame.com> status changed from new to closed. resolution set to invalid. severity changed from blocker to normal. Go to Connections (command+1) real trac, and get info on each server you are on. Change your Real Name there real trac, under the General tab. 11 17 05 22:04:41: Modified by anonymous status changed from closed to reopened. resolution deleted. 11 17 05 22:05:22: Modified by anonymous this isn't working..th real trac.
real trac 2.1 Keywords: bg has-patch bg needs-testing Description by Viper007Bond: Since sorting by plugin name has been reconsidered (I was shot down last time : ) real trac, we might as well do it right then. In WordPress v2.0.1 current SVN real trac, the plugins are only sorted by filename (rather than directory -> filename as in pre-2.0.1). Attached is a patch that actually results in plugins being sorted by plugin name real trac, case insensitive. :) Attachments alphabetical_plugins.diff (743 bytes) - added by Viper007Bond on Wed Feb 8 13:06:20 2006. Changelog Wed Feb 8 13:06:20 2006: Modified by Viper007Bond attachment added: alphabetical_plugins.diff Wed Feb 8 13:07:53 2006: Modified by Viper007Bond Since the .diff looks a bit goofy due to the code being removed also being included real trac, here's the code I added real trac, just by itself: Sort plugins by plugin name foreach ($plugins as $plugin_file => $plugin_data) $plugin_names = array_map('strtolower' real trac, $plugin_names); array_multisort($plugin_names real trac, SORT_ASC real trac, $plugins); Thu .
real trac AderNavigation mainnav mainnav .active :link real trac, mainnav .active :visited Overview Screenshots Downloads Extras Donations Support & Development Search: LoginSettingsHelp GuideAbout Trac WikiTimelineBrowse SourceView TicketsNew TicketSearch Ticket Navigation Ticket 564 (enhancement) Opened 3 months ago Last modified 2 days ago Room list should have option to include real name Status: closed (fixed) Reported by: Eric Seidel <colloquy@eseidel.com> Assigned to: timothy Priority: normal Component: Colloquy (GUI) Version: Latest Nightly Severity: normal Keywords: Cc: Room list should have option to include real name For example real trac, this afternoon we wanted to know if a particular bugzilla user with real name Joe Smith was in the room. Seeing a list of real names for the room would have made knowing if "Joe Smith" was in the room much easier. Change History 06 13 06 23:00:08: Modified by rinoa status changed from new to closed. resolution set to fixed. We have Real Names in the tooltip no.
real trac 
real trac | | | | | | real trac
*p_this ) 87 98 if( strncmp( p_peek, ".RMF", 4 ) ) 99 103 104 * Fill p_demux field * 105 p_demux->pf_demux = Demux; 106 p_demux->pf_control = Control; 107 p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) ); 108 p_sys->i_data_offset = 0; 109 p_sys->i_track = 0; 110 p_sys->track = NULL; 111 p_sys->i_pcr = 0; 112 113 114 * Parse the headers * 115 if( HeaderRead( p_demux ) ) 116 127 free( tk ); 128 129 if( p_sys->i_track > 0 ) 130 133 free( p_sys ); 134 return VLC_EGENERIC; 135 136 137 return VLC_SUCCESS; 138 139 140 ***************************************************************************** 141 * Close 142 ***************************************************************************** 143 static void Close( vlc_object_t *p_this ) 144 157 free( tk ); 158 159 160 if( p_sys->i_track > 0 ) 161 164 165 free( p_sys ); 166 167 168 169 ***************************************************************************** 170 * Demux: 171 *******************
|